diff --git a/404.html b/404.html index 2559b8921..00a3876a4 100644 --- a/404.html +++ b/404.html @@ -91,7 +91,7 @@ diff --git a/approved/0001-agile-coretime.html b/approved/0001-agile-coretime.html index 53d0960dd..0694994e3 100644 --- a/approved/0001-agile-coretime.html +++ b/approved/0001-agile-coretime.html @@ -90,7 +90,7 @@ diff --git a/approved/0005-coretime-interface.html b/approved/0005-coretime-interface.html index e7ff33acd..454b5872b 100644 --- a/approved/0005-coretime-interface.html +++ b/approved/0005-coretime-interface.html @@ -90,7 +90,7 @@ diff --git a/approved/0007-system-collator-selection.html b/approved/0007-system-collator-selection.html index 76ead4e2b..b37c27c12 100644 --- a/approved/0007-system-collator-selection.html +++ b/approved/0007-system-collator-selection.html @@ -90,7 +90,7 @@ diff --git a/approved/0008-parachain-bootnodes-dht.html b/approved/0008-parachain-bootnodes-dht.html index ba3293523..cc5598ee5 100644 --- a/approved/0008-parachain-bootnodes-dht.html +++ b/approved/0008-parachain-bootnodes-dht.html @@ -90,7 +90,7 @@ diff --git a/approved/0012-process-for-adding-new-collectives.html b/approved/0012-process-for-adding-new-collectives.html index 7dd3043ea..2db674a60 100644 --- a/approved/0012-process-for-adding-new-collectives.html +++ b/approved/0012-process-for-adding-new-collectives.html @@ -90,7 +90,7 @@ diff --git a/approved/0014-improve-locking-mechanism-for-parachains.html b/approved/0014-improve-locking-mechanism-for-parachains.html index 87f44a8c8..a3ffa2f00 100644 --- a/approved/0014-improve-locking-mechanism-for-parachains.html +++ b/approved/0014-improve-locking-mechanism-for-parachains.html @@ -90,7 +90,7 @@ diff --git a/approved/0022-adopt-encointer-runtime.html b/approved/0022-adopt-encointer-runtime.html index 66fed49d0..1065380c2 100644 --- a/approved/0022-adopt-encointer-runtime.html +++ b/approved/0022-adopt-encointer-runtime.html @@ -90,7 +90,7 @@ diff --git a/approved/0032-minimal-relay.html b/approved/0032-minimal-relay.html index 57b45582d..81203fdc9 100644 --- a/approved/0032-minimal-relay.html +++ b/approved/0032-minimal-relay.html @@ -90,7 +90,7 @@ diff --git a/approved/0050-fellowship-salaries.html b/approved/0050-fellowship-salaries.html index b6ec1fea1..859831722 100644 --- a/approved/0050-fellowship-salaries.html +++ b/approved/0050-fellowship-salaries.html @@ -90,7 +90,7 @@ diff --git a/approved/0056-one-transaction-per-notification.html b/approved/0056-one-transaction-per-notification.html index d44bbb6aa..c23e96a11 100644 --- a/approved/0056-one-transaction-per-notification.html +++ b/approved/0056-one-transaction-per-notification.html @@ -90,7 +90,7 @@ diff --git a/index.html b/index.html index dd1acaa4a..b2ab91e05 100644 --- a/index.html +++ b/index.html @@ -90,7 +90,7 @@ diff --git a/introduction.html b/introduction.html index dd1acaa4a..b2ab91e05 100644 --- a/introduction.html +++ b/introduction.html @@ -90,7 +90,7 @@ diff --git a/print.html b/print.html index d26bb7759..d4292a980 100644 --- a/print.html +++ b/print.html @@ -91,7 +91,7 @@ @@ -1600,9 +1600,6 @@
MetadataDescriptor
additionalSigned
to prove that the metadata seen by cold device is genuineStructure of types in shortened metadata exactly matches structure of types in scale-info
, but doc
field is always empty
Structure of types in shortened metadata exactly matches structure of types in scale-info
at MetadataV14 state, but doc
field is always empty
struct Type {
path: Path, // vector of strings
type_params: Vec<TypeParams>,
@@ -1791,6 +1788,26 @@ Right node and then left node is popped from the front of the nodes queue and merged; the result is sent to the end of the queue.
Step (4) is repeated until only one node remains; this is tree root.
+queue = empty_queue
+
+while (leaves.length>1) {
+ right = leaves.pop_last
+ left = leaves.pop_last
+ queue.push_back(merge(left, right))
+}
+
+if leaves.length == 1 {
+ queue.push_front(leaves.last)
+}
+
+while queue.len() > 1 {
+ right = queue.pop_front
+ left = queue.pop_front
+ queue.push_back(merge(left, right))
+}
+
+return queue.pop
+
Resulting tree for metadata consisting of 5 nodes (numbered from 0 to 4):
root
@@ -1808,14 +1825,8 @@ Digest
Root hash of this tree (left) is merged with metadata descriptor blake3 hash (right); this is metadata digest.
Version number and corresponding resulting metadata digest MUST be included into Signed Extensions as specified in Chain Verification section below.
-Shortening
-For shortening, an attempt to decode transaction completely using provided metadata is performed with the same algorithm that would be used on the cold side. All chunks are associated with their leaf indices. An example of this protocol is proposed in metadata-shortener that is based on substrate-parser decoding protocol; any decoding protocol could be used here as long as cold signer's design finds it appropriate for given security model.
-Transmission
-Shortened metadata chunks MAY be trasmitted into cold device together with Merkle proof in its entirety or in parts, depending on memory capabilities of the cold device and it ability to reconstruct larger fraction of tree. This document does not specify the manner of transmission. The order of metadata chunks MAY be arbitrary, the only requirement is that indices of leaf nodes in Merkle tree corresponding to chunks MUST be communicated. Community MAY handle proof format standartization independently.
-Offline verification
-The transmitted metadata chunks are hashed together with proof lemmas to obtain root that MAY be transmitted along with the rest of payload. Verification that the root transmitted with message matches with calculated root is optional; the transmitted root SHOULD NOT be used in signature, calculated root MUST be used; however, there is no mechanism to enforce this - it should be done during cold signers code audit.
Chain verification
-The root of metadata computed by cold device MAY be included into Signed Extensions; this way the transaction will pass as valid iff hash of metadata as seen by cold storage device is identical to consensus hash of metadata, ensuring fair signing protocol.
+The root of metadata computed by cold device MAY be included into Signed Extensions; if it is included, the transaction will pass as valid iff hash of metadata as seen by cold storage device is identical to consensus hash of metadata, ensuring fair signing protocol.
The Signed Extension representing metadata digest is a single byte representing both digest vaule inclusion and shortening protocol version; this MUST be included in Signed Extensions set. Depending on its value, a digest value is included as additionalSigned
to signature computation according to following specification:
signed extension value digest value comment
0x00
digest is not included
@@ -2131,6 +2142,119 @@ Appendix A
occupying. However, considering it's part of an unimported fork, the validator cannot call a runtime API on that block.
Adding the core_index
to the CandidateReceipt
would solve this problem and would enable systematic recovery for all
dispute scenarios.
+
+Table of Contents
+
+- RFC-0059: Add a discovery mechanism for nodes based on their capabilities
+
+
+
+RFC-0059: Add a discovery mechanism for nodes based on their capabilities
+
+Start Date 2023-12-18
+Description Nodes having certain capabilities register themselves in the DHT to be discoverable
+Authors Pierre Krieger
+
+
+Summary
+This RFC proposes to make the mechanism of RFC #8 more generic by introducing the concept of "capabilities".
+Implementations can implement certain "capabilities", such as serving old block headers or being a parachain bootnode.
+The discovery mechanism of RFC #8 is extended to be able to discover nodes of specific capabilities.
+Motivation
+The Polkadot peer-to-peer network is made of nodes. Not all these nodes are equal. Some nodes store only the headers of recently blocks, some nodes store all the block headers and bodies since the genesis, some nodes store the storage of all blocks since the genesis, and so on.
+It is currently not possible to know ahead of time (without connecting to it and asking) which nodes have which data available, and it is not easily possible to build a list of nodes that have a specific piece of data available.
+If you want to download for example the header of block 500, you have to connect to a randomly-chosen node, ask it for block 500, and if it says that it doesn't have the block, disconnect and try another randomly-chosen node.
+In certain situations such as downloading the storage of old blocks, nodes that have the information are relatively rare, and finding through trial and error a node that has the data can take a long time.
+This RFC attempts to solve this problem by giving the possibility to build a list of nodes that are capable of serving specific data.
+Stakeholders
+Low-level client developers.
+People interested in accessing the archive of the chain.
+Explanation
+Reading RFC #8 first might help with comprehension, as this RFC is very similar.
+Please keep in mind while reading that everything below applies for both relay chains and parachains, except mentioned otherwise.
+Capabilities
+This RFC defines a list of so-called capabilities:
+
+- Head of chain provider. An implementation with this capability must be able to serve to other nodes block headers, block bodies, justifications, calls proofs, and storage proofs of "recent" (see below) blocks, and, for relay chains, to serve to other nodes warp sync proofs where the starting block is a session change block and must participate in Grandpa and Beefy gossip.
+- History provider. An implementation with this capability must be able to serve to other nodes block headers and block bodies of any block since the genesis, and must be able to serve to other nodes justifications of any session change block since the genesis up until and including their currently finalized block.
+- Archive provider. This capability is a superset of History provider. In addition to the requirements of History provider, an implementation with this capability must be able to serve call proofs and storage proof requests of any block since the genesis up until and including their currently finalized block.
+- Parachain bootnode (only for relay chains). An implementation with this capability must be able to serve the network request described in RFC 8.
+
+In the context of the head of chain provider, the word "recent" means: any not-finalized-yet block that is equal to or an ancestor of a block that it has announced through a block announce, and any finalized block whose height is superior to its current finalized block minus 16.
+This does not include blocks that have been pruned because they're not a descendant of its current finalized block. In other words, blocks that aren't a descendant of the current finalized block can be thrown away.
+A gap of blocks is required due to race conditions: when a node finalizes a block, it takes some time for its peers to be made aware of this, during which they might send requests concerning older blocks. The exact gap is arbitrary.
+Substrate is currently by default a head of chain provider provider. After it has finished warp syncing, it downloads the list of old blocks, after which it becomes a history provider.
+If Substrate is instead configured as an archive node, then it downloads the state of all blocks since the genesis, after which it becomes an archive provider, history provider, and head of chain provider.
+If blocks pruning is enabled and the chain is a relay chain, then Substrate unfortunately doesn't implement any of these capabilities, not even head of chain provider. This is considered as a bug that should be fixed, see https://github.com/paritytech/polkadot-sdk/issues/2733.
+DHT provider registration
+This RFC heavily relies on the functionalities of the Kademlia DHT already in use by Polkadot. You can find a link to the specification here.
+Implementations that have the history provider capability should register themselves as providers under the key sha256(concat("history", randomness))
.
+Implementations that have the archive provider capability should register themselves as providers under the key sha256(concat("archive", randomness))
.
+Implementations that have the parachain bootnode capability should register themselves as provider under the key sha256(concat(scale_compact(para_id), randomness))
, as described in RFC 8.
+"Register themselves as providers" consists in sending ADD_PROVIDER
requests to nodes close to the key, as described in the Content provider advertisement
section of the specification.
+The value of randomness
can be found in the randomness
field when calling the BabeApi_currentEpoch
function.
+In order to avoid downtimes when the key changes, nodes should also register themselves as a secondary key that uses a value of randomness
equal to the randomness
field when calling BabeApi_nextEpoch
.
+Implementers should be aware that their implementation of Kademlia might already hash the key before XOR'ing it. The key is not meant to be hashed twice.
+Implementations must not register themselves if they don't fulfill the capability yet. For example, a node configured to be an archive node but that is still building its archive state in the background must register itself only after it has finished building its archive.
+Secondary DHTs
+Implementations that have the history provider capability must also participate in a secondary DHT that comprises only of nodes with that capability. The protocol name of that secondary DHT must be /<genesis-hash>/kad/history
.
+Similarly, implementations that have the archive provider capability must also participate in a secondary DHT that comprises only of nodes with that capability and whose protocol name is /<genesis-hash>/kad/archive
.
+Just like implementations must not register themselves if they don't fulfill their capability yet, they must also not participate in the secondary DHT if they don't fulfill their capability yet.
+Head of the chain providers
+Implementations that have the head of the chain provider capability do not register themselves as providers, but instead are the nodes that participate in the main DHT. In other words, they are the nodes that serve requests of the /<genesis_hash>/kad
protocol.
+Any implementation that isn't a head of the chain provider (read: light clients) must not participate in the main DHT. This is already presently the case.
+Implementations must not participate in the main DHT if they don't fulfill the capability yet. For example, a node that is still in the process of warp syncing must not participate in the main DHT. However, assuming that warp syncing doesn't last more than a few seconds, it is acceptable to ignore this requirement in order to avoid complicating implementations too much.
+Drawbacks
+None that I can see.
+Testing, Security, and Privacy
+The content of this section is basically the same as the one in RFC 8.
+This mechanism doesn't add or remove any security by itself, as it relies on existing mechanisms.
+Due to the way Kademlia works, it would become the responsibility of the 20 Polkadot nodes whose sha256(peer_id)
is closest to the key
(described in the explanations section) to store the list of nodes that have specific capabilities.
+Furthermore, when a large number of providers are registered, only the providers closest to the key
are kept, up to a certain implementation-defined limit.
+For this reason, an attacker can abuse this mechanism by randomly generating libp2p PeerIds until they find the 20 entries closest to the key
representing the target capability. They are then in control of the list of nodes with that capability. While doing this can in no way be actually harmful, it could lead to eclipse attacks.
+Because the key changes periodically and isn't predictable, and assuming that the Polkadot DHT is sufficiently large, it is not realistic for an attack like this to be maintained in the long term.
+Performance, Ergonomics, and Compatibility
+Performance
+The DHT mechanism generally has a low overhead, especially given that publishing providers is done only every 24 hours.
+Doing a Kademlia iterative query then sending a provider record shouldn't take more than around 50 kiB in total of bandwidth for the parachain bootnode.
+Assuming 1000 nodes with a specific capability, the 20 Polkadot full nodes corresponding to that capability will each receive a sudden spike of a few megabytes of networking traffic when the key
rotates. Again, this is relatively negligible. If this becomes a problem, one can add a random delay before a node registers itself to be the provider of the key
corresponding to BabeApi_next_epoch
.
+Maybe the biggest uncertainty is the traffic that the 20 Polkadot full nodes will receive from light clients that desire knowing the nodes with a capability. If this every becomes a problem, this value of 20 is an arbitrary constant that can be increased for more redundancy.
+Ergonomics
+Irrelevant.
+Compatibility
+Irrelevant.
+Prior Art and References
+Unknown.
+Unresolved Questions
+While it fundamentally doesn't change much to this RFC, using BabeApi_currentEpoch
and BabeApi_nextEpoch
might be inappropriate. I'm not familiar enough with good practices within the runtime to have an opinion here. Should it be an entirely new pallet?
+Future Directions and Related Material
+This RFC would make it possible to reliably discover archive nodes, which would make it possible to reliably send archive node requests, something that isn't currently possible. This could solve the problem of finding archive RPC node providers by migrating archive-related request to using the native peer-to-peer protocol rather than JSON-RPC.
+If we ever decide to break backwards compatibility, we could divide the "history" and "archive" capabilities in two, between nodes capable of serving older blocks and nodes capable of serving newer blocks.
+We could even add to the peer-to-peer network nodes that are only capable of serving older blocks (by reading from a database) but do not participate in the head of the chain, and that just exist for historical purposes.
Table of Contents
@@ -2167,19 +2291,19 @@ Summary
+Summary
Currently, substrate runtime use an simple allocator defined by host side. Every runtime MUST
import these allocator functions for normal execution. This situation make runtime code not versatile enough.
So this RFC proposes to define a new spec for allocator part to make substrate runtime more generic.
-Motivation
+Motivation
Since this RFC define a new way for allocator, we now regard the old one as legacy
allocator.
As we all know, since the allocator implementation details are defined by the substrate client, parachain/parathread cannot customize memory allocator algorithm, so the new specification allows the runtime to customize memory allocation, and then export the allocator function according to the specification for the client side to use.
Another benefit is that some new host functions can be designed without allocating memory on the client, which may have potential performance improvements. Also it will help provide a unified and clean specification if substrate runtime support multi-targets(e.g. RISC-V).
There is also a potential benefit. Many programming languages that support compilation to wasm may not be friendly to supporting external allocator. This is beneficial for other programming languages to enter the substrate runtime ecosystem.
The last and most important benefit is that for offchain context execution, the runtime can fully support pure wasm. What this means here is that all imported host functions could not actually be called (as stub functions), then the various verification logic of the runtime can be converted into pure wasm, which provides the possibility for the substrate runtime to run block verification in other environments (such as in browsers and other non-substrate environments).
-Stakeholders
+Stakeholders
No attempt was made at convincing stakeholders.
-Explanation
+Explanation
Runtime side spec
This section contains a list of functions should be exported by substrate runtime.
We define the spec as version 1, so the following dummy
function v1
MUST be exported to hint
@@ -2218,32 +2342,32 @@
Client side
allocator.
Detail-heavy explanation of the RFC, suitable for explanation to an implementer of the changeset. This should address corner cases in detail and provide justification behind decisions, and provide rationale for how the design meets the solution requirements.
-Drawbacks
+Drawbacks
The allocator inside of the runtime will make code size bigger, but it's not obvious.
The allocator inside of the runtime maybe slow down(or speed up) the runtime, still not obvious.
We could ignore these drawbacks since they are not prominent. And the execution efficiency is highly decided by runtime developer. We could not prevent a poor efficiency if developer want to do it.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
Keep the legacy allocator runtime test cases, and add new feature to compile test cases for v1
allocator spec. And then update the test asserts.
Update template runtime to enable v1
spec. Once the dev network runs well, it seems that the spec is implmented correctly.
-Performance, Ergonomics, and Compatibility
-Performance
+Performance, Ergonomics, and Compatibility
+Performance
As the above says, not obvious impact about performance. And polkadot-sdk
could offer the best practice allocator for all chains.
Third party also could customized by theirself. So the performance could be improved over time.
-Ergonomics
+Ergonomics
Only for runtime developer, Just need to import a new crate and enable a new feature. Maybe it's convienient for other wasm-target language to implment.
-Compatibility
+Compatibility
It's 100% compatible. Only Some runtime configs and executor configs need to be depreacted.
For support new runtime spec, we MUST upgrade the client binary to support new spec of client part firstly.
We SHALL add an optional primtive crate to enable the version 1 spec and disable the legacy allocator by cargo feature.
For the first year, we SHALL disable the v1 by default, and enable it by default start in the next year.
-Prior Art and References
+Prior Art and References
-Unresolved Questions
+Unresolved Questions
None at this time.
-Future Directions and Related Material
+Future Directions and Related Material
The content discussed with RFC-0004 is basically orthogonal, but it could still be considered together, and it is preferred that this rfc be implmentented first.
This feature could make substrate runtime be easier supported by other languages and integreted into other ecosystem.
@@ -2293,7 +2417,7 @@ Authors Sourabh Niyogi
-Summary
+Summary
This RFC proposes to add the two dominant smart contract programming languages in the Polkadot ecosystem to AssetHub:
EVM + ink!/Coreplay. The objective is to increase DOT Revenue by making AssetHub accessible to
(1) Polkadot Rollups;
@@ -2302,7 +2426,7 @@
Summary
These changes in AssetHub are enabled by key Polkadot 2.0 technologies:
PolkaVM supporting Coreplay, and
hyper data availability in Blobs Chain.
-Motivation
+Motivation
EVM Contracts are pervasive in the Web3 blockchain ecosystem,
while Polkadot 2.0's Coreplay aims to surpass EVM Contracts in ease-of-use using PolkaVM's RISC architecture.
Asset Hub for Polkadot does not have smart contract capabilities,
@@ -2362,7 +2486,7 @@
here).
We believe AssetHub should support ink! as a precursor to support CorePlay's capabilities as soon as possible.
To the best of our knowledge, release times of this are unknown but having ink! inside AssetHub would be natural for Polkadot 2.0.
-Stakeholders
+Stakeholders
- Asset Hub Users: Those who call any extrinsic on Asset Hub for Polkadot.
- DOT Token Holders: Those who hold DOT on any chain in the Polkadot ecosystem.
@@ -2370,7 +2494,7 @@ StakeholdersEthereum Rollups: Rollups who utilize Ethereum as a settlement layer and interactive fraud proofs or ZK proofs to secure their rollup and utilize Ethereum DA to record transactions, provide security for their rollup, and have rollup users settle on Ethereum.
- Polkadot Rollups: Rollups who utilize AssetHub as a settlement layer and interactive fraud proofs or ZK proofs on Assethub and Blobs to record rollup transactions, provide security for their rollup, and have rollup users settle on AssetHub for Polkadot.
-Explanation
+Explanation
Limit Smart Contract Weight allocation
AssetHub is a major component of the Polkadot 2.0 Minimal Relay Chain architecture. It is critical that smart contract developers not be able to clog AssetHub's blockspace for other mission critical applications, such as Staking and Governance.
As such, it is proposed that at most 50% of the available weight in AssetHub for Polkadot blocks be allocated to smart contracts pallets (EVM, ink! and/or Coreplay). While to date AssetHub has limited usage, it is believed (see here) that imposing this limit on smart contracts pallet would limit the effect on non-smart contract usage. A excessively small weight limit like 10% or 20% may limit the attractiveness of Polkadot as a platform for Polkadot rollups and EVM Contracts. A excessively large weight like 90% or 100% may threaten AssetHub usage.
@@ -2423,25 +2547,25 @@ Testing, Security, and Privacy
+Testing, Security, and Privacy
Testing the mapping between assetIDs and EVM Contracts thoroughly will be critical.
Having a complete working OP Stack chain using AssetHub for Kusama (1000) and Blobs on Kusama (3338) would be highly desirable, but is unlikely to be required.
-Performance, Ergonomics, and Compatibility
-Performance
+Performance, Ergonomics, and Compatibility
+Performance
The weight limit of 50% is expected to be adequate to limit excess smart contract usage at this time.
Storage bloat is expected to kept to a minimum with the nominal 0.01 Existential Deposit.
-Ergonomics
+Ergonomics
Note that the existential deposit is not 0 DOT but being lowered from 0.1 DOT to 0.01 DOT, which may pose problems for some developers.
Many developers routinely deploy their EVM contracts on many different EVM Chains in parallel. This non-zero ED may pose problems for some developers
The 0.01 DOT (worth $0.075 USD) is unlikely to pose significant issue.
-Compatibility
+Compatibility
It is believed that EVM pallet (as deployed on Moonbeam + Astar) is sufficiently compatible with Ethereum, and that the ED of 0.01 DOT pose negligible issues.
The messaging architecture for rollups are not compatible with Polkadot XCM.
It is not clear if leading rollup platforms (OP Stack, Arbitrum Orbit, Polygon zkEVM) could be made compatible with XCM.
-Unresolved Questions
+Unresolved Questions
It is highly desirable to know the throughput of Polkadot DA with popular rollup architectures OP Stack and Arbitrum Orbit.
This would enable CEXs and EVM L2 builders to choose Polkadot over Ethereum.
-Future Directions and Related Material
+Future Directions and Related Material
If accepted, this RFC could pave the way for CorePlay on Asset Hub for Polkadot/Kusama, a major component of Polkadot 2.0's smart contract future.
The importance of precompiles should
@@ -2484,9 +2608,9 @@ RFC
Authors Gavin Wood
-Summary
+Summary
This proposes a periodic, sale-based method for assigning Polkadot Coretime, the analogue of "block space" within the Polkadot Network. The method takes into account the need for long-term capital expenditure planning for teams building on Polkadot, yet also provides a means to allow Polkadot to capture long-term value in the resource which it sells. It supports the possibility of building rich and dynamic secondary markets to optimize resource allocation and largely avoids the need for parameterization.
-Motivation
+Motivation
Present System
The Polkadot Ubiquitous Computer, or just Polkadot UC, represents the public service provided by the Polkadot Network. It is a trust-free, WebAssembly-based, multicore, internet-native omnipresent virtual machine which is highly resilient to interference and corruption.
The present system of allocating the limited resources of the Polkadot Ubiquitous Computer is through a process known as parachain slot auctions. This is a parachain-centric paradigm whereby a single core is long-term allocated to a single parachain which itself implies a Substrate/Cumulus-based chain secured and connected via the Relay-chain. Slot auctions are on-chain candle auctions which proceed for several days and result in the core being assigned to the parachain for six months at a time up to 24 months in advance. Practically speaking, we only see two year periods being bid upon and leased.
@@ -2507,7 +2631,7 @@ RequirementsThe solution SHOULD avoid creating additional dependencies on functionality which the Relay-chain need not strictly provide for the delivery of the Polkadot UC.
Furthermore, the design SHOULD be implementable and deployable in a timely fashion; three months from the acceptance of this RFC should not be unreasonable.
-Stakeholders
+Stakeholders
Primary stakeholder sets are:
- Protocol researchers and developers, largely represented by the Polkadot Fellowship and Parity Technologies' Engineering division.
@@ -2516,7 +2640,7 @@ Stakeholders
Socialization:
The essensials of this proposal were presented at Polkadot Decoded 2023 Copenhagen on the Main Stage. A small amount of socialization at the Parachain Summit preceeded it and some substantial discussion followed it. Parity Ecosystem team is currently soliciting views from ecosystem teams who would be key stakeholders.
-Explanation
+Explanation
Overview
Upon implementation of this proposal, the parachain-centric slot auctions and associated crowdloans cease. Instead, Coretime on the Polkadot UC is sold by the Polkadot System in two separate formats: Bulk Coretime and Instantaneous Coretime.
When a Polkadot Core is utilized, we say it is dedicated to a Task rather than a "parachain". The Task to which a Core is dedicated may change at every Relay-chain block and while one predominant type of Task is to secure a Cumulus-based blockchain (i.e. a parachain), other types of Tasks are envisioned.
@@ -2948,16 +3072,16 @@ Rollout
- Governance upgrade proposal(s).
- Monitoring of the upgrade process.
-Performance, Ergonomics and Compatibility
+Performance, Ergonomics and Compatibility
No specific considerations.
Parachains already deployed into the Polkadot UC must have a clear plan of action to migrate to an agile Coretime market.
While this proposal does not introduce documentable features per se, adequate documentation must be provided to potential purchasers of Polkadot Coretime. This SHOULD include any alterations to the Polkadot-SDK software collection.
-Testing, Security and Privacy
+Testing, Security and Privacy
Regular testing through unit tests, integration tests, manual testnet tests, zombie-net tests and fuzzing SHOULD be conducted.
A regular security review SHOULD be conducted prior to deployment through a review by the Web3 Foundation economic research group.
Any final implementation MUST pass a professional external security audit.
The proposal introduces no new privacy concerns.
-Future Directions and Related Material
+Future Directions and Related Material
RFC-3 proposes a means of implementing the high-level allocations within the Relay-chain.
RFC-5 proposes the API for interacting with Relay-chain.
Additional work should specify the interface for the instantaneous market revenue so that the Coretime-chain can ensure Bulk Coretime placed in the instantaneous market is properly compensated.
@@ -2973,7 +3097,7 @@ Prior Art and References
+Prior Art and References
Robert Habermeier initially wrote on the subject of Polkadot blockspace-centric in the article Polkadot Blockspace over Blockchains. While not going into details, the article served as an early reframing piece for moving beyond one-slot-per-chain models and building out secondary market infrastructure for resource allocation.
Table of Contents
@@ -3006,10 +3130,10 @@ Summary
+Summary
In the Agile Coretime model of the Polkadot Ubiquitous Computer, as proposed in RFC-1 and RFC-3, it is necessary for the allocating parachain (envisioned to be one or more pallets on a specialised Brokerage System Chain) to communicate the core assignments to the Relay-chain, which is responsible for ensuring those assignments are properly enacted.
This is a proposal for the interface which will exist around the Relay-chain in order to communicate this information and instructions.
-Motivation
+Motivation
The background motivation for this interface is splitting out coretime allocation functions and secondary markets from the Relay-chain onto System parachains. A well-understood and general interface is necessary for ensuring the Relay-chain receives coretime allocation instructions from one or more System chains without introducing dependencies on the implementation details of either side.
Requirements
@@ -3021,7 +3145,7 @@ RequirementsThe interface MUST allow for the allocating chain to instruct changes to the number of cores which it is able to allocate.
- The interface MUST allow for the allocating chain to be notified of changes to the number of cores which are able to be allocated by the allocating chain.
-Stakeholders
+Stakeholders
Primary stakeholder sets are:
- Developers of the Relay-chain core-management logic.
@@ -3029,7 +3153,7 @@ Stakeholders
Socialization:
This content of this RFC was discussed in the Polkdot Fellows channel.
-Explanation
+Explanation
The interface has two sections: The messages which the Relay-chain is able to receive from the allocating parachain (the UMP message types), and messages which the Relay-chain is able to send to the allocating parachain (the DMP message types). These messages are expected to be able to be implemented in a well-known pallet and called with the XCM Transact
instruction.
Future work may include these messages being introduced into the XCM standard.
UMP Message Types
@@ -3104,17 +3228,17 @@ Realistic Limits of the Usage
For request_revenue_info
, a successful request should be possible if when
is no less than the Relay-chain block number on arrival of the message less 100,000.
For assign_core
, a successful request should be possible if begin
is no less than the Relay-chain block number on arrival of the message plus 10 and workload
contains no more than 100 items.
-Performance, Ergonomics and Compatibility
+Performance, Ergonomics and Compatibility
No specific considerations.
-Testing, Security and Privacy
+Testing, Security and Privacy
Standard Polkadot testing and security auditing applies.
The proposal introduces no new privacy concerns.
-Future Directions and Related Material
+Future Directions and Related Material
RFC-1 proposes a means of determining allocation of Coretime using this interface.
RFC-3 proposes a means of implementing the high-level allocations within the Relay-chain.
Drawbacks, Alternatives and Unknowns
None at present.
-Prior Art and References
+Prior Art and References
None.
Table of Contents
@@ -3160,13 +3284,13 @@ Summary
+Summary
As core functionality moves from the Relay Chain into system chains, so increases the reliance on
the liveness of these chains for the use of the network. It is not economically scalable, nor
necessary from a game-theoretic perspective, to pay collators large rewards. This RFC proposes a
mechanism -- part technical and part social -- for ensuring reliable collator sets that are
resilient to attemps to stop any subsytem of the Polkadot protocol.
-Motivation
+Motivation
In order to guarantee access to Polkadot's system, the collators on its system chains must propose
blocks (provide liveness) and allow all transactions to eventually be included. That is, some
collators may censor transactions, but there must exist one collator in the set who will include a
@@ -3202,12 +3326,12 @@
RequirementsCollators selected by governance SHOULD have a reasonable expectation that the Treasury will
reimburse their operating costs.
-Stakeholders
+Stakeholders
- Infrastructure providers (people who run validator/collator nodes)
- Polkadot Treasury
-Explanation
+Explanation
This protocol builds on the existing
Collator Selection pallet
and its notion of Invulnerables. Invulnerables are collators (identified by their AccountId
s) who
@@ -3243,27 +3367,27 @@
Set Size
of which 15 are Invulnerable, and
five are elected by bond.
-Drawbacks
+Drawbacks
The primary drawback is a reliance on governance for continued treasury funding of infrastructure
costs for Invulnerable collators.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
The vast majority of cases can be covered by unit testing. Integration test should ensure that the
Collator Selection UpdateOrigin
, which has permission to modify the Invulnerables and desired
number of Candidates, can handle updates over XCM from the system's governance location.
-Performance, Ergonomics, and Compatibility
+Performance, Ergonomics, and Compatibility
This proposal has very little impact on most users of Polkadot, and should improve the performance
of system chains by reducing the number of missed blocks.
-Performance
+Performance
As chains have strict PoV size limits, care must be taken in the PoV impact of the session manager.
Appropriate benchmarking and tests should ensure that conservative limits are placed on the number
of Invulnerables and Candidates.
-Ergonomics
+Ergonomics
The primary group affected is Candidate collators, who, after implementation of this RFC, will need
to compete in a bond-based election rather than a race to claim a Candidate spot.
-Compatibility
+Compatibility
This RFC is compatible with the existing implementation and can be handled via upgrades and
migration.
-Prior Art and References
+Prior Art and References
Written Discussions
- GitHub: Collator Selection Roadmap
@@ -3278,9 +3402,9 @@ Unresolved Questions
+Unresolved Questions
None at this time.
-Future Directions and Related Material
+Future Directions and Related Material
There may exist in the future system chains for which this model of collator selection is not
appropriate. These chains should be evaluated on a case-by-case basis.
@@ -3319,10 +3443,10 @@ Authors Pierre Krieger
-Summary
+Summary
The full nodes of the Polkadot peer-to-peer network maintain a distributed hash table (DHT), which is currently used for full nodes discovery and validators discovery purposes.
This RFC proposes to extend this DHT to be used to discover full nodes of the parachains of Polkadot.
-Motivation
+Motivation
The maintenance of bootnodes has long been an annoyance for everyone.
When a bootnode is newly-deployed or removed, every chain specification must be updated in order to take the update into account. This has lead to various non-optimal solutions, such as pulling chain specifications from GitHub repositories.
When it comes to RPC nodes, UX developers often have trouble finding up-to-date addresses of parachain RPC nodes. With the ongoing migration from RPC nodes to light clients, similar problems would happen with chain specifications as well.
@@ -3331,14 +3455,14 @@ MotivationBecause the list of bootnodes in chain specifications is so annoying to modify, the consequence is that the number of bootnodes is rather low (typically between 2 and 15). In order to better resist downtimes and DoS attacks, a better solution would be to use every node of a certain chain as potential bootnode, rather than special-casing some specific nodes.
While this RFC doesn't solve these problems for relay chains, it aims at solving it for parachains by storing the list of all the full nodes of a parachain on the relay chain DHT.
Assuming that this RFC is implemented, and that light clients are used, deploying a parachain wouldn't require more work than registering it onto the relay chain and starting the collators. There wouldn't be any need for special infrastructure nodes anymore.
-Stakeholders
+Stakeholders
This RFC has been opened on my own initiative because I think that this is a good technical solution to a usability problem that many people are encountering and that they don't realize can be solved.
-Explanation
+Explanation
The content of this RFC only applies for parachains and parachain nodes that are "Substrate-compatible". It is in no way mandatory for parachains to comply to this RFC.
Note that "Substrate-compatible" is very loosely defined as "implements the same mechanisms and networking protocols as Substrate". The author of this RFC believes that "Substrate-compatible" should be very precisely specified, but there is controversy on this topic.
While a lot of this RFC concerns the implementation of parachain nodes, it makes use of the resources of the Polkadot chain, and as such it is important to describe them in the Polkadot specification.
This RFC adds two mechanisms: a registration in the DHT, and a new networking protocol.
-DHT provider registration
+DHT provider registration
This RFC heavily relies on the functionalities of the Kademlia DHT already in use by Polkadot.
You can find a link to the specification here.
Full nodes of a parachain registered on Polkadot should register themselves onto the Polkadot DHT as the providers of a key corresponding to the parachain that they are serving, as described in the Content provider advertisement
section of the specification. This uses the ADD_PROVIDER
system of libp2p-kademlia.
@@ -3370,10 +3494,10 @@ Drawbacks
+Drawbacks
The peer_id
and addrs
fields are in theory not strictly needed, as the PeerId and addresses could be always equal to the PeerId and addresses of the node being registered as the provider and serving the response. However, the Cumulus implementation currently uses two different networking stacks, one of the parachain and one for the relay chain, using two separate PeerIds and addresses, and as such the PeerId and addresses of the other networking stack must be indicated. Asking them to use only one networking stack wouldn't feasible in a realistic time frame.
The values of the genesis_hash
and fork_id
fields cannot be verified by the requester and are expected to be unused at the moment. Instead, a client that desires connecting to a parachain is expected to obtain the genesis hash and fork ID of the parachain from the parachain chain specification. These fields are included in the networking protocol nonetheless in case an acceptable solution is found in the future, and in order to allow use cases such as discovering parachains in a not-strictly-trusted way.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
Because not all nodes want to be used as bootnodes, implementers are encouraged to provide a way to disable this mechanism. However, it is very much encouraged to leave this mechanism on by default for all parachain nodes.
This mechanism doesn't add or remove any security by itself, as it relies on existing mechanisms.
However, if the principle of chain specification bootnodes is entirely replaced with the mechanism described in this RFC (which is the objective), then it becomes important whether the mechanism in this RFC can be abused in order to make a parachain unreachable.
@@ -3382,22 +3506,22 @@ Performance, Ergonomics, and Compatibility
-Performance
+Performance, Ergonomics, and Compatibility
+Performance
The DHT mechanism generally has a low overhead, especially given that publishing providers is done only every 24 hours.
Doing a Kademlia iterative query then sending a provider record shouldn't take more than around 50 kiB in total of bandwidth for the parachain bootnode.
Assuming 1000 parachain full nodes, the 20 Polkadot full nodes corresponding to a specific parachain will each receive a sudden spike of a few megabytes of networking traffic when the key
rotates. Again, this is relatively negligible. If this becomes a problem, one can add a random delay before a parachain full node registers itself to be the provider of the key
corresponding to BabeApi_next_epoch
.
Maybe the biggest uncertainty is the traffic that the 20 Polkadot full nodes will receive from light clients that desire knowing the bootnodes of a parachain. Light clients are generally encouraged to cache the peers that they use between restarts, so they should only query these 20 Polkadot full nodes at their first initialization.
If this every becomes a problem, this value of 20 is an arbitrary constant that can be increased for more redundancy.
-Ergonomics
+Ergonomics
Irrelevant.
-Compatibility
+Compatibility
Irrelevant.
-Prior Art and References
+Prior Art and References
None.
-Unresolved Questions
+Unresolved Questions
While it fundamentally doesn't change much to this RFC, using BabeApi_currentEpoch
and BabeApi_nextEpoch
might be inappropriate. I'm not familiar enough with good practices within the runtime to have an opinion here. Should it be an entirely new pallet?
-Future Directions and Related Material
+Future Directions and Related Material
It is possible that in the future a client could connect to a parachain without having to rely on a trusted parachain specification.
Table of Contents
@@ -3427,13 +3551,13 @@ Authors Joe Petrowski
-Summary
+Summary
Since the introduction of the Collectives parachain, many groups have expressed interest in forming
new -- or migrating existing groups into -- on-chain collectives. While adding a new collective is
relatively simple from a technical standpoint, the Fellowship will need to merge new pallets into
the Collectives parachain for each new collective. This RFC proposes a means for the network to
ratify a new collective, thus instructing the Fellowship to instate it in the runtime.
-Motivation
+Motivation
Many groups have expressed interest in representing collectives on-chain. Some of these include:
- Parachain technical fellowship (new)
@@ -3449,12 +3573,12 @@ Motivation
-Stakeholders
+Stakeholders
- Polkadot stakeholders who would like to organize on-chain.
- Technical Fellowship, in its role of maintaining system runtimes.
-Explanation
+Explanation
The group that wishes to operate an on-chain collective should publish the following information:
- Charter, including the collective's mandate and how it benefits Polkadot. This would be similar
@@ -3488,22 +3612,22 @@
Rem
or not the Fellowship member agrees with removal.
Collective removal may also come with other governance calls, for example voiding any scheduled
Treasury spends that would fund the given collective.
-Drawbacks
+Drawbacks
Passing a Root origin referendum is slow. However, given the network's investment (in terms of code
maintenance and salaries) in a new collective, this is an appropriate step.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
No impacts.
-Performance, Ergonomics, and Compatibility
+Performance, Ergonomics, and Compatibility
Generally all new collectives will be in the Collectives parachain. Thus, performance impacts
should strictly be limited to this parachain and not affect others. As the majority of logic for
collectives is generalized and reusable, we expect most collectives to be instances of similar
subsets of modules. That is, new collectives should generally be compatible with UIs and other
services that provide collective-related functionality, with little modifications to support new
ones.
-Prior Art and References
+Prior Art and References
The launch of the Technical Fellowship, see the
initial forum post.
-Unresolved Questions
+Unresolved Questions
None at this time.
Table of Contents
@@ -3539,14 +3663,14 @@ Authors Bryan Chen
-Summary
+Summary
This RFC proposes a set of changes to the parachain lock mechanism. The goal is to allow a parachain manager to self-service the parachain without root track governance action.
This is achieved by remove existing lock conditions and only lock a parachain when:
- A parachain manager explicitly lock the parachain
- OR a parachain block is produced successfully
-Motivation
+Motivation
The manager of a parachain has permission to manage the parachain when the parachain is unlocked. Parachains are by default locked when onboarded to a slot. This requires the parachain wasm/genesis must be valid, otherwise a root track governance action on relaychain is required to update the parachain.
The current reliance on root track governance actions for managing parachains can be time-consuming and burdensome. This RFC aims to address this technical difficulty by allowing parachain managers to take self-service actions, rather than relying on general public voting.
The key scenarios this RFC seeks to improve are:
@@ -3565,12 +3689,12 @@ RequirementsA parachain SHOULD be locked when it successfully produced the first block.
- A parachain manager MUST be able to perform lease swap without having a running parachain.
-Stakeholders
+Stakeholders
- Parachain teams
- Parachain users
-Explanation
+Explanation
Status quo
A parachain can either be locked or unlocked3. With parachain locked, the parachain manager does not have any privileges. With parachain unlocked, the parachain manager can perform following actions with the paras_registrar
pallet:
@@ -3610,31 +3734,31 @@ Migration
- Parachain never produced a block. Including from expired leases.
- Parachain manager never explicitly lock the parachain.
-Drawbacks
+Drawbacks
Parachain locks are designed in such way to ensure the decentralization of parachains. If parachains are not locked when it should be, it could introduce centralization risk for new parachains.
For example, one possible scenario is that a collective may decide to launch a parachain fully decentralized. However, if the parachain is unable to produce block, the parachain manager will be able to replace the wasm and genesis without the consent of the collective.
It is considered this risk is tolerable as it requires the wasm/genesis to be invalid at first place. It is not yet practically possible to develop a parachain without any centralized risk currently.
Another case is that a parachain team may decide to use crowdloan to help secure a slot lease. Previously, creating a crowdloan will lock a parachain. This means crowdloan participants will know exactly the genesis of the parachain for the crowdloan they are participating. However, this actually providers little assurance to crowdloan participants. For example, if the genesis block is determined before a crowdloan is started, it is not possible to have onchain mechanism to enforce reward distributions for crowdloan participants. They always have to rely on the parachain team to fulfill the promise after the parachain is alive.
Existing operational parachains will not be impacted.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
The implementation of this RFC will be tested on testnets (Rococo and Westend) first.
An audit maybe required to ensure the implementation does not introduce unwanted side effects.
There is no privacy related concerns.
-Performance
+Performance
This RFC should not introduce any performance impact.
-Ergonomics
+Ergonomics
This RFC should improve the developer experiences for new and existing parachain teams
-Compatibility
+Compatibility
This RFC is fully compatibility with existing interfaces.
-Prior Art and References
+Prior Art and References
- Parachain Slot Extension Story: https://github.com/paritytech/polkadot/issues/4758
- Allow parachain to renew lease without actually run another parachain: https://github.com/paritytech/polkadot/issues/6685
- Always treat parachain that never produced block for a significant amount of time as unlocked: https://github.com/paritytech/polkadot/issues/7539
-Unresolved Questions
+Unresolved Questions
None at this stage.
-Future Directions and Related Material
+Future Directions and Related Material
This RFC is only intended to be a short term solution. Slots will be removed in future and lock mechanism is likely going to be replaced with a more generalized parachain manage & recovery system in future. Therefore long term impacts of this RFC are not considered.
1
https://github.com/paritytech/cumulus/issues/377
@@ -3668,19 +3792,19 @@
Summary
+Summary
Encointer is a system chain on Kusama since Jan 2022 and has been developed and maintained by the Encointer association. This RFC proposes to treat Encointer like any other system chain and include it in the fellowship repo with this PR.
-Motivation
+Motivation
Encointer does not seek to be in control of its runtime repository. As a decentralized system, the fellowship has a more suitable structure to maintain a system chain runtime repo than the Encointer association does.
Also, Encointer aims to update its runtime in batches with other system chains in order to have consistency for interoperability across system chains.
-Stakeholders
+Stakeholders
- Fellowship: Will continue to take upon them the review and auditing work for the Encointer runtime, but the process is streamlined with other system chains and therefore less time-consuming compared to the separate repo and CI process we currently have.
- Kusama Network: Tokenholders can easily see the changes of all system chains in one place.
- Encointer Association: Further decentralization of the Encointer Network necessities like devops.
- Encointer devs: Being able to work directly in the Fellowship runtimes repo to streamline and synergize with other developers.
-Explanation
+Explanation
Our PR has all details about our runtime and how we would move it into the fellowship repo.
Noteworthy: All Encointer-specific pallets will still be located in encointer's repo for the time being: https://github.com/encointer/pallets
It will still be the duty of the Encointer team to keep its runtime up to date and provide adequate test fixtures. Frequent dependency bumps with Polkadot releases would be beneficial for interoperability and could be streamlined with other system chains but that will not be a duty of fellowship. Whenever possible, all system chains could be upgraded jointly (including Encointer) with a batch referendum.
@@ -3689,17 +3813,17 @@ Explanation
- Encointer will publish all its crates crates.io
- Encointer does not carry out external auditing of its runtime nor pallets. It would be beneficial but not a requirement from our side if Encointer could join the auditing process of other system chains.
-Drawbacks
+Drawbacks
Other than all other system chains, development and maintenance of the Encointer Network is mainly financed by the KSM Treasury and possibly the DOT Treasury in the future. Encointer is dedicated to maintaining its network and runtime code for as long as possible, but there is a dependency on funding which is not in the hands of the fellowship. The only risk in the context of funding, however, is that the Encointer runtime will see less frequent updates if there's less funding.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
No changes to the existing system are proposed. Only changes to how maintenance is organized.
-Performance, Ergonomics, and Compatibility
+Performance, Ergonomics, and Compatibility
No changes
-Prior Art and References
+Prior Art and References
Existing Encointer runtime repo
-Unresolved Questions
+Unresolved Questions
None identified
-Future Directions and Related Material
+Future Directions and Related Material
More info on Encointer: encointer.org
Table of Contents
@@ -3741,11 +3865,11 @@ Authors Joe Petrowski, Gavin Wood
-Summary
+Summary
The Relay Chain contains most of the core logic for the Polkadot network. While this was necessary
prior to the launch of parachains and development of XCM, most of this logic can exist in
parachains. This is a proposal to migrate several subsystems into system parachains.
-Motivation
+Motivation
Polkadot's scaling approach allows many distinct state machines (known generally as parachains) to
operate with common guarantees about the validity and security of their state transitions. Polkadot
provides these common guarantees by executing the state transitions on a strict subset (a backing
@@ -3757,13 +3881,13 @@
MotivationBy minimising state transition logic on the Relay Chain by migrating it into "system chains" -- a
set of parachains that, with the Relay Chain, make up the Polkadot protocol -- the Polkadot
Ubiquitous Computer can maximise its primary offering: secure blockspace.
-Stakeholders
+Stakeholders
- Parachains that interact with affected logic on the Relay Chain;
- Core protocol and XCM format developers;
- Tooling, block explorer, and UI developers.
-Explanation
+Explanation
The following pallets and subsystems are good candidates to migrate from the Relay Chain:
- Identity
@@ -3909,36 +4033,36 @@ Kusama
Staking is the subsystem most constrained by PoV limits. Ensuring that elections, payouts, session
changes, offences/slashes, etc. work in a parachain on Kusama -- with its larger validator set --
will give confidence to the chain's robustness on Polkadot.
-Drawbacks
+Drawbacks
These subsystems will have reduced resources in cores than on the Relay Chain. Staking in particular
may require some optimizations to deal with constraints.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
Standard audit/review requirements apply. More powerful multi-chain integration test tools would be
useful in developement.
-Performance, Ergonomics, and Compatibility
+Performance, Ergonomics, and Compatibility
Describe the impact of the proposal on the exposed functionality of Polkadot.
-Performance
+Performance
This is an optimization. The removal of public/user transactions on the Relay Chain ensures that its
primary resources are allocated to system performance.
-Ergonomics
+Ergonomics
This proposal alters very little for coretime users (e.g. parachain developers). Application
developers will need to interact with multiple chains, making ergonomic light client tools
particularly important for application development.
For existing parachains that interact with these subsystems, they will need to configure their
runtimes to recognize the new locations in the network.
-Compatibility
+Compatibility
Implementing this proposal will require some changes to pallet APIs and/or a pub-sub protocol.
Application developers will need to interact with multiple chains in the network.
-Prior Art and References
+Prior Art and References
-Unresolved Questions
+Unresolved Questions
There remain some implementation questions, like how to use balances for both Staking and
Governance. See, for example, Moving Staking off the Relay
Chain.
-Future Directions and Related Material
+Future Directions and Related Material
Ideally the Relay Chain becomes transactionless, such that not even balances are represented there.
With Staking and Governance off the Relay Chain, this is not an unreasonable next step.
With Identity on Polkadot, Kusama may opt to drop its People Chain.
@@ -3978,10 +4102,10 @@ Summary
+Summary
The Fellowship Manifesto states that members should receive a monthly allowance on par with gross
income in OECD countries. This RFC proposes concrete amounts.
-Motivation
+Motivation
One motivation for the Technical Fellowship is to provide an incentive mechanism that can induct and
retain technical talent for the continued progress of the network.
In order for members to uphold their commitment to the network, they should receive support to
@@ -3991,12 +4115,12 @@
Motivation
Note: Goals of the Fellowship, expectations for each Dan, and conditions for promotion and demotion
are all explained in the Manifesto. This RFC is only to propose concrete values for allowances.
-Stakeholders
+Stakeholders
- Fellowship members
- Polkadot Treasury
-Explanation
+Explanation
This RFC proposes agreeing on salaries relative to a single level, the III Dan. As such, changes to
the amount or asset used would only be on a single value, and all others would adjust relatively. A
III Dan is someone whose contributions match the expectations of a full-time individual contributor.
@@ -4056,19 +4180,19 @@
Projections
Updates
Updates to these levels, whether relative ratios, the asset used, or the amount, shall be done via
RFC.
-Drawbacks
+Drawbacks
By not using DOT for payment, the protocol relies on the stability of other assets and the ability
to acquire them. However, the asset of choice can be changed in the future.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
N/A.
-Performance, Ergonomics, and Compatibility
-Performance
+Performance, Ergonomics, and Compatibility
+Performance
N/A
-Ergonomics
+Ergonomics
N/A
-Compatibility
+Compatibility
N/A
-Prior Art and References
+Prior Art and References
- The Polkadot Fellowship
Manifesto
@@ -4076,7 +4200,7 @@ Indeed: Average Salary for Engineers, United
States
-Unresolved Questions
+Unresolved Questions
None at present.
Table of Contents
@@ -4109,11 +4233,11 @@ Summary
+Summary
When two peers connect to each other, they open (amongst other things) a so-called "notifications protocol" substream dedicated to gossiping transactions to each other.
Each notification on this substream currently consists in a SCALE-encoded Vec<Transaction>
where Transaction
is defined in the runtime.
This RFC proposes to modify the format of the notification to become (Compact(1), Transaction)
. This maintains backwards compatibility, as this new format decodes as a Vec
of length equal to 1.
-Motivation
+Motivation
There exists three motivations behind this change:
-
@@ -4126,9 +4250,9 @@
MotivationIt makes the implementation way more straight-forward by not having to repeat code related to back-pressure. See explanations below.
-Stakeholders
+Stakeholders
Low-level developers.
-Explanation
+Explanation
To give an example, if you send one notification with three transactions, the bytes that are sent on the wire are:
concat(
leb128(total-size-in-bytes-of-the-rest),
@@ -4148,23 +4272,23 @@ Explanation
This is equivalent to forcing the Vec<Transaction>
to always have a length of 1, and I expect the Substrate implementation to simply modify the sending side to add a for
loop that sends one notification per item in the Vec
.
As explained in the motivation section, this allows extracting scale(transaction)
items without having to know how to decode them.
By "flattening" the two-steps hierarchy, an implementation only needs to back-pressure individual notifications rather than back-pressure notifications and transactions within notifications.
-Drawbacks
+Drawbacks
This RFC chooses to maintain backwards compatibility at the cost of introducing a very small wart (the Compact(1)
).
An alternative could be to introduce a new version of the transactions notifications protocol that sends one Transaction
per notification, but this is significantly more complicated to implement and can always be done later in case the Compact(1)
is bothersome.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
Irrelevant.
-Performance, Ergonomics, and Compatibility
-Performance
+Performance, Ergonomics, and Compatibility
+Performance
Irrelevant.
-Ergonomics
+Ergonomics
Irrelevant.
-Compatibility
+Compatibility
The change is backwards compatible if done in two steps: modify the sender to always send one transaction per notification, then, after a while, modify the receiver to enforce the new format.
-Prior Art and References
+Prior Art and References
Irrelevant.
-Unresolved Questions
+Unresolved Questions
None.
-Future Directions and Related Material
+Future Directions and Related Material
None. This is a simple isolated change.
Table of Contents
@@ -4194,16 +4318,16 @@ Summary
+Summary
Update the runtime-host interface to no longer make use of a host-side allocator.
-Motivation
+Motivation
The heap allocation of the runtime is currently controlled by the host using a memory allocator on the host side.
The API of many host functions consists in allocating a buffer. For example, when calling ext_hashing_twox_256_version_1
, the host allocates a 32 bytes buffer using the host allocator, and returns a pointer to this buffer to the runtime. The runtime later has to call ext_allocator_free_version_1
on this pointer in order to free the buffer.
Even though no benchmark has been done, it is pretty obvious that this design is very inefficient. To continue with the example of ext_hashing_twox_256_version_1
, it would be more efficient to instead write the output hash to a buffer that was allocated by the runtime on its stack and passed by pointer to the function. Allocating a buffer on the stack in the worst case scenario simply consists in decreasing a number, and in the best case scenario is free. Doing so would save many Wasm memory reads and writes by the allocator, and would save a function call to ext_allocator_free_version_1
.
Furthermore, the existence of the host-side allocator has become questionable over time. It is implemented in a very naive way, and for determinism and backwards compatibility reasons it needs to be implemented exactly identically in every client implementation. Runtimes make substantial use of heap memory allocations, and each allocation needs to go twice through the runtime <-> host boundary (once for allocating and once for freeing). Moving the allocator to the runtime side, while it would increase the size of the runtime, would be a good idea. But before the host-side allocator can be deprecated, all the host functions that make use of it need to be updated to not use it.
-Stakeholders
+Stakeholders
No attempt was made at convincing stakeholders.
-Explanation
+Explanation
New host functions
This section contains a list of new host functions to introduce.
(func $ext_storage_read_version_2
@@ -4406,11 +4530,11 @@ Other changes
ext_allocator_free_version_1
ext_offchain_network_state_version_1
-Drawbacks
+Drawbacks
This RFC might be difficult to implement in Substrate due to the internal code design. It is not clear to the author of this RFC how difficult it would be.
Prior Art
The API of these new functions was heavily inspired by API used by the C programming language.
-Unresolved Questions
+Unresolved Questions
The changes in this RFC would need to be benchmarked. This involves implementing the RFC and measuring the speed difference.
It is expected that most host functions are faster or equal speed to their deprecated counterparts, with the following exceptions:
@@ -4467,10 +4591,10 @@ License MIT
-Summary
+Summary
This RFC proposes a dynamic pricing model for the sale of Bulk Coretime on the Polkadot UC. The proposed model updates the regular price of cores for each sale period, by taking into account the number of cores sold in the previous sale, as well as a limit of cores and a target number of cores sold. It ensures a minimum price and limits price growth to a maximum price increase factor, while also giving govenance control over the steepness of the price change curve. It allows governance to address challenges arising from changing market conditions and should offer predictable and controlled price adjustments.
Accompanying visualizations are provided at [1].
-Motivation
+Motivation
RFC-1 proposes periodic Bulk Coretime Sales as a mechanism to sell continouos regions of blockspace (suggested to be 4 weeks in length). A number of Blockspace Regions (compare RFC-1 & RFC-3) are provided for sale to the Broker-Chain each period and shall be sold in a way that provides value-capture for the Polkadot network. The exact pricing mechanism is out of scope for RFC-1 and shall be provided by this RFC.
A dynamic pricing model is needed. A limited number of Regions are offered for sale each period. The model needs to find the price for a period based on supply and demand of the previous period.
The model shall give Coretime consumers predictability about upcoming price developments and confidence that Polkadot governance can adapt the pricing model to changing market conditions.
@@ -4482,7 +4606,7 @@ RequirementsThe solution SHOULD provide a maximum factor of price increase should the limit of Regions sold per period be reached.
- The solution should allow governance to control the steepness of the price function
-Stakeholders
+Stakeholders
The primary stakeholders of this RFC are:
- Protocol researchers and evelopers
@@ -4490,7 +4614,7 @@ Stakeholders<
- Polkadot parachains teams
- Brokers involved in the trade of Bulk Coretime
-Explanation
+Explanation
Overview
The dynamic pricing model sets the new price based on supply and demand in the previous period. The model is a function of the number of Regions sold, piecewise-defined by two power functions.
@@ -4589,9 +4713,9 @@ Linear pricing<
SCALE_UP = 1
OLD_PRICE = 1000
-Drawbacks
+Drawbacks
None at present.
-Prior Art and References
+Prior Art and References
This pricing model is based on the requirements from the basic linear solution proposed in RFC-1, which is a simple dynamic pricing model and only used as proof. The present model adds additional considerations to make the model more adaptable under real conditions.
Future Possibilities
This RFC, if accepted, shall be implemented in conjunction with RFC-1.
@@ -4630,9 +4754,9 @@ Summary
+Summary
Improve the networking messages that query storage items from the remote, in order to reduce the bandwidth usage and number of round trips of light clients.
-Motivation
+Motivation
Clients on the Polkadot peer-to-peer network can be divided into two categories: full nodes and light clients. So-called full nodes are nodes that store the content of the chain locally on their disk, while light clients are nodes that don't. In order to access for example the balance of an account, a full node can do a disk read, while a light client needs to send a network message to a full node and wait for the full node to reply with the desired value. This reply is in the form of a Merkle proof, which makes it possible for the light client to verify the exactness of the value.
Unfortunately, this network protocol is suffering from some issues:
@@ -4642,9 +4766,9 @@ Motivation
Once Polkadot and Kusama will have transitioned to state_version = 1
, which modifies the format of the trie entries, it will be possible to generate Merkle proofs that contain only the hashes of values in the storage. Thanks to this, it is already possible to prove the existence of a key without sending its entire value (only its hash), or to prove that a value has changed or not between two blocks (by sending just their hashes).
Thus, the only reason why aforementioned issues exist is because the existing networking messages don't give the possibility for the querier to query this. This is what this proposal aims at fixing.
-Stakeholders
+Stakeholders
This is the continuation of https://github.com/w3f/PPPs/pull/10, which itself is the continuation of https://github.com/w3f/PPPs/pull/5.
-Explanation
+Explanation
The protobuf schema of the networking protocol can be found here: https://github.com/paritytech/substrate/blob/5b6519a7ff4a2d3cc424d78bc4830688f3b184c0/client/network/light/src/schema/light.v1.proto
The proposal is to modify this protocol in this way:
@@ -11,6 +11,7 @@ message Request {
@@ -4702,26 +4826,26 @@ Explanation
Also note that child tries aren't considered as descendants of the main trie when it comes to the includeDescendants
flag. In other words, if the request concerns the main trie, no content coming from child tries is ever sent back.
This protocol keeps the same maximum response size limit as currently exists (16 MiB). It is not possible for the querier to know in advance whether its query will lead to a reply that exceeds the maximum size. If the reply is too large, the replier should send back only a limited number (but at least one) of requested items in the proof. The querier should then send additional requests for the rest of the items. A response containing none of the requested items is invalid.
The server is allowed to silently discard some keys of the request if it judges that the number of requested keys is too high. This is in line with the fact that the server might truncate the response.
-Drawbacks
+Drawbacks
This proposal doesn't handle one specific situation: what if a proof containing a single specific item would exceed the response size limit? For example, if the response size limit was 1 MiB, querying the runtime code (which is typically 1.0 to 1.5 MiB) would be impossible as it's impossible to generate a proof less than 1 MiB. The response size limit is currently 16 MiB, meaning that no single storage item must exceed 16 MiB.
Unfortunately, because it's impossible to verify a Merkle proof before having received it entirely, parsing the proof in a streaming way is also not possible.
A way to solve this issue would be to Merkle-ize large storage items, so that a proof could include only a portion of a large storage item. Since this would require a change to the trie format, it is not realistically feasible in a short time frame.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
The main security consideration concerns the size of replies and the resources necessary to generate them. It is for example easily possible to ask for all keys and values of the chain, which would take a very long time to generate. Since responses to this networking protocol have a maximum size, the replier should truncate proofs that would lead to the response being too large. Note that it is already possible to send a query that would lead to a very large reply with the existing network protocol. The only thing that this proposal changes is that it would make it less complicated to perform such an attack.
Implementers of the replier side should be careful to detect early on when a reply would exceed the maximum reply size, rather than inconditionally generate a reply, as this could take a very large amount of CPU, disk I/O, and memory. Existing implementations might currently be accidentally protected from such an attack thanks to the fact that requests have a maximum size, and thus that the list of keys in the query was bounded. After this proposal, this accidental protection would no longer exist.
Malicious server nodes might truncate Merkle proofs even when they don't strictly need to, and it is not possible for the client to (easily) detect this situation. However, malicious server nodes can already do undesirable things such as throttle down their upload bandwidth or simply not respond. There is no need to handle unnecessarily truncated Merkle proofs any differently than a server simply not answering the request.
-Performance, Ergonomics, and Compatibility
-Performance
+Performance, Ergonomics, and Compatibility
+Performance
It is unclear to the author of the RFC what the performance implications are. Servers are supposed to have limits to the amount of resources they use to respond to requests, and as such the worst that can happen is that light client requests become a bit slower than they currently are.
-Ergonomics
+Ergonomics
Irrelevant.
-Compatibility
+Compatibility
The prior networking protocol is maintained for now. The older version of this protocol could get removed in a long time.
-Prior Art and References
+Prior Art and References
None. This RFC is a clean-up of an existing mechanism.
-Unresolved Questions
+Unresolved Questions
None
-Future Directions and Related Material
+Future Directions and Related Material
The current networking protocol could be deprecated in a long time. Additionally, the current "state requests" protocol (used for warp syncing) could also be deprecated in favor of this one.
Table of Contents
@@ -4742,13 +4866,13 @@ Summary
+Summary
The Polkadot UC will generate revenue from the sale of available Coretime. The question then arises: how should we handle these revenues? Broadly, there are two reasonable paths – burning the revenue and thereby removing it from total issuance or divert it to the Treasury. This Request for Comment (RFC) presents arguments favoring burning as the preferred mechanism for handling revenues from Coretime sales.
-Motivation
+Motivation
How to handle the revenue accrued from Coretime sales is an important economic question that influences the value of DOT and should be properly discussed before deciding for either of the options. Now is the best time to start this discussion.
-Stakeholders
+Stakeholders
Polkadot DOT token holders.
-Explanation
+Explanation
This RFC discusses potential benefits of burning the revenue accrued from Coretime sales instead of diverting them to Treasury. Here are the following arguments for it.
It's in the interest of the Polkadot community to have a consistent and predictable Treasury income, because volatility in the inflow can be damaging, especially in situations when it is insufficient. As such, this RFC operates under the presumption of a steady and sustainable Treasury income flow, which is crucial for the Polkadot community's stability. The assurance of a predictable Treasury income, as outlined in a prior discussion here, or through other equally effective measures, serves as a baseline assumption for this argument.
Consequently, we need not concern ourselves with this particular issue here. This naturally begs the question - why should we introduce additional volatility to the Treasury by aligning it with the variable Coretime sales? It's worth noting that Coretime revenues often exhibit an inverse relationship with periods when Treasury spending should ideally be ramped up. During periods of low Coretime utilization (indicated by lower revenue), Treasury should spend more on projects and endeavours to increase the demand for Coretime. This pattern underscores that Coretime sales, by their very nature, are an inconsistent and unpredictable source of funding for the Treasury. Given the importance of maintaining a steady and predictable inflow, it's unnecessary to rely on another volatile mechanism. Some might argue that we could have both: a steady inflow (from inflation) and some added bonus from Coretime sales, but burning the revenue would offer further benefits as described below.
@@ -4800,11 +4924,11 @@ Summary
+Summary
Introduces breaking changes to the BlockBuilder
and Core
runtime APIs.
A new function BlockBuilder::last_inherent
is introduced and the return value of Core::initialize_block
is changed to an enum.
The versions of both APIs are bumped; BlockBuilder
to 7 and Core
to 5.
-Motivation
+Motivation
There are three main features that motivate for this RFC:
- Multi-Block-Migrations: These make it possible to split a migration over multiple blocks.
@@ -4816,7 +4940,7 @@ MotivationThe runtime can tell the block author to not include any transactions in the block.
- The runtime can execute logic right after all pallet-provided inherents have been applied.
-Stakeholders
+Stakeholders
- Substrate Maintainers: They have to implement this, including tests, audit and
maintenance burden.
@@ -4824,7 +4948,7 @@ Stakeholders<
- Polkadot Parachain Teams: They also have to adapt to the breaking changes but then eventually have
multi-block migrations available.
-Explanation
+Explanation
Core::initialize_block
This runtime API function is changed from returning ()
to ExtrinsicInclusionMode
:
#![allow(unused)]
@@ -4844,26 +4968,26 @@ Combined
1. Multi-Block-Migrations: The runtime is being put into lock-down mode for the duration of the migration process by returning OnlyInherents
from initialize_block
. This ensures that no user provided transaction can interfere with the migration process. It is absolutely necessary to ensure this, since otherwise a transaction could call into un-migrated storage and violate storage invariants. The entry-point for the MBM logic is last_inherent
. This is a good spot, because any data that is touched in inherents, is not MBM-migratable anyway. It could also be done before all other inherents or at the end of the block in finalize_block
, but there is no downside from doing it in last_inherent
and the other two features are in favour of this.
2. poll
becomes possible by using last_inherent
as entry-point. It would not be possible to use a pallet inherent like System::last_inherent
to achieve this for two reasons. First is that pallets do not have access to AllPalletsWithSystem
that is required to invoke the poll
hook on all pallets. Second is that the runtime does currently not enforce an order of inherents.
3. System::PostInherents
can be done in the same manner as poll
.
-Drawbacks
+Drawbacks
As noted in the review comments: this cements some assumptions about the order of inherents into the BlockBuilder
traits. It was criticized for being to rigid in its assumptions.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
Compliance of a block author can be tested by adding specific code to the last_inherent
hook and
checking that it always executes. The new logic of initialize_block
can be tested by checking that
the block-builder will skip transactions and optional hooks when OnlyInherents
is returned.
Security: n/a
Privacy: n/a
-Performance, Ergonomics, and Compatibility
-Performance
+Performance, Ergonomics, and Compatibility
+Performance
The performance overhead is minimal in the sense that no clutter was added after fulfilling the
requirements. A slight performance penalty is expected from invoking
last_inherent
once per block.
-Ergonomics
+Ergonomics
The new interface allows for more extensible runtime logic. In the future, this will be utilized for
multi-block-migrations which should be a huge ergonomic advantage for parachain developers.
-Compatibility
+Compatibility
The advice here is OPTIONAL and outside of the RFC. To not degrade
user experience, it is recommended to ensure that an updated node can still import historic blocks.
-Prior Art and References
+Prior Art and References
The RFC is currently being implemented in polkadot-sdk#1781. Related issues and merge
requests:
@@ -4873,14 +4997,14 @@ There is no module hook after inherents and before
transactions
-Unresolved Questions
+Unresolved Questions
Please suggest a better name for BlockExecutiveMode
. We already tried: RuntimeExecutiveMode
,
ExtrinsicInclusionMode
. The names of the modes Normal
and Minimal
were also called
AllExtrinsics
and OnlyInherents
, so if you have naming preferences; please post them.
=> renamed to ExtrinsicInclusionMode
Is post_inherents
more consistent instead of last_inherent
? Then we should change it.
=> renamed to last_inherent
-Future Directions and Related Material
+Future Directions and Related Material
The long-term future here is to move the block building logic into the runtime. Currently there is a tight dance between the block author and the runtime; the author has to call into different runtime functions in quick succession and exact order. Any misstep causes the built block to be invalid.
This can be unified and simplified by moving both parts of the logic into the runtime.
@@ -4911,9 +5035,9 @@ Summary
+Summary
This document is a proposal for restructuring the bulk markets in the Polkadot UC's coretime allocation system to improve efficiency and fairness. The proposal suggests separating the BULK_PERIOD
into MARKET_PERIOD
and RENEWAL_PERIOD
, allowing for a market-driven price discovery through a clearing price Dutch auction during the MARKET_PERIOD
followed by renewal offers at the MARKET_PRICE
during the RENEWAL_PERIOD
. The new system ensures synchronicity between renewal and market prices, fairness among all current tenants, and efficient price discovery, while preserving price caps to provide security for current tenants. It seeks to start a discussion about the possibility of long-term leases.
-Motivation
+Motivation
While the initial RFC-1 has provided a robust framework for Coretime allocation within the Polkadot UC, this proposal builds upon its strengths and uses many provided building blocks to address some areas that could be further improved.
In particular, this proposal introduces the following changes:
@@ -4933,14 +5057,14 @@ Motivation
The premise of this proposal is to reduce complexity by introducing a common price (that develops releative to capacity consumption of Polkadot UC), while still allowing for market forces to add efficiency. Longterm lease owners still receive priority IF they can pay (close to) the market price. This prevents a situation where the renewal price significantly diverges from renewal prices which allows for core captures. While maximum price increase certainty might seem contradictory to efficient price discovery, the proposed model aims to balance these elements, utilizing market forces to determine the price and allocate cores effectively within certain bounds. It must be stated, that potential price increases remain predictable (in the worst-case) but could be higher than in the originally proposed design. The argument remains, however, that we need to allow market forces to affect all prices for an efficient Coretime pricing and allocation.
Ultimately, this the framework proposed here adheres to all requirements stated in RFC-1.
-Stakeholders
+Stakeholders
Primary stakeholder sets are:
- Protocol researchers and developers, largely represented by the Polkadot Fellowship and Parity Technologies' Engineering division.
- Polkadot Parachain teams both present and future, and their users.
- Polkadot DOT token holders.
-Explanation
+Explanation
Bulk Markets
The BULK_PERIOD
has been restructured into two primary segments: the MARKET_PERIOD
and RENEWAL_PERIOD
, along with an auxiliary SETTLEMENT_PERIOD
. This latter period doesn't necessitate any actions from the coretime system chain, but it facilitates a more efficient allocation of coretime in secondary markets. A significant departure from the original proposal lies in the timing of renewals, which now occur post-market phase. This adjustment aims to harmonize renewal prices with their market counterparts, ensuring a more consistent and equitable pricing model.
Market Period (14 days)
@@ -4987,12 +5111,12 @@ Drawbacks
+Drawbacks
There are trade-offs that arise from this proposal, compared to the initial model. The most notable one is that here, I prioritize requirement 6 over requirement 2. The price, in the very "worst-case" (meaning a huge explosion in demand for coretime) could lead to a much larger increase of prices in Coretime. From an economic perspective, this (rare edgecase) would also mean that we'd vastly underprice Coretime in the original model, leading to highly inefficient allocations.
-Prior Art and References
+Prior Art and References
This RFC builds extensively on the available ideas put forward in RFC-1.
Additionally, I want to express a special thanks to Samuel Haefner and Shahar Dobzinski for fruitful discussions and helping me structure my thoughts.
-Unresolved Questions
+Unresolved Questions
The technical feasability needs to be assessed.
Table of Contents
@@ -5024,9 +5148,9 @@ Authors ChaosDAO
-Summary
+Summary
This RFC proposes a change to the duration of the confirmation period for the treasurer track from 3 hours to at least 48 hours.
-Motivation
+Motivation
Track parameters for Polkadot OpenGov should be configured in a way that their "difficulty" increases relative to the power associated with their respective origin. When we look at the confirmation periods for treasury based tracks, we can see that this is clearly the case - with the one notable exception to the trend being the treasurer track:
Track Description Confirmation Period Duration
Small Tipper 10 Min
@@ -5039,7 +5163,7 @@ Motivation
The confirmation period is one of the last lines of defence for the collective Polkadot stakeholders to react to a potentially bad referendum and vote NAY in order for its confirmation period to be aborted.
Since the power / privilege level of the treasurer track is greater than that of the the big spender track – their confirmation period should be either equal, or the treasurer track's should be higher (note: currently the big spender track has a longer confirmation period than even the root track).
-Stakeholders
+Stakeholders
The primary stakeholders of this RFC are:
- DOT token holders – as this affects the protocol's treasury
@@ -5049,17 +5173,17 @@ Stakeholders<
- Leemo - expressed interest to change this parameter
- Paradox - expressed interest to change this parameter
-Explanation
+Explanation
This RFC proposes to change the duration of the confirmation period for the treasurer track. In order to achieve that, the confirm_period
parameter for the treasurer track in runtime/polkadot/src/governance/tracks.rs
must be changed.
Currently it is set to confirm_period: 3 * HOURS
It should be changed to confirm_period: 48 * HOURS
as a minimum.
It may make sense for it to be changed to a value greater than 48 hours since the treasurer track has more power than the big spender track (48 hour confirmation period); however, the root track's confirmation period is 24 hours. 48 hours may be on the upper bounds of a trade-off between security and flexibility.
-Drawbacks
+Drawbacks
The drawback of changing the treasurer track's confirmation period would be that the lifecycle of a referendum submitted on the treasurer track would ultimately be longer. However, the security of the protocol and its treasury should take priority here.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
This change will enhance / improve the security of the protocol as it relates to its treasury. The confirmation period is one of the last lines of defence for the collective Polkadot stakeholders to react to a potentially bad referendum and vote NAY in order for its confirmation period to be aborted. It makes sense for the treasurer track's confirmation period duration to be either equal to, or higher than, the big spender track confirmation period.
-Performance, Ergonomics, and Compatibility
-Performance
+Performance, Ergonomics, and Compatibility
+Performance
This is a simple change (code wise) which should not affect the performance of the Polkadot protocol, outside of increasing the duration of the confirmation period on the treasurer track.
Ergonomics & Compatibility
If the proposal alters exposed interfaces to developers or end-users, which types of usage patterns have been optimized for?
@@ -5069,14 +5193,14 @@ Prior Art and References
+Prior Art and References
N/A
-Unresolved Questions
+Unresolved Questions
The proposed change to the confirmation period duration for the treasurer track is to set it to 48 hours. This is equal to the current confirmation period for the big spender track.
Typically it seems that track parameters increase in difficulty (duration, etc.) based on the power level of their associated origin.
The longest confirmation period is that of the big spender, at 48 hours. There may be value in discussing whether or not the treasurer track confirmation period should be longer than 48 hours – a discussion of the trade-offs between security vs flexibility/agility.
As a side note, the root track confirmation period is 24 hours.
-Future Directions and Related Material
+Future Directions and Related Material
This RFC hopefully reminds the greater Polkadot community that it is possible to submit changes to the parameters of Polkadot OpenGov, and the greater protocol as a whole through the RFC process.
Table of Contents
@@ -5108,7 +5232,7 @@ ChaosDAO
-Summary
+Summary
This RFC proposes to make modifications to voting power delegations as part of the Conviction Voting pallet. The changes being proposed include:
- Allow a Delegator to vote independently of their Delegate if they so desire.
@@ -5116,7 +5240,7 @@ Summary
- Make a change so that when a delegate votes abstain their delegated votes also vote abstain.
- Allow a Delegator to delegate/ undelegate their votes for all tracks with a single call.
-Motivation
+Motivation
It has become clear since the launch of OpenGov that there are a few common tropes which pop up time and time again:
- The frequency of referenda is often too high for network participants to have sufficient time to review, comprehend, and ultimately vote on each individual referendum. This means that these network participants end up being inactive in on-chain governance.
@@ -5124,13 +5248,13 @@ MotivationDelegating votes for all tracks currently requires long batched calls which result in high fees for the Delegator - resulting in a reluctance from many to delegate their votes.
We believe (based on feedback from token holders with a larger stake in the network) that if there were some changes made to delegation mechanics, these larger stake holders would be more likely to delegate their voting power to active network participants – thus greatly increasing the support turnout.
-Stakeholders
+Stakeholders
The primary stakeholders of this RFC are:
- The Polkadot Technical Fellowship who will have to research and implement the technical aspects of this RFC
- DOT token holders in general
-Explanation
+Explanation
This RFC proposes to make 4 changes to the convictionVoting pallet logic in order to improve the user experience of those delegating their voting power to another account.
-
@@ -5146,21 +5270,21 @@
Explanation
Allow a Delegator to delegate/ undelegate their votes for all tracks with a single call - in order to delegate votes across all tracks, a user must batch 15 calls - resulting in high costs for delegation. A single call for delegate_all
/ undelegate_all
would reduce the complexity and therefore costs of delegations considerably for prospective Delegators.
-Drawbacks
+Drawbacks
We do not foresee any drawbacks by implementing these changes. If anything we believe that this should help to increase overall voter turnout (via the means of delegation) which we see as a net positive.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
We feel that the Polkadot Technical Fellowship would be the most competent collective to identify the testing requirements for the ideas presented in this RFC.
-Performance, Ergonomics, and Compatibility
-Performance
+Performance, Ergonomics, and Compatibility
+Performance
This change may add extra chain storage requirements on Polkadot, especially with respect to nested delegations.
Ergonomics & Compatibility
The change to add nested delegations may affect governance interfaces such as Nova Wallet who will have to apply changes to their indexers to support nested delegations. It may also affect the Polkadot Delegation Dashboard as well as Polkassembly & SubSquare.
We want to highlight the importance for ecosystem builders to create a mechanism for indexers and wallets to be able to understand that changes have occurred such as increasing the pallet version, etc.
-Prior Art and References
+Prior Art and References
N/A
-Unresolved Questions
+Unresolved Questions
N/A
-Future Directions and Related Material
+Future Directions and Related Material
Additionally we would like to re-open the conversation about the potential for there to be free delegations. This was discussed by Dr Gavin Wood at Sub0 2022 and we feel like this would go a great way towards increasing the amount of network participants that are delegating: https://youtu.be/hSoSA6laK3Q?t=526
Overall, we strongly feel that delegations are a great way to increase voter turnout, and the ideas presented in this RFC would hopefully help in that aspect.
@@ -5190,9 +5314,9 @@ Summary
+Summary
This RFC proposes a new host function for parachains, storage_proof_size
. It shall provide the size of the currently recorded storage proof to the runtime. Runtime authors can use the proof size to improve block utilization by retroactively reclaiming unused storage weight.
-Motivation
+Motivation
The number of extrinsics that are included in a parachain block is limited by two constraints: execution time and proof size. FRAME weights cover both concepts, and block-builders use them to decide how many extrinsics to include in a block. However, these weights are calculated ahead of time by benchmarking on a machine with reference hardware. The execution-time properties of the state-trie and its storage items are unknown at benchmarking time. Therefore, we make some assumptions about the state-trie:
- Trie Depth: We assume a trie depth to account for intermediary nodes.
@@ -5201,12 +5325,12 @@ MotivationThese pessimistic assumptions lead to an overestimation of storage weight, negatively impacting block utilization on parachains.
In addition, the current model does not account for multiple accesses to the same storage items. While these repetitive accesses will not increase storage-proof size, the runtime-side weight monitoring will account for them multiple times. Since the proof size is completely opaque to the runtime, we can not implement retroactive storage weight correction.
A solution must provide a way for the runtime to track the exact storage-proof size consumed on a per-extrinsic basis.
-Stakeholders
+Stakeholders
- Parachain Teams: They MUST include this host function in their runtime and node.
- Light-client Implementors: They SHOULD include this host function in their runtime and node.
-Explanation
+Explanation
This RFC proposes a new host function that exposes the storage-proof size to the runtime. As a result, runtimes can implement storage weight reclaiming mechanisms that improve block utilization.
This RFC proposes the following host function signature:
#![allow(unused)]
@@ -5214,14 +5338,14 @@ Explanation
fn ext_storage_proof_size_version_1() -> u64;
}
The host function MUST return an unsigned 64-bit integer value representing the current proof size. In block-execution and block-import contexts, this function MUST return the current size of the proof. To achieve this, parachain node implementors need to enable proof recording for block imports. In other contexts, this function MUST return 18446744073709551615 (u64::MAX), which represents disabled proof recording.
-Performance, Ergonomics, and Compatibility
-Performance
+Performance, Ergonomics, and Compatibility
+Performance
Parachain nodes need to enable proof recording during block import to correctly implement the proposed host function. Benchmarking conducted with balance transfers has shown a performance reduction of around 0.6% when proof recording is enabled.
-Ergonomics
+Ergonomics
The host function proposed in this RFC allows parachain runtime developers to keep track of the proof size. Typical usage patterns would be to keep track of the overall proof size or the difference between subsequent calls to the host function.
-Compatibility
+Compatibility
Parachain teams will need to include this host function to upgrade.
-Prior Art and References
+Prior Art and References
- Pull Request including proposed host function: PoV Reclaim (Clawback) Node Side.
- Issue with discussion: [FRAME core] Clawback PoV Weights For Dispatchables
@@ -5265,9 +5389,9 @@ Summary
+Summary
This RFC proposes a new model for a sustainable on-demand parachain registration, involving a smaller initial deposit and periodic rent payments. The new model considers that on-demand chains may be unregistered and later re-registered. The proposed solution also ensures a quick startup for on-demand chains on Polkadot in such cases.
-Motivation
+Motivation
With the support of on-demand parachains on Polkadot, there is a need to explore a new, more cost-effective model for registering validation code. In the current model, the parachain manager is responsible for reserving a unique ParaId
and covering the cost of storing the validation code of the parachain. These costs can escalate, particularly if the validation code is large. We need a better, sustainable model for registering on-demand parachains on Polkadot to help smaller teams deploy more easily.
This RFC suggests a new payment model to create a more financially viable approach to on-demand parachain registration. In this model, a lower initial deposit is required, followed by recurring payments upon parachain registration.
This new model will coexist with the existing one-time deposit payment model, offering teams seeking to deploy on-demand parachains on Polkadot a more cost-effective alternative.
@@ -5281,11 +5405,11 @@ RequirementsThe solution MUST allow anyone to pay the rent.
- The solution MUST prevent the removal of validation code if it could still be required for disputes or approval checking.
-Stakeholders
+Stakeholders
- Future Polkadot on-demand Parachains
-Explanation
+Explanation
This RFC proposes a set of changes that will enable the new rent based approach to registering and storing validation code on-chain.
The new model, compared to the current one, will require periodic rent payments. The parachain won't be pruned automatically if the rent is not paid, but by permitting anyone to prune the parachain and rewarding the caller, there will be an incentive for the removal of the validation code.
On-demand parachains should still be able to utilize the current one-time payment model. However, given the size of the deposit required, it's highly likely that most on-demand parachains will opt for the new rent-based model.
@@ -5392,27 +5516,27 @@ }
To enable parachain re-registration, we should introduce a new extrinsic in the paras-registrar
pallet that allows this. The logic of this extrinsic will be same as regular registration, with the distinction that it can be called by anyone, and the required deposit will be smaller since it only has to cover for the storage of the validation code.
-Drawbacks
+Drawbacks
This RFC does not alter the process of reserving a ParaId
, and therefore, it does not propose reducing it, even though such a reduction could be beneficial.
Even though this RFC doesn't delve into the specifics of the configuration values for parachain registration but rather focuses on the mechanism, configuring it carelessly could lead to potential problems.
Since the validation code hash and head data are not removed when the parachain is pruned but only when the deregister
extrinsic is called, the T::DataDepositPerByte
must be set to a higher value to create a strong enough incentive for removing it from the state.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
The implementation of this RFC will be tested on Rococo first.
Proper research should be conducted on setting the configuration values of the new system since these values can have great impact on the network.
An audit is required to ensure the implementation's correctness.
The proposal introduces no new privacy concerns.
-Performance, Ergonomics, and Compatibility
-Performance
+Performance, Ergonomics, and Compatibility
+Performance
This RFC should not introduce any performance impact.
-Ergonomics
+Ergonomics
This RFC does not affect the current parachains, nor the parachains that intend to use the one-time payment model for parachain registration.
-Compatibility
+Compatibility
This RFC does not break compatibility.
-Prior Art and References
+Prior Art and References
Prior discussion on this topic: https://github.com/paritytech/polkadot-sdk/issues/1796
-Unresolved Questions
+Unresolved Questions
None at this time.
-Future Directions and Related Material
+Future Directions and Related Material
As noted in this GitHub issue, we want to raise the per-byte cost of on-chain data storage. However, a substantial increase in this cost would make it highly impractical for on-demand parachains to register on Polkadot.
This RFC offers an alternative solution for on-demand parachains, ensuring that the per-byte cost increase doesn't overly burden the registration process.
@@ -5446,24 +5570,24 @@ Authors Bastian Köcher
-Summary
+Summary
When rotating/generating the SessionKeys
of a node, the node calls into the runtime using the
SessionKeys::generate_session_keys
runtime api. This runtime api function needs to be changed
to add an extra parameter owner
and to change the return value to also include the proof
of
ownership. The owner
should be the account id of the account setting the SessionKeys
on chain
to allow the on chain logic the verification of the proof. The on chain logic is then able to proof
the possession of the private keys of the SessionKeys
using the proof
.
-Motivation
+Motivation
When a user sets new SessionKeys
on chain the chain can currently not ensure that the user
actually has control over the private keys of the SessionKeys
. With the RFC applied the chain is able
to ensure that the user actually is in possession of the private keys.
-Stakeholders
+Stakeholders
- Polkadot runtime implementors
- Polkadot node implementors
- Validator operators
-Explanation
+Explanation
We are first going to explain the proof
format being used:
#![allow(unused)]
fn main() {
@@ -5496,26 +5620,26 @@ Explanation
already gets the proof
passed as Vec<u8>
. This proof
needs to be decoded to
the actual Proof
type as explained above. The proof
and the SCALE encoded
account_id
of the sender are used to verify the ownership of the SessionKeys
.
-Drawbacks
+Drawbacks
Validator operators need to pass the their account id when rotating their session keys in a node.
This will require updating some high level docs and making users familiar with the slightly changed ergonomics.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
Testing of the new changes is quite easy as it only requires passing an appropriate owner
for the current testing context. The changes to the proof generation and verification got
audited to ensure they are correct.
-Performance, Ergonomics, and Compatibility
-Performance
+Performance, Ergonomics, and Compatibility
+Performance
Does not have any impact on the overall performance, only setting SessionKeys
will require more weight.
-Ergonomics
+Ergonomics
If the proposal alters exposed interfaces to developers or end-users, which types of usage patterns have been optimized for?
-Compatibility
+Compatibility
Introduces a new version of the SessionKeys
runtime api. Thus, nodes should be updated before
a runtime is enacted that contains these changes otherwise they will fail to generate session keys.
-Prior Art and References
+Prior Art and References
None.
-Unresolved Questions
+Unresolved Questions
None.
-Future Directions and Related Material
+Future Directions and Related Material
Substrate implementation of the RFC.
Table of Contents
@@ -5548,16 +5672,16 @@ Summary
+Summary
Rather than enforce a limit to the total memory consumption on the client side by loading the value at :heappages
, enforce that limit on the runtime side.
-Motivation
+Motivation
From the early days of Substrate up until recently, the runtime was present in two forms: the wasm runtime (wasm bytecode passed through an interpreter) and the native runtime (native code directly run by the client).
Since the wasm runtime has a lower amount of available memory (4 GiB maximum) compared to the native runtime, and in order to ensure sure that the wasm and native runtimes always produce the same outcome, it was necessary to clamp the amount of memory available to both runtimes to the same value.
In order to achieve this, a special storage key (a "well-known" key) :heappages
was introduced and represents the number of "wasm pages" (one page equals 64kiB) of memory that are available to the memory allocator of the runtimes. If this storage key is absent, it defaults to 2048, which is 128 MiB.
The native runtime has since then been disappeared, but the concept of "heap pages" still exists. This RFC proposes a simplification to the design of Polkadot by removing the concept of "heap pages" as is currently known, and proposes alternative ways to achieve the goal of limiting the amount of memory available.
-Stakeholders
+Stakeholders
Client implementers and low-level runtime developers.
-Explanation
+Explanation
This RFC proposes the following changes to the client:
- The client no longer considers
:heappages
as special.
@@ -5583,141 +5707,28 @@ Explanation
Each parachain can choose the option that they prefer, but the author of this RFC strongly suggests either option C or B.
-Drawbacks
+Drawbacks
In case of path A, there is one situation where the behaviour pre-RFC is not equivalent to the one post-RFC: when a host function that performs an allocation (for example ext_storage_get
) is called, without this RFC this allocation might fail due to reaching the maximum heap pages, while after this RFC this will always succeed.
This is most likely not a problem, as storage values aren't supposed to be larger than a few megabytes at the very maximum.
In the unfortunate event where the runtime runs out of memory, path B would make it more difficult to relax the memory limit, as we would need to re-upload the entire Wasm, compared to updating only :heappages
in path A or before this RFC.
In the case where the runtime runs out of memory only in the specific event where the Wasm runtime is modified, this could brick the chain. However, this situation is no different than the thousands of other ways that a bug in the runtime can brick a chain, and there's no reason to be particularily worried about this situation in particular.
-Testing, Security, and Privacy
+Testing, Security, and Privacy
This RFC would reduce the chance of a consensus issue between clients.
The :heappages
are a rather obscure feature, and it is not clear what happens in some corner cases such as the value being too large (error? clamp?) or malformed. This RFC would completely erase these questions.
-Performance, Ergonomics, and Compatibility
-Performance
-In case of path A, it is unclear how performances would be affected. Path A consists in moving client-side operations to the runtime without changing these operations, and as such performance differences are expected to be minimal. Overall, we're talking about one addition/subtraction per malloc and per free, so this is more than likely completely negligible.
-In case of path B and C, the performance gain would be a net positive, as this RFC strictly removes things.
-Ergonomics
-This RFC would isolate the client and runtime more from each other, making it a bit easier to reason about the client or the runtime in isolation.
-Compatibility
-Not a breaking change. The runtime-side changes can be applied immediately (without even having to wait for changes in the client), then as soon as the runtime is updated, the client can be updated without any transition period. One can even consider updating the client before the runtime, as it corresponds to path C.
-Prior Art and References
-None.
-Unresolved Questions
-None.
-Future Directions and Related Material
-This RFC follows the same path as https://github.com/polkadot-fellows/RFCs/pull/4 by scoping everything related to memory allocations to the runtime.
-
-Table of Contents
-
-- RFC-0059: Add a discovery mechanism for nodes based on their capabilities
-
-
-
-RFC-0059: Add a discovery mechanism for nodes based on their capabilities
-
-Start Date 2023-12-18
-Description Nodes having certain capabilities register themselves in the DHT to be discoverable
-Authors Pierre Krieger
-
-
-Summary
-This RFC proposes to make the mechanism of RFC #8 more generic by introducing the concept of "capabilities".
-Implementations can implement certain "capabilities", such as serving old block headers or being a parachain bootnode.
-The discovery mechanism of RFC #8 is extended to be able to discover nodes of specific capabilities.
-Motivation
-The Polkadot peer-to-peer network is made of nodes. Not all these nodes are equal. Some nodes store only the headers of recently blocks, some nodes store all the block headers and bodies since the genesis, some nodes store the storage of all blocks since the genesis, and so on.
-It is currently not possible to know ahead of time (without connecting to it and asking) which nodes have which data available, and it is not easily possible to build a list of nodes that have a specific piece of data available.
-If you want to download for example the header of block 500, you have to connect to a randomly-chosen node, ask it for block 500, and if it says that it doesn't have the block, disconnect and try another randomly-chosen node.
-In certain situations such as downloading the storage of old blocks, nodes that have the information are relatively rare, and finding through trial and error a node that has the data can take a long time.
-This RFC attempts to solve this problem by giving the possibility to build a list of nodes that are capable of serving specific data.
-Stakeholders
-Low-level client developers.
-People interested in accessing the archive of the chain.
-Explanation
-Reading RFC #8 first might help with comprehension, as this RFC is very similar.
-Please keep in mind while reading that everything below applies for both relay chains and parachains, except mentioned otherwise.
-Capabilities
-This RFC defines a list of so-called capabilities:
-
-- Head of chain provider. An implementation with this capability must be able to serve to other nodes block headers, block bodies, justifications, calls proofs, and storage proofs of "recent" (see below) blocks, and, for relay chains, to serve to other nodes warp sync proofs where the starting block is a session change block and must participate in Grandpa and Beefy gossip.
-- History provider. An implementation with this capability must be able to serve to other nodes block headers and block bodies of any block since the genesis, and must be able to serve to other nodes justifications of any session change block since the genesis up until and including their currently finalized block.
-- Archive provider. This capability is a superset of History provider. In addition to the requirements of History provider, an implementation with this capability must be able to serve call proofs and storage proof requests of any block since the genesis up until and including their currently finalized block.
-- Parachain bootnode (only for relay chains). An implementation with this capability must be able to serve the network request described in RFC 8.
-
-In the context of the head of chain provider, the word "recent" means: any not-finalized-yet block that is equal to or an ancestor of a block that it has announced through a block announce, and any finalized block whose height is superior to its current finalized block minus 16.
-This does not include blocks that have been pruned because they're not a descendant of its current finalized block. In other words, blocks that aren't a descendant of the current finalized block can be thrown away.
-A gap of blocks is required due to race conditions: when a node finalizes a block, it takes some time for its peers to be made aware of this, during which they might send requests concerning older blocks. The exact gap is arbitrary.
-Substrate is currently by default a head of chain provider provider. After it has finished warp syncing, it downloads the list of old blocks, after which it becomes a history provider.
-If Substrate is instead configured as an archive node, then it downloads the state of all blocks since the genesis, after which it becomes an archive provider, history provider, and head of chain provider.
-If blocks pruning is enabled and the chain is a relay chain, then Substrate unfortunately doesn't implement any of these capabilities, not even head of chain provider. This is considered as a bug that should be fixed, see https://github.com/paritytech/polkadot-sdk/issues/2733.
-DHT provider registration
-This RFC heavily relies on the functionalities of the Kademlia DHT already in use by Polkadot. You can find a link to the specification here.
-Implementations that have the history provider capability should register themselves as providers under the key sha256(concat("history", randomness))
.
-Implementations that have the archive provider capability should register themselves as providers under the key sha256(concat("archive", randomness))
.
-Implementations that have the parachain bootnode capability should register themselves as provider under the key sha256(concat(scale_compact(para_id), randomness))
, as described in RFC 8.
-"Register themselves as providers" consists in sending ADD_PROVIDER
requests to nodes close to the key, as described in the Content provider advertisement
section of the specification.
-The value of randomness
can be found in the randomness
field when calling the BabeApi_currentEpoch
function.
-In order to avoid downtimes when the key changes, nodes should also register themselves as a secondary key that uses a value of randomness
equal to the randomness
field when calling BabeApi_nextEpoch
.
-Implementers should be aware that their implementation of Kademlia might already hash the key before XOR'ing it. The key is not meant to be hashed twice.
-Implementations must not register themselves if they don't fulfill the capability yet. For example, a node configured to be an archive node but that is still building its archive state in the background must register itself only after it has finished building its archive.
-Secondary DHTs
-Implementations that have the history provider capability must also participate in a secondary DHT that comprises only of nodes with that capability. The protocol name of that secondary DHT must be /<genesis-hash>/kad/history
.
-Similarly, implementations that have the archive provider capability must also participate in a secondary DHT that comprises only of nodes with that capability and whose protocol name is /<genesis-hash>/kad/archive
.
-Just like implementations must not register themselves if they don't fulfill their capability yet, they must also not participate in the secondary DHT if they don't fulfill their capability yet.
-Head of the chain providers
-Implementations that have the head of the chain provider capability do not register themselves as providers, but instead are the nodes that participate in the main DHT. In other words, they are the nodes that serve requests of the /<genesis_hash>/kad
protocol.
-Any implementation that isn't a head of the chain provider (read: light clients) must not participate in the main DHT. This is already presently the case.
-Implementations must not participate in the main DHT if they don't fulfill the capability yet. For example, a node that is still in the process of warp syncing must not participate in the main DHT. However, assuming that warp syncing doesn't last more than a few seconds, it is acceptable to ignore this requirement in order to avoid complicating implementations too much.
-Drawbacks
-None that I can see.
-Testing, Security, and Privacy
-The content of this section is basically the same as the one in RFC 8.
-This mechanism doesn't add or remove any security by itself, as it relies on existing mechanisms.
-Due to the way Kademlia works, it would become the responsibility of the 20 Polkadot nodes whose sha256(peer_id)
is closest to the key
(described in the explanations section) to store the list of nodes that have specific capabilities.
-Furthermore, when a large number of providers are registered, only the providers closest to the key
are kept, up to a certain implementation-defined limit.
-For this reason, an attacker can abuse this mechanism by randomly generating libp2p PeerIds until they find the 20 entries closest to the key
representing the target capability. They are then in control of the list of nodes with that capability. While doing this can in no way be actually harmful, it could lead to eclipse attacks.
-Because the key changes periodically and isn't predictable, and assuming that the Polkadot DHT is sufficiently large, it is not realistic for an attack like this to be maintained in the long term.
Performance, Ergonomics, and Compatibility
Performance
-The DHT mechanism generally has a low overhead, especially given that publishing providers is done only every 24 hours.
-Doing a Kademlia iterative query then sending a provider record shouldn't take more than around 50 kiB in total of bandwidth for the parachain bootnode.
-Assuming 1000 nodes with a specific capability, the 20 Polkadot full nodes corresponding to that capability will each receive a sudden spike of a few megabytes of networking traffic when the key
rotates. Again, this is relatively negligible. If this becomes a problem, one can add a random delay before a node registers itself to be the provider of the key
corresponding to BabeApi_next_epoch
.
-Maybe the biggest uncertainty is the traffic that the 20 Polkadot full nodes will receive from light clients that desire knowing the nodes with a capability. If this every becomes a problem, this value of 20 is an arbitrary constant that can be increased for more redundancy.
+In case of path A, it is unclear how performances would be affected. Path A consists in moving client-side operations to the runtime without changing these operations, and as such performance differences are expected to be minimal. Overall, we're talking about one addition/subtraction per malloc and per free, so this is more than likely completely negligible.
+In case of path B and C, the performance gain would be a net positive, as this RFC strictly removes things.
Ergonomics
-Irrelevant.
+This RFC would isolate the client and runtime more from each other, making it a bit easier to reason about the client or the runtime in isolation.
Compatibility
-Irrelevant.
+Not a breaking change. The runtime-side changes can be applied immediately (without even having to wait for changes in the client), then as soon as the runtime is updated, the client can be updated without any transition period. One can even consider updating the client before the runtime, as it corresponds to path C.
Prior Art and References
-Unknown.
+None.
Unresolved Questions
-While it fundamentally doesn't change much to this RFC, using BabeApi_currentEpoch
and BabeApi_nextEpoch
might be inappropriate. I'm not familiar enough with good practices within the runtime to have an opinion here. Should it be an entirely new pallet?
+None.
Future Directions and Related Material
-This RFC would make it possible to reliably discover archive nodes, which would make it possible to reliably send archive node requests, something that isn't currently possible. This could solve the problem of finding archive RPC node providers by migrating archive-related request to using the native peer-to-peer protocol rather than JSON-RPC.
-If we ever decide to break backwards compatibility, we could divide the "history" and "archive" capabilities in two, between nodes capable of serving older blocks and nodes capable of serving newer blocks.
-We could even add to the peer-to-peer network nodes that are only capable of serving older blocks (by reading from a database) but do not participate in the head of the chain, and that just exist for historical purposes.
+This RFC follows the same path as https://github.com/polkadot-fellows/RFCs/pull/4 by scoping everything related to memory allocations to the runtime.
diff --git a/proposed/000x-lowering-deposits-assethub.html b/proposed/000x-lowering-deposits-assethub.html
index 1f144d71f..619861c85 100644
--- a/proposed/000x-lowering-deposits-assethub.html
+++ b/proposed/000x-lowering-deposits-assethub.html
@@ -90,7 +90,7 @@
diff --git a/proposed/0026-sassafras-consensus.html b/proposed/0026-sassafras-consensus.html
index 7deea88ec..a52b0314d 100644
--- a/proposed/0026-sassafras-consensus.html
+++ b/proposed/0026-sassafras-consensus.html
@@ -90,7 +90,7 @@
diff --git a/proposed/0034-xcm-absolute-location-account-derivation.html b/proposed/0034-xcm-absolute-location-account-derivation.html
index 48ea0d7c7..5b6e5e2af 100644
--- a/proposed/0034-xcm-absolute-location-account-derivation.html
+++ b/proposed/0034-xcm-absolute-location-account-derivation.html
@@ -90,7 +90,7 @@
diff --git a/proposed/0042-extrinsics-state-version.html b/proposed/0042-extrinsics-state-version.html
index 7bf9c1684..d51a58bfd 100644
--- a/proposed/0042-extrinsics-state-version.html
+++ b/proposed/0042-extrinsics-state-version.html
@@ -90,7 +90,7 @@
diff --git a/proposed/0046-metadata-for-offline-signers.html b/proposed/0046-metadata-for-offline-signers.html
index e302642f2..f96f954aa 100644
--- a/proposed/0046-metadata-for-offline-signers.html
+++ b/proposed/0046-metadata-for-offline-signers.html
@@ -90,7 +90,7 @@
@@ -195,9 +195,6 @@ Polkadot Fellowship RFCs
Merging protocol
Complete Binary Merkle Tree construction protocol
Digest
-Shortening
-Transmission
-Offline verification
Chain verification
@@ -328,11 +325,11 @@ General flow
The metadata is converted into lean modular form (vector of chunks)
A Merkle tree is constructed from the metadata chunks
-A root of tree (as a left element) is merged with Metadata Descriptor (as a right element)
+A root of tree is merged with the hash of the MetadataDescriptor
Resulting value is a constant to be included in additionalSigned
to prove that the metadata seen by cold device is genuine
Metadata modularization
-Structure of types in shortened metadata exactly matches structure of types in scale-info
, but doc
field is always empty
+Structure of types in shortened metadata exactly matches structure of types in scale-info
at MetadataV14 state, but doc
field is always empty
struct Type {
path: Path, // vector of strings
type_params: Vec<TypeParams>,
@@ -386,6 +383,26 @@ Right node and then left node is popped from the front of the nodes queue and merged; the result is sent to the end of the queue.
Step (4) is repeated until only one node remains; this is tree root.
+queue = empty_queue
+
+while (leaves.length>1) {
+ right = leaves.pop_last
+ left = leaves.pop_last
+ queue.push_back(merge(left, right))
+}
+
+if leaves.length == 1 {
+ queue.push_front(leaves.last)
+}
+
+while queue.len() > 1 {
+ right = queue.pop_front
+ left = queue.pop_front
+ queue.push_back(merge(left, right))
+}
+
+return queue.pop
+
Resulting tree for metadata consisting of 5 nodes (numbered from 0 to 4):
root
@@ -403,14 +420,8 @@ Digest
Root hash of this tree (left) is merged with metadata descriptor blake3 hash (right); this is metadata digest.
Version number and corresponding resulting metadata digest MUST be included into Signed Extensions as specified in Chain Verification section below.
-Shortening
-For shortening, an attempt to decode transaction completely using provided metadata is performed with the same algorithm that would be used on the cold side. All chunks are associated with their leaf indices. An example of this protocol is proposed in metadata-shortener that is based on substrate-parser decoding protocol; any decoding protocol could be used here as long as cold signer's design finds it appropriate for given security model.
-Transmission
-Shortened metadata chunks MAY be trasmitted into cold device together with Merkle proof in its entirety or in parts, depending on memory capabilities of the cold device and it ability to reconstruct larger fraction of tree. This document does not specify the manner of transmission. The order of metadata chunks MAY be arbitrary, the only requirement is that indices of leaf nodes in Merkle tree corresponding to chunks MUST be communicated. Community MAY handle proof format standartization independently.
-Offline verification
-The transmitted metadata chunks are hashed together with proof lemmas to obtain root that MAY be transmitted along with the rest of payload. Verification that the root transmitted with message matches with calculated root is optional; the transmitted root SHOULD NOT be used in signature, calculated root MUST be used; however, there is no mechanism to enforce this - it should be done during cold signers code audit.
Chain verification
-The root of metadata computed by cold device MAY be included into Signed Extensions; this way the transaction will pass as valid iff hash of metadata as seen by cold storage device is identical to consensus hash of metadata, ensuring fair signing protocol.
+The root of metadata computed by cold device MAY be included into Signed Extensions; if it is included, the transaction will pass as valid iff hash of metadata as seen by cold storage device is identical to consensus hash of metadata, ensuring fair signing protocol.
The Signed Extension representing metadata digest is a single byte representing both digest vaule inclusion and shortening protocol version; this MUST be included in Signed Extensions set. Depending on its value, a digest value is included as additionalSigned
to signature computation according to following specification:
signed extension value digest value comment
0x00
digest is not included
diff --git a/proposed/0047-assignment-of-availability-chunks.html b/proposed/0047-assignment-of-availability-chunks.html
index 3575ac101..bce477ff6 100644
--- a/proposed/0047-assignment-of-availability-chunks.html
+++ b/proposed/0047-assignment-of-availability-chunks.html
@@ -90,7 +90,7 @@
@@ -467,7 +467,7 @@ Appendix A
-
+
@@ -481,7 +481,7 @@ Appendix A
-
+
diff --git a/stale/0059-nodes-capabilities-discovery.html b/proposed/0059-nodes-capabilities-discovery.html
similarity index 84%
rename from stale/0059-nodes-capabilities-discovery.html
rename to proposed/0059-nodes-capabilities-discovery.html
index 8d4bfb37b..99a83947d 100644
--- a/stale/0059-nodes-capabilities-discovery.html
+++ b/proposed/0059-nodes-capabilities-discovery.html
@@ -90,7 +90,7 @@
@@ -292,10 +292,13 @@
-
+
+
+
+
@@ -303,10 +306,13 @@
-
+
+
+
+
diff --git a/proposed/0061-allocator-inside-of-runtime.html b/proposed/0061-allocator-inside-of-runtime.html
index 030ed12a4..dda9c5b7b 100644
--- a/proposed/0061-allocator-inside-of-runtime.html
+++ b/proposed/0061-allocator-inside-of-runtime.html
@@ -90,7 +90,7 @@
@@ -294,7 +294,7 @@
-
+
@@ -308,7 +308,7 @@
-
+
diff --git a/proposed/0066-add-smartcontracts-to-assethub.html b/proposed/0066-add-smartcontracts-to-assethub.html
index ca41a530d..af51ed13e 100644
--- a/proposed/0066-add-smartcontracts-to-assethub.html
+++ b/proposed/0066-add-smartcontracts-to-assethub.html
@@ -90,7 +90,7 @@
diff --git a/searchindex.js b/searchindex.js
index 30339853e..3ac6825fb 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Object.assign(window.search, {"doc_urls":["introduction.html#introduction","proposed/000x-lowering-deposits-assethub.html#rfc-0000-lowering-nft-deposits-on-polkadot-and-kusama-asset-hubs","proposed/000x-lowering-deposits-assethub.html#summary","proposed/000x-lowering-deposits-assethub.html#motivation","proposed/000x-lowering-deposits-assethub.html#requirements","proposed/000x-lowering-deposits-assethub.html#stakeholders","proposed/000x-lowering-deposits-assethub.html#explanation","proposed/000x-lowering-deposits-assethub.html#current-code-structure","proposed/000x-lowering-deposits-assethub.html#proposed-modification-using-the-deposit-function","proposed/000x-lowering-deposits-assethub.html#enhanced-approach-to-further-lower-barriers-for-entry","proposed/000x-lowering-deposits-assethub.html#discussion-of-other-proposals","proposed/000x-lowering-deposits-assethub.html#enhanced-weak-governance-origin-model","proposed/000x-lowering-deposits-assethub.html#function-based-pricing-model","proposed/000x-lowering-deposits-assethub.html#linking-deposit-to-usdx-value","proposed/000x-lowering-deposits-assethub.html#drawbacks","proposed/000x-lowering-deposits-assethub.html#testing-security-and-privacy","proposed/000x-lowering-deposits-assethub.html#security-concerns","proposed/000x-lowering-deposits-assethub.html#performance-ergonomics-and-compatibility","proposed/000x-lowering-deposits-assethub.html#performance","proposed/000x-lowering-deposits-assethub.html#ergonomics","proposed/000x-lowering-deposits-assethub.html#compatibility","proposed/000x-lowering-deposits-assethub.html#unresolved-questions","proposed/000x-lowering-deposits-assethub.html#future-directions-and-related-material","proposed/0026-sassafras-consensus.html#rfc-0026-sassafras-consensus-protocol","proposed/0026-sassafras-consensus.html#abstract","proposed/0026-sassafras-consensus.html#1-motivation","proposed/0026-sassafras-consensus.html#11-relevance-to-implementors","proposed/0026-sassafras-consensus.html#12-supporting-sassafras-for-polkadot","proposed/0026-sassafras-consensus.html#2-stakeholders","proposed/0026-sassafras-consensus.html#21-blockchain-developers","proposed/0026-sassafras-consensus.html#22-polkadot-ecosystem-contributors","proposed/0026-sassafras-consensus.html#3-notation-and-convention","proposed/0026-sassafras-consensus.html#31-data-structures-definitions-and-encoding","proposed/0026-sassafras-consensus.html#32-pseudo-code","proposed/0026-sassafras-consensus.html#33-incremental-introduction-of-types-and-functions","proposed/0026-sassafras-consensus.html#4-protocol-introduction","proposed/0026-sassafras-consensus.html#41-submission-of-candidate-tickets","proposed/0026-sassafras-consensus.html#42-validation-of-candidate-tickets","proposed/0026-sassafras-consensus.html#43-tickets-and-slots-binding","proposed/0026-sassafras-consensus.html#44-claim-of-ticket-ownership","proposed/0026-sassafras-consensus.html#45-validation-of-ticket-ownership","proposed/0026-sassafras-consensus.html#5-bandersnatch-vrfs-cryptographic-primitives","proposed/0026-sassafras-consensus.html#51-vrf-input","proposed/0026-sassafras-consensus.html#52-vrf-preoutput","proposed/0026-sassafras-consensus.html#53-vrf-signature-data","proposed/0026-sassafras-consensus.html#54-vrf-signature","proposed/0026-sassafras-consensus.html#6-sassafras-protocol","proposed/0026-sassafras-consensus.html#61-epochs-first-block","proposed/0026-sassafras-consensus.html#62-creation-and-submission-of-candidate-tickets","proposed/0026-sassafras-consensus.html#63-validation-of-candidate-tickets","proposed/0026-sassafras-consensus.html#64-ticket-slot-binding","proposed/0026-sassafras-consensus.html#65-slot-claim-production","proposed/0026-sassafras-consensus.html#66-slot-claim-verification","proposed/0026-sassafras-consensus.html#661-primary-method","proposed/0026-sassafras-consensus.html#67-randomness-accumulator","proposed/0026-sassafras-consensus.html#7-drawbacks","proposed/0026-sassafras-consensus.html#8-testing-security-and-privacy","proposed/0026-sassafras-consensus.html#9-performance-ergonomics-and-compatibility","proposed/0026-sassafras-consensus.html#91-performance","proposed/0026-sassafras-consensus.html#92-ergonomics","proposed/0026-sassafras-consensus.html#93-compatibility","proposed/0026-sassafras-consensus.html#10-prior-art-and-references","proposed/0026-sassafras-consensus.html#11-unresolved-questions","proposed/0026-sassafras-consensus.html#12-future-directions-and-related-material","proposed/0026-sassafras-consensus.html#121-interactions-with-on-chain-code","proposed/0026-sassafras-consensus.html#122-deployment-strategies","proposed/0026-sassafras-consensus.html#123-zk-snark-srs-initialization","proposed/0026-sassafras-consensus.html#124-anonymous-submission-of-tickets","proposed/0034-xcm-absolute-location-account-derivation.html#rfc-34-xcm-absolute-location-account-derivation","proposed/0034-xcm-absolute-location-account-derivation.html#summary","proposed/0034-xcm-absolute-location-account-derivation.html#motivation","proposed/0034-xcm-absolute-location-account-derivation.html#stakeholders","proposed/0034-xcm-absolute-location-account-derivation.html#explanation","proposed/0034-xcm-absolute-location-account-derivation.html#drawbacks","proposed/0034-xcm-absolute-location-account-derivation.html#testing-security-and-privacy","proposed/0034-xcm-absolute-location-account-derivation.html#performance-ergonomics-and-compatibility","proposed/0034-xcm-absolute-location-account-derivation.html#performance","proposed/0034-xcm-absolute-location-account-derivation.html#ergonomics","proposed/0034-xcm-absolute-location-account-derivation.html#compatibility","proposed/0034-xcm-absolute-location-account-derivation.html#prior-art-and-references","proposed/0034-xcm-absolute-location-account-derivation.html#unresolved-questions","proposed/0042-extrinsics-state-version.html#rfc-0042-add-system-version-that-replaces-stateversion-on-runtimeversion","proposed/0042-extrinsics-state-version.html#summary","proposed/0042-extrinsics-state-version.html#motivation","proposed/0042-extrinsics-state-version.html#stakeholders","proposed/0042-extrinsics-state-version.html#explanation","proposed/0042-extrinsics-state-version.html#drawbacks","proposed/0042-extrinsics-state-version.html#testing-security-and-privacy","proposed/0042-extrinsics-state-version.html#performance-ergonomics-and-compatibility","proposed/0042-extrinsics-state-version.html#performance","proposed/0042-extrinsics-state-version.html#ergonomics","proposed/0042-extrinsics-state-version.html#compatibility","proposed/0042-extrinsics-state-version.html#prior-art-and-references","proposed/0042-extrinsics-state-version.html#unresolved-questions","proposed/0042-extrinsics-state-version.html#future-directions-and-related-material","proposed/0046-metadata-for-offline-signers.html#rfc-0000-metadata-for-offline-signers","proposed/0046-metadata-for-offline-signers.html#summary","proposed/0046-metadata-for-offline-signers.html#motivation","proposed/0046-metadata-for-offline-signers.html#background","proposed/0046-metadata-for-offline-signers.html#solution-requirements","proposed/0046-metadata-for-offline-signers.html#stakeholders","proposed/0046-metadata-for-offline-signers.html#explanation","proposed/0046-metadata-for-offline-signers.html#definitions","proposed/0046-metadata-for-offline-signers.html#general-flow","proposed/0046-metadata-for-offline-signers.html#metadata-modularization","proposed/0046-metadata-for-offline-signers.html#merging-protocol","proposed/0046-metadata-for-offline-signers.html#complete-binary-merkle-tree-construction-protocol","proposed/0046-metadata-for-offline-signers.html#digest","proposed/0046-metadata-for-offline-signers.html#shortening","proposed/0046-metadata-for-offline-signers.html#transmission","proposed/0046-metadata-for-offline-signers.html#offline-verification","proposed/0046-metadata-for-offline-signers.html#chain-verification","proposed/0046-metadata-for-offline-signers.html#drawbacks","proposed/0046-metadata-for-offline-signers.html#increased-transaction-size","proposed/0046-metadata-for-offline-signers.html#transition-overhead","proposed/0046-metadata-for-offline-signers.html#testing-security-and-privacy","proposed/0046-metadata-for-offline-signers.html#performance-ergonomics-and-compatibility","proposed/0046-metadata-for-offline-signers.html#performance","proposed/0046-metadata-for-offline-signers.html#ergonomics","proposed/0046-metadata-for-offline-signers.html#compatibility","proposed/0046-metadata-for-offline-signers.html#prior-art-and-references","proposed/0046-metadata-for-offline-signers.html#unresolved-questions","proposed/0046-metadata-for-offline-signers.html#future-directions-and-related-material","proposed/0047-assignment-of-availability-chunks.html#rfc-0047-assignment-of-availability-chunks-to-validators","proposed/0047-assignment-of-availability-chunks.html#summary","proposed/0047-assignment-of-availability-chunks.html#motivation","proposed/0047-assignment-of-availability-chunks.html#stakeholders","proposed/0047-assignment-of-availability-chunks.html#explanation","proposed/0047-assignment-of-availability-chunks.html#systematic-erasure-codes","proposed/0047-assignment-of-availability-chunks.html#availability-recovery-at-present","proposed/0047-assignment-of-availability-chunks.html#availability-recovery-from-systematic-chunks","proposed/0047-assignment-of-availability-chunks.html#chunk-assignment-function","proposed/0047-assignment-of-availability-chunks.html#network-protocol","proposed/0047-assignment-of-availability-chunks.html#upgrade-path","proposed/0047-assignment-of-availability-chunks.html#drawbacks","proposed/0047-assignment-of-availability-chunks.html#testing-security-and-privacy","proposed/0047-assignment-of-availability-chunks.html#performance-ergonomics-and-compatibility","proposed/0047-assignment-of-availability-chunks.html#performance","proposed/0047-assignment-of-availability-chunks.html#ergonomics","proposed/0047-assignment-of-availability-chunks.html#compatibility","proposed/0047-assignment-of-availability-chunks.html#prior-art-and-references","proposed/0047-assignment-of-availability-chunks.html#unresolved-questions","proposed/0047-assignment-of-availability-chunks.html#future-directions-and-related-material","proposed/0047-assignment-of-availability-chunks.html#appendix-a","proposed/0061-allocator-inside-of-runtime.html#rfc-0061-support-allocator-inside-of-runtime","proposed/0061-allocator-inside-of-runtime.html#summary","proposed/0061-allocator-inside-of-runtime.html#motivation","proposed/0061-allocator-inside-of-runtime.html#stakeholders","proposed/0061-allocator-inside-of-runtime.html#explanation","proposed/0061-allocator-inside-of-runtime.html#runtime-side-spec","proposed/0061-allocator-inside-of-runtime.html#client-side-spec","proposed/0061-allocator-inside-of-runtime.html#drawbacks","proposed/0061-allocator-inside-of-runtime.html#testing-security-and-privacy","proposed/0061-allocator-inside-of-runtime.html#performance-ergonomics-and-compatibility","proposed/0061-allocator-inside-of-runtime.html#performance","proposed/0061-allocator-inside-of-runtime.html#ergonomics","proposed/0061-allocator-inside-of-runtime.html#compatibility","proposed/0061-allocator-inside-of-runtime.html#prior-art-and-references","proposed/0061-allocator-inside-of-runtime.html#unresolved-questions","proposed/0061-allocator-inside-of-runtime.html#future-directions-and-related-material","proposed/0066-add-smartcontracts-to-assethub.html#rfc-0066-add-evmink-contracts-pallets-to-asset-hub-for-polkadot","proposed/0066-add-smartcontracts-to-assethub.html#summary","proposed/0066-add-smartcontracts-to-assethub.html#motivation","proposed/0066-add-smartcontracts-to-assethub.html#definft-applications-need-smart-contracts-on-assethub","proposed/0066-add-smartcontracts-to-assethub.html#rollups-need-smart-contracts-on-assethub","proposed/0066-add-smartcontracts-to-assethub.html#ink-on-assethub-will-lead-to-coreplay-developers--on-assethub","proposed/0066-add-smartcontracts-to-assethub.html#stakeholders","proposed/0066-add-smartcontracts-to-assethub.html#explanation","proposed/0066-add-smartcontracts-to-assethub.html#limit-smart-contract-weight-allocation","proposed/0066-add-smartcontracts-to-assethub.html#model-assethub-assets-inside-evm-smart-contracts-based-on-astar","proposed/0066-add-smartcontracts-to-assethub.html#new-dot-revenue-sources","proposed/0066-add-smartcontracts-to-assethub.html#new-revenue-from-assethub-evm-contracts","proposed/0066-add-smartcontracts-to-assethub.html#new-revenue-for-inkcoreplay-contracts","proposed/0066-add-smartcontracts-to-assethub.html#drawbacks-and-tradeoffs","proposed/0066-add-smartcontracts-to-assethub.html#testing-security-and-privacy","proposed/0066-add-smartcontracts-to-assethub.html#performance-ergonomics-and-compatibility","proposed/0066-add-smartcontracts-to-assethub.html#performance","proposed/0066-add-smartcontracts-to-assethub.html#ergonomics","proposed/0066-add-smartcontracts-to-assethub.html#compatibility","proposed/0066-add-smartcontracts-to-assethub.html#unresolved-questions","proposed/0066-add-smartcontracts-to-assethub.html#future-directions-and-related-material","approved/0001-agile-coretime.html#rfc-1-agile-coretime","approved/0001-agile-coretime.html#summary","approved/0001-agile-coretime.html#motivation","approved/0001-agile-coretime.html#present-system","approved/0001-agile-coretime.html#problems","approved/0001-agile-coretime.html#requirements","approved/0001-agile-coretime.html#stakeholders","approved/0001-agile-coretime.html#explanation","approved/0001-agile-coretime.html#overview","approved/0001-agile-coretime.html#detail","approved/0001-agile-coretime.html#specific-functions-of-the-coretime-chain","approved/0001-agile-coretime.html#notes-on-the-instantaneous-coretime-market","approved/0001-agile-coretime.html#notes-on-economics","approved/0001-agile-coretime.html#notes-on-types","approved/0001-agile-coretime.html#rollout","approved/0001-agile-coretime.html#performance-ergonomics-and-compatibility","approved/0001-agile-coretime.html#testing-security-and-privacy","approved/0001-agile-coretime.html#future-directions-and-related-material","approved/0001-agile-coretime.html#drawbacks-alternatives-and-unknowns","approved/0001-agile-coretime.html#prior-art-and-references","approved/0005-coretime-interface.html#rfc-5-coretime-interface","approved/0005-coretime-interface.html#summary","approved/0005-coretime-interface.html#motivation","approved/0005-coretime-interface.html#requirements","approved/0005-coretime-interface.html#stakeholders","approved/0005-coretime-interface.html#explanation","approved/0005-coretime-interface.html#ump-message-types","approved/0005-coretime-interface.html#dmp-message-types","approved/0005-coretime-interface.html#realistic-limits-of-the-usage","approved/0005-coretime-interface.html#performance-ergonomics-and-compatibility","approved/0005-coretime-interface.html#testing-security-and-privacy","approved/0005-coretime-interface.html#future-directions-and-related-material","approved/0005-coretime-interface.html#drawbacks-alternatives-and-unknowns","approved/0005-coretime-interface.html#prior-art-and-references","approved/0007-system-collator-selection.html#rfc-0007-system-collator-selection","approved/0007-system-collator-selection.html#summary","approved/0007-system-collator-selection.html#motivation","approved/0007-system-collator-selection.html#requirements","approved/0007-system-collator-selection.html#stakeholders","approved/0007-system-collator-selection.html#explanation","approved/0007-system-collator-selection.html#set-size","approved/0007-system-collator-selection.html#drawbacks","approved/0007-system-collator-selection.html#testing-security-and-privacy","approved/0007-system-collator-selection.html#performance-ergonomics-and-compatibility","approved/0007-system-collator-selection.html#performance","approved/0007-system-collator-selection.html#ergonomics","approved/0007-system-collator-selection.html#compatibility","approved/0007-system-collator-selection.html#prior-art-and-references","approved/0007-system-collator-selection.html#written-discussions","approved/0007-system-collator-selection.html#prior-feedback-and-input-from","approved/0007-system-collator-selection.html#unresolved-questions","approved/0007-system-collator-selection.html#future-directions-and-related-material","approved/0008-parachain-bootnodes-dht.html#rfc-0008-store-parachain-bootnodes-in-relay-chain-dht","approved/0008-parachain-bootnodes-dht.html#summary","approved/0008-parachain-bootnodes-dht.html#motivation","approved/0008-parachain-bootnodes-dht.html#stakeholders","approved/0008-parachain-bootnodes-dht.html#explanation","approved/0008-parachain-bootnodes-dht.html#dht-provider-registration","approved/0008-parachain-bootnodes-dht.html#new-networking-protocol","approved/0008-parachain-bootnodes-dht.html#drawbacks","approved/0008-parachain-bootnodes-dht.html#testing-security-and-privacy","approved/0008-parachain-bootnodes-dht.html#performance-ergonomics-and-compatibility","approved/0008-parachain-bootnodes-dht.html#performance","approved/0008-parachain-bootnodes-dht.html#ergonomics","approved/0008-parachain-bootnodes-dht.html#compatibility","approved/0008-parachain-bootnodes-dht.html#prior-art-and-references","approved/0008-parachain-bootnodes-dht.html#unresolved-questions","approved/0008-parachain-bootnodes-dht.html#future-directions-and-related-material","approved/0012-process-for-adding-new-collectives.html#rfc-0012-process-for-adding-new-system-collectives","approved/0012-process-for-adding-new-collectives.html#summary","approved/0012-process-for-adding-new-collectives.html#motivation","approved/0012-process-for-adding-new-collectives.html#stakeholders","approved/0012-process-for-adding-new-collectives.html#explanation","approved/0012-process-for-adding-new-collectives.html#removing-collectives","approved/0012-process-for-adding-new-collectives.html#drawbacks","approved/0012-process-for-adding-new-collectives.html#testing-security-and-privacy","approved/0012-process-for-adding-new-collectives.html#performance-ergonomics-and-compatibility","approved/0012-process-for-adding-new-collectives.html#prior-art-and-references","approved/0012-process-for-adding-new-collectives.html#unresolved-questions","approved/0014-improve-locking-mechanism-for-parachains.html#rfc-0014-improve-locking-mechanism-for-parachains","approved/0014-improve-locking-mechanism-for-parachains.html#summary","approved/0014-improve-locking-mechanism-for-parachains.html#motivation","approved/0014-improve-locking-mechanism-for-parachains.html#requirements","approved/0014-improve-locking-mechanism-for-parachains.html#stakeholders","approved/0014-improve-locking-mechanism-for-parachains.html#explanation","approved/0014-improve-locking-mechanism-for-parachains.html#status-quo","approved/0014-improve-locking-mechanism-for-parachains.html#proposed-changes","approved/0014-improve-locking-mechanism-for-parachains.html#migration","approved/0014-improve-locking-mechanism-for-parachains.html#drawbacks","approved/0014-improve-locking-mechanism-for-parachains.html#testing-security-and-privacy","approved/0014-improve-locking-mechanism-for-parachains.html#performance","approved/0014-improve-locking-mechanism-for-parachains.html#ergonomics","approved/0014-improve-locking-mechanism-for-parachains.html#compatibility","approved/0014-improve-locking-mechanism-for-parachains.html#prior-art-and-references","approved/0014-improve-locking-mechanism-for-parachains.html#unresolved-questions","approved/0014-improve-locking-mechanism-for-parachains.html#future-directions-and-related-material","approved/0022-adopt-encointer-runtime.html#rfc-0022-adopt-encointer-runtime","approved/0022-adopt-encointer-runtime.html#summary","approved/0022-adopt-encointer-runtime.html#motivation","approved/0022-adopt-encointer-runtime.html#stakeholders","approved/0022-adopt-encointer-runtime.html#explanation","approved/0022-adopt-encointer-runtime.html#drawbacks","approved/0022-adopt-encointer-runtime.html#testing-security-and-privacy","approved/0022-adopt-encointer-runtime.html#performance-ergonomics-and-compatibility","approved/0022-adopt-encointer-runtime.html#prior-art-and-references","approved/0022-adopt-encointer-runtime.html#unresolved-questions","approved/0022-adopt-encointer-runtime.html#future-directions-and-related-material","approved/0032-minimal-relay.html#rfc-0032-minimal-relay","approved/0032-minimal-relay.html#summary","approved/0032-minimal-relay.html#motivation","approved/0032-minimal-relay.html#stakeholders","approved/0032-minimal-relay.html#explanation","approved/0032-minimal-relay.html#migrations","approved/0032-minimal-relay.html#interfaces","approved/0032-minimal-relay.html#functional-architecture","approved/0032-minimal-relay.html#resource-allocation","approved/0032-minimal-relay.html#deployment","approved/0032-minimal-relay.html#kusama","approved/0032-minimal-relay.html#drawbacks","approved/0032-minimal-relay.html#testing-security-and-privacy","approved/0032-minimal-relay.html#performance-ergonomics-and-compatibility","approved/0032-minimal-relay.html#performance","approved/0032-minimal-relay.html#ergonomics","approved/0032-minimal-relay.html#compatibility","approved/0032-minimal-relay.html#prior-art-and-references","approved/0032-minimal-relay.html#unresolved-questions","approved/0032-minimal-relay.html#future-directions-and-related-material","approved/0050-fellowship-salaries.html#rfc-0050-fellowship-salaries","approved/0050-fellowship-salaries.html#summary","approved/0050-fellowship-salaries.html#motivation","approved/0050-fellowship-salaries.html#stakeholders","approved/0050-fellowship-salaries.html#explanation","approved/0050-fellowship-salaries.html#salary-asset","approved/0050-fellowship-salaries.html#projections","approved/0050-fellowship-salaries.html#updates","approved/0050-fellowship-salaries.html#drawbacks","approved/0050-fellowship-salaries.html#testing-security-and-privacy","approved/0050-fellowship-salaries.html#performance-ergonomics-and-compatibility","approved/0050-fellowship-salaries.html#performance","approved/0050-fellowship-salaries.html#ergonomics","approved/0050-fellowship-salaries.html#compatibility","approved/0050-fellowship-salaries.html#prior-art-and-references","approved/0050-fellowship-salaries.html#unresolved-questions","approved/0056-one-transaction-per-notification.html#rfc-0056-enforce-only-one-transaction-per-notification","approved/0056-one-transaction-per-notification.html#summary","approved/0056-one-transaction-per-notification.html#motivation","approved/0056-one-transaction-per-notification.html#stakeholders","approved/0056-one-transaction-per-notification.html#explanation","approved/0056-one-transaction-per-notification.html#drawbacks","approved/0056-one-transaction-per-notification.html#testing-security-and-privacy","approved/0056-one-transaction-per-notification.html#performance-ergonomics-and-compatibility","approved/0056-one-transaction-per-notification.html#performance","approved/0056-one-transaction-per-notification.html#ergonomics","approved/0056-one-transaction-per-notification.html#compatibility","approved/0056-one-transaction-per-notification.html#prior-art-and-references","approved/0056-one-transaction-per-notification.html#unresolved-questions","approved/0056-one-transaction-per-notification.html#future-directions-and-related-material","stale/0004-remove-unnecessary-allocator-usage.html#rfc-0004-remove-the-host-side-runtime-memory-allocator","stale/0004-remove-unnecessary-allocator-usage.html#summary","stale/0004-remove-unnecessary-allocator-usage.html#motivation","stale/0004-remove-unnecessary-allocator-usage.html#stakeholders","stale/0004-remove-unnecessary-allocator-usage.html#explanation","stale/0004-remove-unnecessary-allocator-usage.html#new-host-functions","stale/0004-remove-unnecessary-allocator-usage.html#other-changes","stale/0004-remove-unnecessary-allocator-usage.html#drawbacks","stale/0004-remove-unnecessary-allocator-usage.html#prior-art","stale/0004-remove-unnecessary-allocator-usage.html#unresolved-questions","stale/0004-remove-unnecessary-allocator-usage.html#future-possibilities","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#rfc-0006-dynamic-pricing-for-bulk-coretime-sales","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#summary","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#motivation","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#requirements","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#stakeholders","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#explanation","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#overview","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#parameters","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#function","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#pseudo-code","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#properties-of-the-curve","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#example-configurations","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#drawbacks","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#prior-art-and-references","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#future-possibilities","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#references","stale/0009-improved-net-light-client-requests.html#rfc-0009-improved-light-client-requests-networking-protocol","stale/0009-improved-net-light-client-requests.html#summary","stale/0009-improved-net-light-client-requests.html#motivation","stale/0009-improved-net-light-client-requests.html#stakeholders","stale/0009-improved-net-light-client-requests.html#explanation","stale/0009-improved-net-light-client-requests.html#drawbacks","stale/0009-improved-net-light-client-requests.html#testing-security-and-privacy","stale/0009-improved-net-light-client-requests.html#performance-ergonomics-and-compatibility","stale/0009-improved-net-light-client-requests.html#performance","stale/0009-improved-net-light-client-requests.html#ergonomics","stale/0009-improved-net-light-client-requests.html#compatibility","stale/0009-improved-net-light-client-requests.html#prior-art-and-references","stale/0009-improved-net-light-client-requests.html#unresolved-questions","stale/0009-improved-net-light-client-requests.html#future-directions-and-related-material","stale/0010-burn-coretime-revenue.html#rfc-0010-burn-coretime-revenue","stale/0010-burn-coretime-revenue.html#summary","stale/0010-burn-coretime-revenue.html#motivation","stale/0010-burn-coretime-revenue.html#stakeholders","stale/0010-burn-coretime-revenue.html#explanation","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#rfc-0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#summary","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#motivation","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#stakeholders","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#explanation","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#coreinitialize_block","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#blockbuilderlast_inherent","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#combined","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#drawbacks","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#testing-security-and-privacy","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#performance-ergonomics-and-compatibility","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#performance","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#ergonomics","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#compatibility","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#prior-art-and-references","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#unresolved-questions","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#future-directions-and-related-material","stale/0015-market-design-revisit.html#rfc-0015-market-design-revisit","stale/0015-market-design-revisit.html#summary","stale/0015-market-design-revisit.html#motivation","stale/0015-market-design-revisit.html#stakeholders","stale/0015-market-design-revisit.html#explanation","stale/0015-market-design-revisit.html#bulk-markets","stale/0015-market-design-revisit.html#benefits-of-this-system","stale/0015-market-design-revisit.html#further-discussion-points","stale/0015-market-design-revisit.html#drawbacks","stale/0015-market-design-revisit.html#prior-art-and-references","stale/0015-market-design-revisit.html#unresolved-questions","stale/0020-treasurer-track-confirmation-period-duration-modification.html#rfc-0020-treasurer-track-confirmation-period-duration-modification","stale/0020-treasurer-track-confirmation-period-duration-modification.html#summary","stale/0020-treasurer-track-confirmation-period-duration-modification.html#motivation","stale/0020-treasurer-track-confirmation-period-duration-modification.html#stakeholders","stale/0020-treasurer-track-confirmation-period-duration-modification.html#explanation","stale/0020-treasurer-track-confirmation-period-duration-modification.html#drawbacks","stale/0020-treasurer-track-confirmation-period-duration-modification.html#testing-security-and-privacy","stale/0020-treasurer-track-confirmation-period-duration-modification.html#performance-ergonomics-and-compatibility","stale/0020-treasurer-track-confirmation-period-duration-modification.html#performance","stale/0020-treasurer-track-confirmation-period-duration-modification.html#ergonomics--compatibility","stale/0020-treasurer-track-confirmation-period-duration-modification.html#prior-art-and-references","stale/0020-treasurer-track-confirmation-period-duration-modification.html#unresolved-questions","stale/0020-treasurer-track-confirmation-period-duration-modification.html#future-directions-and-related-material","stale/0035-conviction-voting-delegation-modifications.html#rfc-0035-conviction-voting-delegation-modifications","stale/0035-conviction-voting-delegation-modifications.html#summary","stale/0035-conviction-voting-delegation-modifications.html#motivation","stale/0035-conviction-voting-delegation-modifications.html#stakeholders","stale/0035-conviction-voting-delegation-modifications.html#explanation","stale/0035-conviction-voting-delegation-modifications.html#drawbacks","stale/0035-conviction-voting-delegation-modifications.html#testing-security-and-privacy","stale/0035-conviction-voting-delegation-modifications.html#performance-ergonomics-and-compatibility","stale/0035-conviction-voting-delegation-modifications.html#performance","stale/0035-conviction-voting-delegation-modifications.html#ergonomics--compatibility","stale/0035-conviction-voting-delegation-modifications.html#prior-art-and-references","stale/0035-conviction-voting-delegation-modifications.html#unresolved-questions","stale/0035-conviction-voting-delegation-modifications.html#future-directions-and-related-material","stale/0043-storage-proof-size-hostfunction.html#rfc-0043-introduce-storage_proof_size-host-function-for-improved-parachain-block-utilization","stale/0043-storage-proof-size-hostfunction.html#summary","stale/0043-storage-proof-size-hostfunction.html#motivation","stale/0043-storage-proof-size-hostfunction.html#stakeholders","stale/0043-storage-proof-size-hostfunction.html#explanation","stale/0043-storage-proof-size-hostfunction.html#performance-ergonomics-and-compatibility","stale/0043-storage-proof-size-hostfunction.html#performance","stale/0043-storage-proof-size-hostfunction.html#ergonomics","stale/0043-storage-proof-size-hostfunction.html#compatibility","stale/0043-storage-proof-size-hostfunction.html#prior-art-and-references","stale/0044-rent-based-registration.html#rfc-0044-rent-based-registration-model","stale/0044-rent-based-registration.html#summary","stale/0044-rent-based-registration.html#motivation","stale/0044-rent-based-registration.html#requirements","stale/0044-rent-based-registration.html#stakeholders","stale/0044-rent-based-registration.html#explanation","stale/0044-rent-based-registration.html#registering-an-on-demand-parachain","stale/0044-rent-based-registration.html#on-demand-parachain-pruning","stale/0044-rent-based-registration.html#ensuring-rent-is-paid","stale/0044-rent-based-registration.html#on-demand-para-re-registration","stale/0044-rent-based-registration.html#drawbacks","stale/0044-rent-based-registration.html#testing-security-and-privacy","stale/0044-rent-based-registration.html#performance-ergonomics-and-compatibility","stale/0044-rent-based-registration.html#performance","stale/0044-rent-based-registration.html#ergonomics","stale/0044-rent-based-registration.html#compatibility","stale/0044-rent-based-registration.html#prior-art-and-references","stale/0044-rent-based-registration.html#unresolved-questions","stale/0044-rent-based-registration.html#future-directions-and-related-material","stale/0048-session-keys-runtime-api.html#rfc-0048-generate-ownership-proof-for-sessionkeys","stale/0048-session-keys-runtime-api.html#summary","stale/0048-session-keys-runtime-api.html#motivation","stale/0048-session-keys-runtime-api.html#stakeholders","stale/0048-session-keys-runtime-api.html#explanation","stale/0048-session-keys-runtime-api.html#drawbacks","stale/0048-session-keys-runtime-api.html#testing-security-and-privacy","stale/0048-session-keys-runtime-api.html#performance-ergonomics-and-compatibility","stale/0048-session-keys-runtime-api.html#performance","stale/0048-session-keys-runtime-api.html#ergonomics","stale/0048-session-keys-runtime-api.html#compatibility","stale/0048-session-keys-runtime-api.html#prior-art-and-references","stale/0048-session-keys-runtime-api.html#unresolved-questions","stale/0048-session-keys-runtime-api.html#future-directions-and-related-material","stale/0054-remove-heap-pages.html#rfc-0054-remove-the-concept-of-heap-pages-from-the-client","stale/0054-remove-heap-pages.html#summary","stale/0054-remove-heap-pages.html#motivation","stale/0054-remove-heap-pages.html#stakeholders","stale/0054-remove-heap-pages.html#explanation","stale/0054-remove-heap-pages.html#drawbacks","stale/0054-remove-heap-pages.html#testing-security-and-privacy","stale/0054-remove-heap-pages.html#performance-ergonomics-and-compatibility","stale/0054-remove-heap-pages.html#performance","stale/0054-remove-heap-pages.html#ergonomics","stale/0054-remove-heap-pages.html#compatibility","stale/0054-remove-heap-pages.html#prior-art-and-references","stale/0054-remove-heap-pages.html#unresolved-questions","stale/0054-remove-heap-pages.html#future-directions-and-related-material","stale/0059-nodes-capabilities-discovery.html#rfc-0059-add-a-discovery-mechanism-for-nodes-based-on-their-capabilities","stale/0059-nodes-capabilities-discovery.html#summary","stale/0059-nodes-capabilities-discovery.html#motivation","stale/0059-nodes-capabilities-discovery.html#stakeholders","stale/0059-nodes-capabilities-discovery.html#explanation","stale/0059-nodes-capabilities-discovery.html#capabilities","stale/0059-nodes-capabilities-discovery.html#dht-provider-registration","stale/0059-nodes-capabilities-discovery.html#secondary-dhts","stale/0059-nodes-capabilities-discovery.html#head-of-the-chain-providers","stale/0059-nodes-capabilities-discovery.html#drawbacks","stale/0059-nodes-capabilities-discovery.html#testing-security-and-privacy","stale/0059-nodes-capabilities-discovery.html#performance-ergonomics-and-compatibility","stale/0059-nodes-capabilities-discovery.html#performance","stale/0059-nodes-capabilities-discovery.html#ergonomics","stale/0059-nodes-capabilities-discovery.html#compatibility","stale/0059-nodes-capabilities-discovery.html#prior-art-and-references","stale/0059-nodes-capabilities-discovery.html#unresolved-questions","stale/0059-nodes-capabilities-discovery.html#future-directions-and-related-material"],"index":{"documentStore":{"docInfo":{"0":{"body":16,"breadcrumbs":2,"title":1},"1":{"body":92,"breadcrumbs":18,"title":9},"10":{"body":12,"breadcrumbs":11,"title":2},"100":{"body":53,"breadcrumbs":6,"title":1},"101":{"body":19,"breadcrumbs":6,"title":1},"102":{"body":232,"breadcrumbs":6,"title":1},"103":{"body":32,"breadcrumbs":7,"title":2},"104":{"body":131,"breadcrumbs":7,"title":2},"105":{"body":9,"breadcrumbs":7,"title":2},"106":{"body":82,"breadcrumbs":11,"title":6},"107":{"body":42,"breadcrumbs":6,"title":1},"108":{"body":41,"breadcrumbs":6,"title":1},"109":{"body":44,"breadcrumbs":6,"title":1},"11":{"body":79,"breadcrumbs":14,"title":5},"110":{"body":36,"breadcrumbs":7,"title":2},"111":{"body":80,"breadcrumbs":7,"title":2},"112":{"body":0,"breadcrumbs":6,"title":1},"113":{"body":15,"breadcrumbs":8,"title":3},"114":{"body":31,"breadcrumbs":7,"title":2},"115":{"body":40,"breadcrumbs":8,"title":3},"116":{"body":0,"breadcrumbs":8,"title":3},"117":{"body":23,"breadcrumbs":6,"title":1},"118":{"body":10,"breadcrumbs":6,"title":1},"119":{"body":18,"breadcrumbs":6,"title":1},"12":{"body":60,"breadcrumbs":13,"title":4},"120":{"body":14,"breadcrumbs":8,"title":3},"121":{"body":12,"breadcrumbs":7,"title":2},"122":{"body":42,"breadcrumbs":9,"title":4},"123":{"body":67,"breadcrumbs":12,"title":6},"124":{"body":20,"breadcrumbs":7,"title":1},"125":{"body":66,"breadcrumbs":7,"title":1},"126":{"body":5,"breadcrumbs":7,"title":1},"127":{"body":0,"breadcrumbs":7,"title":1},"128":{"body":77,"breadcrumbs":9,"title":3},"129":{"body":94,"breadcrumbs":9,"title":3},"13":{"body":89,"breadcrumbs":13,"title":4},"130":{"body":82,"breadcrumbs":10,"title":4},"131":{"body":99,"breadcrumbs":9,"title":3},"132":{"body":261,"breadcrumbs":8,"title":2},"133":{"body":172,"breadcrumbs":8,"title":2},"134":{"body":59,"breadcrumbs":7,"title":1},"135":{"body":11,"breadcrumbs":9,"title":3},"136":{"body":0,"breadcrumbs":9,"title":3},"137":{"body":45,"breadcrumbs":7,"title":1},"138":{"body":1,"breadcrumbs":7,"title":1},"139":{"body":19,"breadcrumbs":7,"title":1},"14":{"body":161,"breadcrumbs":10,"title":1},"140":{"body":6,"breadcrumbs":9,"title":3},"141":{"body":1,"breadcrumbs":8,"title":2},"142":{"body":13,"breadcrumbs":10,"title":4},"143":{"body":217,"breadcrumbs":7,"title":1},"144":{"body":56,"breadcrumbs":12,"title":6},"145":{"body":33,"breadcrumbs":7,"title":1},"146":{"body":122,"breadcrumbs":7,"title":1},"147":{"body":4,"breadcrumbs":7,"title":1},"148":{"body":0,"breadcrumbs":7,"title":1},"149":{"body":150,"breadcrumbs":9,"title":3},"15":{"body":0,"breadcrumbs":12,"title":3},"150":{"body":100,"breadcrumbs":9,"title":3},"151":{"body":34,"breadcrumbs":7,"title":1},"152":{"body":33,"breadcrumbs":9,"title":3},"153":{"body":0,"breadcrumbs":9,"title":3},"154":{"body":19,"breadcrumbs":7,"title":1},"155":{"body":16,"breadcrumbs":7,"title":1},"156":{"body":47,"breadcrumbs":7,"title":1},"157":{"body":8,"breadcrumbs":9,"title":3},"158":{"body":2,"breadcrumbs":8,"title":2},"159":{"body":22,"breadcrumbs":10,"title":4},"16":{"body":9,"breadcrumbs":11,"title":2},"160":{"body":108,"breadcrumbs":18,"title":9},"161":{"body":53,"breadcrumbs":10,"title":1},"162":{"body":89,"breadcrumbs":10,"title":1},"163":{"body":122,"breadcrumbs":15,"title":6},"164":{"body":273,"breadcrumbs":14,"title":5},"165":{"body":107,"breadcrumbs":15,"title":6},"166":{"body":83,"breadcrumbs":10,"title":1},"167":{"body":0,"breadcrumbs":10,"title":1},"168":{"body":170,"breadcrumbs":14,"title":5},"169":{"body":91,"breadcrumbs":18,"title":9},"17":{"body":0,"breadcrumbs":12,"title":3},"170":{"body":23,"breadcrumbs":13,"title":4},"171":{"body":24,"breadcrumbs":14,"title":5},"172":{"body":43,"breadcrumbs":13,"title":4},"173":{"body":76,"breadcrumbs":11,"title":2},"174":{"body":25,"breadcrumbs":12,"title":3},"175":{"body":0,"breadcrumbs":12,"title":3},"176":{"body":20,"breadcrumbs":10,"title":1},"177":{"body":40,"breadcrumbs":10,"title":1},"178":{"body":34,"breadcrumbs":10,"title":1},"179":{"body":22,"breadcrumbs":11,"title":2},"18":{"body":35,"breadcrumbs":10,"title":1},"180":{"body":17,"breadcrumbs":13,"title":4},"181":{"body":65,"breadcrumbs":8,"title":4},"182":{"body":50,"breadcrumbs":5,"title":1},"183":{"body":0,"breadcrumbs":5,"title":1},"184":{"body":124,"breadcrumbs":6,"title":2},"185":{"body":153,"breadcrumbs":5,"title":1},"186":{"body":90,"breadcrumbs":5,"title":1},"187":{"body":54,"breadcrumbs":5,"title":1},"188":{"body":0,"breadcrumbs":5,"title":1},"189":{"body":438,"breadcrumbs":5,"title":1},"19":{"body":20,"breadcrumbs":10,"title":1},"190":{"body":562,"breadcrumbs":5,"title":1},"191":{"body":630,"breadcrumbs":8,"title":4},"192":{"body":103,"breadcrumbs":8,"title":4},"193":{"body":410,"breadcrumbs":6,"title":2},"194":{"body":905,"breadcrumbs":6,"title":2},"195":{"body":52,"breadcrumbs":5,"title":1},"196":{"body":33,"breadcrumbs":7,"title":3},"197":{"body":40,"breadcrumbs":7,"title":3},"198":{"body":35,"breadcrumbs":8,"title":4},"199":{"body":49,"breadcrumbs":7,"title":3},"2":{"body":38,"breadcrumbs":10,"title":1},"20":{"body":7,"breadcrumbs":10,"title":1},"200":{"body":34,"breadcrumbs":7,"title":3},"201":{"body":55,"breadcrumbs":8,"title":4},"202":{"body":43,"breadcrumbs":5,"title":1},"203":{"body":37,"breadcrumbs":5,"title":1},"204":{"body":73,"breadcrumbs":5,"title":1},"205":{"body":21,"breadcrumbs":5,"title":1},"206":{"body":39,"breadcrumbs":5,"title":1},"207":{"body":235,"breadcrumbs":7,"title":3},"208":{"body":86,"breadcrumbs":7,"title":3},"209":{"body":32,"breadcrumbs":7,"title":3},"21":{"body":25,"breadcrumbs":11,"title":2},"210":{"body":2,"breadcrumbs":7,"title":3},"211":{"body":11,"breadcrumbs":7,"title":3},"212":{"body":20,"breadcrumbs":8,"title":4},"213":{"body":2,"breadcrumbs":7,"title":3},"214":{"body":1,"breadcrumbs":7,"title":3},"215":{"body":53,"breadcrumbs":10,"title":5},"216":{"body":40,"breadcrumbs":6,"title":1},"217":{"body":203,"breadcrumbs":6,"title":1},"218":{"body":34,"breadcrumbs":6,"title":1},"219":{"body":8,"breadcrumbs":6,"title":1},"22":{"body":35,"breadcrumbs":13,"title":4},"220":{"body":176,"breadcrumbs":6,"title":1},"221":{"body":18,"breadcrumbs":7,"title":2},"222":{"body":11,"breadcrumbs":6,"title":1},"223":{"body":25,"breadcrumbs":8,"title":3},"224":{"body":14,"breadcrumbs":8,"title":3},"225":{"body":21,"breadcrumbs":6,"title":1},"226":{"body":16,"breadcrumbs":6,"title":1},"227":{"body":8,"breadcrumbs":6,"title":1},"228":{"body":0,"breadcrumbs":8,"title":3},"229":{"body":16,"breadcrumbs":7,"title":2},"23":{"body":176,"breadcrumbs":10,"title":5},"230":{"body":21,"breadcrumbs":8,"title":3},"231":{"body":2,"breadcrumbs":7,"title":2},"232":{"body":13,"breadcrumbs":9,"title":4},"233":{"body":57,"breadcrumbs":16,"title":8},"234":{"body":29,"breadcrumbs":9,"title":1},"235":{"body":185,"breadcrumbs":9,"title":1},"236":{"body":15,"breadcrumbs":9,"title":1},"237":{"body":60,"breadcrumbs":9,"title":1},"238":{"body":110,"breadcrumbs":11,"title":3},"239":{"body":153,"breadcrumbs":11,"title":3},"24":{"body":38,"breadcrumbs":6,"title":1},"240":{"body":96,"breadcrumbs":9,"title":1},"241":{"body":144,"breadcrumbs":11,"title":3},"242":{"body":0,"breadcrumbs":11,"title":3},"243":{"body":110,"breadcrumbs":9,"title":1},"244":{"body":1,"breadcrumbs":9,"title":1},"245":{"body":1,"breadcrumbs":9,"title":1},"246":{"body":1,"breadcrumbs":11,"title":3},"247":{"body":21,"breadcrumbs":10,"title":2},"248":{"body":11,"breadcrumbs":12,"title":4},"249":{"body":44,"breadcrumbs":14,"title":7},"25":{"body":34,"breadcrumbs":7,"title":2},"250":{"body":43,"breadcrumbs":8,"title":1},"251":{"body":81,"breadcrumbs":8,"title":1},"252":{"body":10,"breadcrumbs":8,"title":1},"253":{"body":101,"breadcrumbs":8,"title":1},"254":{"body":70,"breadcrumbs":9,"title":2},"255":{"body":16,"breadcrumbs":8,"title":1},"256":{"body":1,"breadcrumbs":10,"title":3},"257":{"body":39,"breadcrumbs":10,"title":3},"258":{"body":7,"breadcrumbs":10,"title":3},"259":{"body":2,"breadcrumbs":9,"title":2},"26":{"body":21,"breadcrumbs":8,"title":3},"260":{"body":48,"breadcrumbs":12,"title":6},"261":{"body":35,"breadcrumbs":7,"title":1},"262":{"body":152,"breadcrumbs":7,"title":1},"263":{"body":32,"breadcrumbs":7,"title":1},"264":{"body":4,"breadcrumbs":7,"title":1},"265":{"body":0,"breadcrumbs":7,"title":1},"266":{"body":92,"breadcrumbs":8,"title":2},"267":{"body":52,"breadcrumbs":8,"title":2},"268":{"body":32,"breadcrumbs":7,"title":1},"269":{"body":111,"breadcrumbs":7,"title":1},"27":{"body":24,"breadcrumbs":9,"title":4},"270":{"body":19,"breadcrumbs":9,"title":3},"271":{"body":4,"breadcrumbs":7,"title":1},"272":{"body":8,"breadcrumbs":7,"title":1},"273":{"body":5,"breadcrumbs":7,"title":1},"274":{"body":26,"breadcrumbs":9,"title":3},"275":{"body":2,"breadcrumbs":8,"title":2},"276":{"body":34,"breadcrumbs":10,"title":4},"277":{"body":48,"breadcrumbs":10,"title":5},"278":{"body":20,"breadcrumbs":6,"title":1},"279":{"body":30,"breadcrumbs":6,"title":1},"28":{"body":0,"breadcrumbs":7,"title":2},"280":{"body":52,"breadcrumbs":6,"title":1},"281":{"body":73,"breadcrumbs":6,"title":1},"282":{"body":38,"breadcrumbs":6,"title":1},"283":{"body":7,"breadcrumbs":8,"title":3},"284":{"body":1,"breadcrumbs":8,"title":3},"285":{"body":4,"breadcrumbs":8,"title":3},"286":{"body":2,"breadcrumbs":7,"title":2},"287":{"body":4,"breadcrumbs":9,"title":4},"288":{"body":54,"breadcrumbs":8,"title":4},"289":{"body":22,"breadcrumbs":5,"title":1},"29":{"body":10,"breadcrumbs":8,"title":3},"290":{"body":85,"breadcrumbs":5,"title":1},"291":{"body":16,"breadcrumbs":5,"title":1},"292":{"body":42,"breadcrumbs":5,"title":1},"293":{"body":62,"breadcrumbs":5,"title":1},"294":{"body":62,"breadcrumbs":5,"title":1},"295":{"body":127,"breadcrumbs":6,"title":2},"296":{"body":101,"breadcrumbs":6,"title":2},"297":{"body":324,"breadcrumbs":5,"title":1},"298":{"body":117,"breadcrumbs":5,"title":1},"299":{"body":12,"breadcrumbs":5,"title":1},"3":{"body":72,"breadcrumbs":10,"title":1},"30":{"body":18,"breadcrumbs":9,"title":4},"300":{"body":13,"breadcrumbs":7,"title":3},"301":{"body":6,"breadcrumbs":7,"title":3},"302":{"body":12,"breadcrumbs":5,"title":1},"303":{"body":35,"breadcrumbs":5,"title":1},"304":{"body":17,"breadcrumbs":5,"title":1},"305":{"body":7,"breadcrumbs":7,"title":3},"306":{"body":14,"breadcrumbs":6,"title":2},"307":{"body":23,"breadcrumbs":8,"title":4},"308":{"body":48,"breadcrumbs":8,"title":4},"309":{"body":16,"breadcrumbs":5,"title":1},"31":{"body":10,"breadcrumbs":8,"title":3},"310":{"body":70,"breadcrumbs":5,"title":1},"311":{"body":4,"breadcrumbs":5,"title":1},"312":{"body":78,"breadcrumbs":5,"title":1},"313":{"body":92,"breadcrumbs":6,"title":2},"314":{"body":67,"breadcrumbs":5,"title":1},"315":{"body":12,"breadcrumbs":5,"title":1},"316":{"body":13,"breadcrumbs":5,"title":1},"317":{"body":1,"breadcrumbs":7,"title":3},"318":{"body":0,"breadcrumbs":7,"title":3},"319":{"body":1,"breadcrumbs":5,"title":1},"32":{"body":46,"breadcrumbs":10,"title":5},"320":{"body":1,"breadcrumbs":5,"title":1},"321":{"body":1,"breadcrumbs":5,"title":1},"322":{"body":12,"breadcrumbs":7,"title":3},"323":{"body":2,"breadcrumbs":6,"title":2},"324":{"body":51,"breadcrumbs":14,"title":7},"325":{"body":44,"breadcrumbs":8,"title":1},"326":{"body":100,"breadcrumbs":8,"title":1},"327":{"body":3,"breadcrumbs":8,"title":1},"328":{"body":121,"breadcrumbs":8,"title":1},"329":{"body":33,"breadcrumbs":8,"title":1},"33":{"body":109,"breadcrumbs":8,"title":3},"330":{"body":1,"breadcrumbs":10,"title":3},"331":{"body":0,"breadcrumbs":10,"title":3},"332":{"body":1,"breadcrumbs":8,"title":1},"333":{"body":1,"breadcrumbs":8,"title":1},"334":{"body":19,"breadcrumbs":8,"title":1},"335":{"body":1,"breadcrumbs":10,"title":3},"336":{"body":1,"breadcrumbs":9,"title":2},"337":{"body":4,"breadcrumbs":11,"title":4},"338":{"body":45,"breadcrumbs":16,"title":8},"339":{"body":10,"breadcrumbs":9,"title":1},"34":{"body":22,"breadcrumbs":10,"title":5},"340":{"body":156,"breadcrumbs":9,"title":1},"341":{"body":4,"breadcrumbs":9,"title":1},"342":{"body":0,"breadcrumbs":9,"title":1},"343":{"body":1723,"breadcrumbs":11,"title":3},"344":{"body":52,"breadcrumbs":9,"title":1},"345":{"body":12,"breadcrumbs":9,"title":1},"346":{"body":10,"breadcrumbs":10,"title":2},"347":{"body":71,"breadcrumbs":10,"title":2},"348":{"body":26,"breadcrumbs":10,"title":2},"349":{"body":54,"breadcrumbs":14,"title":7},"35":{"body":35,"breadcrumbs":8,"title":3},"350":{"body":68,"breadcrumbs":8,"title":1},"351":{"body":87,"breadcrumbs":8,"title":1},"352":{"body":59,"breadcrumbs":8,"title":1},"353":{"body":18,"breadcrumbs":8,"title":1},"354":{"body":0,"breadcrumbs":8,"title":1},"355":{"body":64,"breadcrumbs":8,"title":1},"356":{"body":66,"breadcrumbs":8,"title":1},"357":{"body":142,"breadcrumbs":8,"title":1},"358":{"body":19,"breadcrumbs":9,"title":2},"359":{"body":104,"breadcrumbs":9,"title":2},"36":{"body":16,"breadcrumbs":9,"title":4},"360":{"body":151,"breadcrumbs":9,"title":2},"361":{"body":2,"breadcrumbs":8,"title":1},"362":{"body":28,"breadcrumbs":10,"title":3},"363":{"body":7,"breadcrumbs":9,"title":2},"364":{"body":10,"breadcrumbs":8,"title":1},"365":{"body":52,"breadcrumbs":16,"title":8},"366":{"body":16,"breadcrumbs":9,"title":1},"367":{"body":224,"breadcrumbs":9,"title":1},"368":{"body":5,"breadcrumbs":9,"title":1},"369":{"body":482,"breadcrumbs":9,"title":1},"37":{"body":13,"breadcrumbs":9,"title":4},"370":{"body":87,"breadcrumbs":9,"title":1},"371":{"body":137,"breadcrumbs":11,"title":3},"372":{"body":0,"breadcrumbs":11,"title":3},"373":{"body":23,"breadcrumbs":9,"title":1},"374":{"body":1,"breadcrumbs":9,"title":1},"375":{"body":11,"breadcrumbs":9,"title":1},"376":{"body":6,"breadcrumbs":11,"title":3},"377":{"body":1,"breadcrumbs":10,"title":2},"378":{"body":17,"breadcrumbs":12,"title":4},"379":{"body":23,"breadcrumbs":10,"title":5},"38":{"body":14,"breadcrumbs":9,"title":4},"380":{"body":36,"breadcrumbs":6,"title":1},"381":{"body":21,"breadcrumbs":6,"title":1},"382":{"body":4,"breadcrumbs":6,"title":1},"383":{"body":290,"breadcrumbs":6,"title":1},"384":{"body":55,"breadcrumbs":16,"title":8},"385":{"body":24,"breadcrumbs":9,"title":1},"386":{"body":67,"breadcrumbs":9,"title":1},"387":{"body":27,"breadcrumbs":9,"title":1},"388":{"body":0,"breadcrumbs":9,"title":1},"389":{"body":27,"breadcrumbs":9,"title":1},"39":{"body":16,"breadcrumbs":9,"title":4},"390":{"body":15,"breadcrumbs":9,"title":1},"391":{"body":106,"breadcrumbs":9,"title":1},"392":{"body":13,"breadcrumbs":9,"title":1},"393":{"body":29,"breadcrumbs":11,"title":3},"394":{"body":0,"breadcrumbs":11,"title":3},"395":{"body":17,"breadcrumbs":9,"title":1},"396":{"body":17,"breadcrumbs":9,"title":1},"397":{"body":16,"breadcrumbs":9,"title":1},"398":{"body":24,"breadcrumbs":11,"title":3},"399":{"body":30,"breadcrumbs":10,"title":2},"4":{"body":8,"breadcrumbs":10,"title":1},"40":{"body":7,"breadcrumbs":9,"title":4},"400":{"body":37,"breadcrumbs":12,"title":4},"401":{"body":48,"breadcrumbs":10,"title":5},"402":{"body":65,"breadcrumbs":6,"title":1},"403":{"body":190,"breadcrumbs":6,"title":1},"404":{"body":25,"breadcrumbs":6,"title":1},"405":{"body":0,"breadcrumbs":6,"title":1},"406":{"body":367,"breadcrumbs":7,"title":2},"407":{"body":218,"breadcrumbs":7,"title":2},"408":{"body":80,"breadcrumbs":8,"title":3},"409":{"body":46,"breadcrumbs":6,"title":1},"41":{"body":48,"breadcrumbs":10,"title":5},"410":{"body":23,"breadcrumbs":8,"title":3},"411":{"body":4,"breadcrumbs":7,"title":2},"412":{"body":48,"breadcrumbs":16,"title":8},"413":{"body":12,"breadcrumbs":9,"title":1},"414":{"body":102,"breadcrumbs":9,"title":1},"415":{"body":44,"breadcrumbs":9,"title":1},"416":{"body":58,"breadcrumbs":9,"title":1},"417":{"body":19,"breadcrumbs":9,"title":1},"418":{"body":40,"breadcrumbs":11,"title":3},"419":{"body":0,"breadcrumbs":11,"title":3},"42":{"body":91,"breadcrumbs":8,"title":3},"420":{"body":15,"breadcrumbs":9,"title":1},"421":{"body":49,"breadcrumbs":10,"title":2},"422":{"body":1,"breadcrumbs":11,"title":3},"423":{"body":62,"breadcrumbs":10,"title":2},"424":{"body":18,"breadcrumbs":12,"title":4},"425":{"body":40,"breadcrumbs":12,"title":6},"426":{"body":61,"breadcrumbs":7,"title":1},"427":{"body":101,"breadcrumbs":7,"title":1},"428":{"body":15,"breadcrumbs":7,"title":1},"429":{"body":187,"breadcrumbs":7,"title":1},"43":{"body":104,"breadcrumbs":8,"title":3},"430":{"body":17,"breadcrumbs":7,"title":1},"431":{"body":12,"breadcrumbs":9,"title":3},"432":{"body":0,"breadcrumbs":9,"title":3},"433":{"body":11,"breadcrumbs":7,"title":1},"434":{"body":40,"breadcrumbs":8,"title":2},"435":{"body":1,"breadcrumbs":9,"title":3},"436":{"body":1,"breadcrumbs":8,"title":2},"437":{"body":39,"breadcrumbs":10,"title":4},"438":{"body":42,"breadcrumbs":20,"title":10},"439":{"body":28,"breadcrumbs":11,"title":1},"44":{"body":58,"breadcrumbs":9,"title":4},"440":{"body":121,"breadcrumbs":11,"title":1},"441":{"body":15,"breadcrumbs":11,"title":1},"442":{"body":70,"breadcrumbs":11,"title":1},"443":{"body":0,"breadcrumbs":13,"title":3},"444":{"body":26,"breadcrumbs":11,"title":1},"445":{"body":26,"breadcrumbs":11,"title":1},"446":{"body":7,"breadcrumbs":11,"title":1},"447":{"body":19,"breadcrumbs":13,"title":3},"448":{"body":61,"breadcrumbs":12,"title":6},"449":{"body":34,"breadcrumbs":7,"title":1},"45":{"body":199,"breadcrumbs":8,"title":3},"450":{"body":92,"breadcrumbs":7,"title":1},"451":{"body":67,"breadcrumbs":7,"title":1},"452":{"body":4,"breadcrumbs":7,"title":1},"453":{"body":77,"breadcrumbs":7,"title":1},"454":{"body":237,"breadcrumbs":9,"title":3},"455":{"body":124,"breadcrumbs":9,"title":3},"456":{"body":41,"breadcrumbs":9,"title":3},"457":{"body":106,"breadcrumbs":10,"title":4},"458":{"body":51,"breadcrumbs":7,"title":1},"459":{"body":27,"breadcrumbs":9,"title":3},"46":{"body":0,"breadcrumbs":8,"title":3},"460":{"body":0,"breadcrumbs":9,"title":3},"461":{"body":4,"breadcrumbs":7,"title":1},"462":{"body":13,"breadcrumbs":7,"title":1},"463":{"body":3,"breadcrumbs":7,"title":1},"464":{"body":5,"breadcrumbs":9,"title":3},"465":{"body":2,"breadcrumbs":8,"title":2},"466":{"body":37,"breadcrumbs":10,"title":4},"467":{"body":50,"breadcrumbs":12,"title":6},"468":{"body":46,"breadcrumbs":7,"title":1},"469":{"body":24,"breadcrumbs":7,"title":1},"47":{"body":313,"breadcrumbs":9,"title":4},"470":{"body":8,"breadcrumbs":7,"title":1},"471":{"body":134,"breadcrumbs":7,"title":1},"472":{"body":21,"breadcrumbs":7,"title":1},"473":{"body":19,"breadcrumbs":9,"title":3},"474":{"body":0,"breadcrumbs":9,"title":3},"475":{"body":8,"breadcrumbs":7,"title":1},"476":{"body":11,"breadcrumbs":7,"title":1},"477":{"body":19,"breadcrumbs":7,"title":1},"478":{"body":1,"breadcrumbs":9,"title":3},"479":{"body":1,"breadcrumbs":8,"title":2},"48":{"body":491,"breadcrumbs":10,"title":5},"480":{"body":3,"breadcrumbs":10,"title":4},"481":{"body":49,"breadcrumbs":14,"title":7},"482":{"body":14,"breadcrumbs":8,"title":1},"483":{"body":113,"breadcrumbs":8,"title":1},"484":{"body":6,"breadcrumbs":8,"title":1},"485":{"body":180,"breadcrumbs":8,"title":1},"486":{"body":91,"breadcrumbs":8,"title":1},"487":{"body":25,"breadcrumbs":10,"title":3},"488":{"body":0,"breadcrumbs":10,"title":3},"489":{"body":44,"breadcrumbs":8,"title":1},"49":{"body":41,"breadcrumbs":9,"title":4},"490":{"body":13,"breadcrumbs":8,"title":1},"491":{"body":31,"breadcrumbs":8,"title":1},"492":{"body":1,"breadcrumbs":10,"title":3},"493":{"body":1,"breadcrumbs":9,"title":2},"494":{"body":12,"breadcrumbs":11,"title":4},"495":{"body":60,"breadcrumbs":16,"title":8},"496":{"body":32,"breadcrumbs":9,"title":1},"497":{"body":98,"breadcrumbs":9,"title":1},"498":{"body":9,"breadcrumbs":9,"title":1},"499":{"body":23,"breadcrumbs":9,"title":1},"5":{"body":69,"breadcrumbs":10,"title":1},"50":{"body":146,"breadcrumbs":9,"title":4},"500":{"body":225,"breadcrumbs":9,"title":1},"501":{"body":125,"breadcrumbs":11,"title":3},"502":{"body":44,"breadcrumbs":10,"title":2},"503":{"body":65,"breadcrumbs":11,"title":3},"504":{"body":2,"breadcrumbs":9,"title":1},"505":{"body":94,"breadcrumbs":11,"title":3},"506":{"body":0,"breadcrumbs":11,"title":3},"507":{"body":91,"breadcrumbs":9,"title":1},"508":{"body":1,"breadcrumbs":9,"title":1},"509":{"body":1,"breadcrumbs":9,"title":1},"51":{"body":332,"breadcrumbs":9,"title":4},"510":{"body":1,"breadcrumbs":11,"title":3},"511":{"body":21,"breadcrumbs":10,"title":2},"512":{"body":74,"breadcrumbs":12,"title":4},"52":{"body":54,"breadcrumbs":9,"title":4},"53":{"body":93,"breadcrumbs":8,"title":3},"54":{"body":75,"breadcrumbs":8,"title":3},"55":{"body":1,"breadcrumbs":7,"title":2},"56":{"body":17,"breadcrumbs":9,"title":4},"57":{"body":0,"breadcrumbs":9,"title":4},"58":{"body":32,"breadcrumbs":7,"title":2},"59":{"body":2,"breadcrumbs":7,"title":2},"6":{"body":43,"breadcrumbs":10,"title":1},"60":{"body":22,"breadcrumbs":7,"title":2},"61":{"body":25,"breadcrumbs":9,"title":4},"62":{"body":1,"breadcrumbs":8,"title":3},"63":{"body":15,"breadcrumbs":10,"title":5},"64":{"body":42,"breadcrumbs":9,"title":4},"65":{"body":19,"breadcrumbs":8,"title":3},"66":{"body":43,"breadcrumbs":10,"title":5},"67":{"body":24,"breadcrumbs":9,"title":4},"68":{"body":45,"breadcrumbs":14,"title":7},"69":{"body":22,"breadcrumbs":8,"title":1},"7":{"body":113,"breadcrumbs":12,"title":3},"70":{"body":37,"breadcrumbs":8,"title":1},"71":{"body":2,"breadcrumbs":8,"title":1},"72":{"body":202,"breadcrumbs":8,"title":1},"73":{"body":3,"breadcrumbs":8,"title":1},"74":{"body":26,"breadcrumbs":10,"title":3},"75":{"body":0,"breadcrumbs":10,"title":3},"76":{"body":8,"breadcrumbs":8,"title":1},"77":{"body":6,"breadcrumbs":8,"title":1},"78":{"body":8,"breadcrumbs":8,"title":1},"79":{"body":10,"breadcrumbs":10,"title":3},"8":{"body":115,"breadcrumbs":14,"title":5},"80":{"body":7,"breadcrumbs":9,"title":2},"81":{"body":49,"breadcrumbs":16,"title":8},"82":{"body":33,"breadcrumbs":9,"title":1},"83":{"body":94,"breadcrumbs":9,"title":1},"84":{"body":6,"breadcrumbs":9,"title":1},"85":{"body":97,"breadcrumbs":9,"title":1},"86":{"body":11,"breadcrumbs":9,"title":1},"87":{"body":4,"breadcrumbs":11,"title":3},"88":{"body":8,"breadcrumbs":11,"title":3},"89":{"body":4,"breadcrumbs":9,"title":1},"9":{"body":142,"breadcrumbs":15,"title":6},"90":{"body":3,"breadcrumbs":9,"title":1},"91":{"body":3,"breadcrumbs":9,"title":1},"92":{"body":12,"breadcrumbs":11,"title":3},"93":{"body":4,"breadcrumbs":10,"title":2},"94":{"body":9,"breadcrumbs":12,"title":4},"95":{"body":78,"breadcrumbs":10,"title":5},"96":{"body":53,"breadcrumbs":6,"title":1},"97":{"body":0,"breadcrumbs":6,"title":1},"98":{"body":170,"breadcrumbs":6,"title":1},"99":{"body":161,"breadcrumbs":7,"title":2}},"docs":{"0":{"body":"This book contains the Polkadot Fellowship Requests for Comments (RFCs) detailing proposed changes to the technical implementation of the Polkadot network. polkadot-fellows/RFCs","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"(source) Table of Contents RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs Summary Motivation Requirements Stakeholders Explanation Current code structure Proposed Modification Using the Deposit Function Enhanced Approach to Further Lower Barriers for Entry Discussion of Other Proposals Enhanced Weak Governance Origin Model Function-Based Pricing Model Linking Deposit to USD(x) Value Drawbacks Testing, Security, and Privacy Security concerns Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Unresolved Questions Future Directions and Related Material Start Date 2 November 2023 Description A proposal to reduce the minimum deposit required for collection creation on the Polkadot and Kusama Asset Hub, making it more accessible and affordable for artists. Authors Aurora Poppyseed , Just_Luuuu , Viki Val","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs","id":"1","title":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs"},"10":{"body":"Several innovative proposals have been considered to enhance the network's adaptability and manage deposit requirements more effectively:","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Discussion of Other Proposals","id":"10","title":"Discussion of Other Proposals"},"100":{"body":"All chain teams are stakeholders, as implementing this feature would require timely effort on their side and would impact compatibility with older tools. This feature is essential for all offline signer tools; many regular signing tools might make use of it. In general, this RFC greatly improves security of any network implementing it, as many governing keys are used with offline signers. Implementing this RFC would remove requirement to maintain metadata portals manually, as task of metadata verification would be effectively moved to consensus mechanism of the chain.","breadcrumbs":"RFC-0000: Metadata for offline signers » Stakeholders","id":"100","title":"Stakeholders"},"101":{"body":"Detailed description of metadata shortening and digest process is provided in metadata-shortener crate (see cargo doc --open and examples). Below are presented algorithms of the process.","breadcrumbs":"RFC-0000: Metadata for offline signers » Explanation","id":"101","title":"Explanation"},"102":{"body":"Metadata structure Metadata in general consists of four sections: Types registry Pallets Extrinsic metadata Runtime type Of these, only sections 1-3 contain information required for extrinsic decoding. The most important section is (1) Types registry, that is mostly used in extrinsic decoding. It is also the largest part, thus it is modularized for fractional transmission. Part (2) contains runtime version and is otherwise useless for transaction decoding; thus its contents are reduced to this parameter and included into Metadata Descriptor. Part (3) is included into Metadata Descriptor verbatim. Metadata descriptor Values for: u8 metadata shortening protocol version, SCALE-encoded ExtrinsicMetadata, SCALE-encoded spec_version String, SCALE-encoded spec_name String, u16 base58 prefix, u8 decimals value or 0u8 if no units are defined, SCALE-encoded tokenSymbol String defined on chain to identify the name of currency (available for example through system.properties() RPC call) or empty string if no base units are defined, enum MetadataDescriptor { V0, V1(MetadataDescriptorV1),\n} struct MetadataDescriptorV1 { extrinsic_metadata: Vec, // SCALE from `ExtrinsicMetadata` spec_version: Vec, // SCALE form `String` spec_name: Vec, // SCALE from `String` base58_prefix: u16, decimals: u8, token_symbol: Vec, // SCALE from `String`\n} constitute metadata descriptor. This is minimal information that is, together with (shortened) types registry, sufficient to decode any signable transaction. Merkle tree A Complete Binary Merkle Tree ( CBMT ) is proposed as digest structure. Every node of the proposed tree has a 32-bit value. A terminal node of the tree we call leaf . Its value is input for digest. The top node of the tree we call root . All node values for non-leave nodes are not terminal are computed through non-commutative merge procedure of child nodes. In CBMT, all layers must be populated, except for the last one, that must have complete filling from the left. Nodes are numbered top-down and left-to-right starting with 0 at the top of tree. Example 8-node tree 0 / \\ 1 2 / \\ / \\ 3 4 5 6 / \\\n7 8 Nodes 4, 5, 6, 7, 8 are leaves\nNode 0 is root","breadcrumbs":"RFC-0000: Metadata for offline signers » Definitions","id":"102","title":"Definitions"},"103":{"body":"The metadata is converted into lean modular form (vector of chunks) A Merkle tree is constructed from the metadata chunks A root of tree (as a left element) is merged with Metadata Descriptor (as a right element) Resulting value is a constant to be included in additionalSigned to prove that the metadata seen by cold device is genuine","breadcrumbs":"RFC-0000: Metadata for offline signers » General flow","id":"103","title":"General flow"},"104":{"body":"Structure of types in shortened metadata exactly matches structure of types in scale-info, but doc field is always empty struct Type { path: Path, // vector of strings type_params: Vec, type_def: TypeDef, // enum of various types doc: Vec,\n} struct TypeParams { name: String, ty: Option,\n} Types registry is stripped from docs fields. Types records are separated into chunks, with enum variants being individual chunks differing by variant index; each chunk consisting of id (same as in full metadata registry) and SCALE-encoded 'Type' description (reduced to 1-variant enum for enum variants). Enums with 0 variants are treated as regular types. Chunks are sorted by id in ascending order; chunks with same id are sorted by enum variant index in ascending order. types_registry = metadataV14.types\nmodularized_registry = EmptyVector\nfor (id, type) in types.registry.iterate_enumerate { type.doc = empty_vector if (type is ReduceableEnum) { // false for 0-variant enums for variant in type.variants.iterate { variant_type = Type { path: type.path type_params: empty_vector type_def: TypeDef::Variant(variants: [variant]) } modularized_registry.push(id, variant_type) } } else { modularized_registry.push(id, type) }\n} modularized_registry.sort(|a, b| { if a.id == b.id { //only possible for variants a.variant_index > b.variant_index } else { a.id > b.id } }\n)","breadcrumbs":"RFC-0000: Metadata for offline signers » Metadata modularization","id":"104","title":"Metadata modularization"},"105":{"body":"blake3 transformation of concatenated child nodes (blake3(left + right)) as merge procedure;","breadcrumbs":"RFC-0000: Metadata for offline signers » Merging protocol","id":"105","title":"Merging protocol"},"106":{"body":"Leaves are numbered in ascending order. Leaf index is associated with corresponding chunk. Merge is performed using the leaf with highest index as right and node with second to highest index as left children; result is pushed to the end of nodes queue and leaves are discarded. Step (2) is repeated until no leaves or just one leaf remains; in latter case, the last leaf is pushed to the front of the nodes queue. Right node and then left node is popped from the front of the nodes queue and merged; the result is sent to the end of the queue. Step (4) is repeated until only one node remains; this is tree root. Resulting tree for metadata consisting of 5 nodes (numbered from 0 to 4): root / \\ * * / \\ / \\ * 0 1 2 / \\\n3 4","breadcrumbs":"RFC-0000: Metadata for offline signers » Complete Binary Merkle Tree construction protocol","id":"106","title":"Complete Binary Merkle Tree construction protocol"},"107":{"body":"Blake3 hash is computed for each chunk of modular short metadata registry. Complete Binary Merkle Tree is constructed as described above. Root hash of this tree (left) is merged with metadata descriptor blake3 hash (right); this is metadata digest. Version number and corresponding resulting metadata digest MUST be included into Signed Extensions as specified in Chain Verification section below.","breadcrumbs":"RFC-0000: Metadata for offline signers » Digest","id":"107","title":"Digest"},"108":{"body":"For shortening, an attempt to decode transaction completely using provided metadata is performed with the same algorithm that would be used on the cold side. All chunks are associated with their leaf indices. An example of this protocol is proposed in metadata-shortener that is based on substrate-parser decoding protocol; any decoding protocol could be used here as long as cold signer's design finds it appropriate for given security model.","breadcrumbs":"RFC-0000: Metadata for offline signers » Shortening","id":"108","title":"Shortening"},"109":{"body":"Shortened metadata chunks MAY be trasmitted into cold device together with Merkle proof in its entirety or in parts, depending on memory capabilities of the cold device and it ability to reconstruct larger fraction of tree. This document does not specify the manner of transmission. The order of metadata chunks MAY be arbitrary, the only requirement is that indices of leaf nodes in Merkle tree corresponding to chunks MUST be communicated. Community MAY handle proof format standartization independently.","breadcrumbs":"RFC-0000: Metadata for offline signers » Transmission","id":"109","title":"Transmission"},"11":{"body":"The concept of a weak governance origin, controlled by a consortium like the System Collective, has been proposed. This model would allow for dynamic adjustments of NFT deposit requirements in response to market conditions, adhering to storage deposit norms. Enhancements and Concerns: Responsiveness : To address concerns about delayed responses, the model could incorporate automated triggers based on predefined market indicators, ensuring timely adjustments. Stability vs. Flexibility : Balancing stability with the need for flexibility is challenging. To mitigate the issue of frequent changes in DOT-based deposits, a mechanism for gradual and predictable adjustments could be introduced. Scalability : The model's scalability is a concern, given the numerous deposits across the system. A more centralized approach to deposit management might be needed to avoid constant, decentralized adjustments.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Enhanced Weak Governance Origin Model","id":"11","title":"Enhanced Weak Governance Origin Model"},"110":{"body":"The transmitted metadata chunks are hashed together with proof lemmas to obtain root that MAY be transmitted along with the rest of payload. Verification that the root transmitted with message matches with calculated root is optional; the transmitted root SHOULD NOT be used in signature, calculated root MUST be used; however, there is no mechanism to enforce this - it should be done during cold signers code audit.","breadcrumbs":"RFC-0000: Metadata for offline signers » Offline verification","id":"110","title":"Offline verification"},"111":{"body":"The root of metadata computed by cold device MAY be included into Signed Extensions; this way the transaction will pass as valid iff hash of metadata as seen by cold storage device is identical to consensus hash of metadata, ensuring fair signing protocol. The Signed Extension representing metadata digest is a single byte representing both digest vaule inclusion and shortening protocol version; this MUST be included in Signed Extensions set. Depending on its value, a digest value is included as additionalSigned to signature computation according to following specification: signed extension value digest value comment 0x00 digest is not included 0x01 32-byte digest this represents protocol version 1 0x02 - 0xFF reserved reserved for future use","breadcrumbs":"RFC-0000: Metadata for offline signers » Chain verification","id":"111","title":"Chain verification"},"112":{"body":"","breadcrumbs":"RFC-0000: Metadata for offline signers » Drawbacks","id":"112","title":"Drawbacks"},"113":{"body":"A 1-byte increase in transaction size due to signed extension value. Digest is not included in transferred transaction, only in signing process.","breadcrumbs":"RFC-0000: Metadata for offline signers » Increased transaction size","id":"113","title":"Increased transaction size"},"114":{"body":"Some slightly out of spec systems might experience breaking changes as new content of signed extensions is added. It is important to note, that there is no real overhead in processing time nor complexity, as the metadata checking mechanism is voluntary. The only drawbacks are expected for tools that do not implement MetadataV14 self-descripting features.","breadcrumbs":"RFC-0000: Metadata for offline signers » Transition overhead","id":"114","title":"Transition overhead"},"115":{"body":"The metadata shortening protocol should be extensively tested on all available examples of metadata before releasing changes to either metadata or shortener. Careful code review should be performed on shortener implementation code to ensure security. The main metadata tree would inevitably be constructed on runtime build which would also ensure correctness. To be able to recall shortener protocol in case of vulnerability issues, a version byte is included.","breadcrumbs":"RFC-0000: Metadata for offline signers » Testing, Security, and Privacy","id":"115","title":"Testing, Security, and Privacy"},"116":{"body":"","breadcrumbs":"RFC-0000: Metadata for offline signers » Performance, Ergonomics, and Compatibility","id":"116","title":"Performance, Ergonomics, and Compatibility"},"117":{"body":"This is negligibly short pessimization during build time on the chain side. Cold wallets performance would improve mostly as metadata validity mechanism that was taking most of effort in cold wallet support would become trivial.","breadcrumbs":"RFC-0000: Metadata for offline signers » Performance","id":"117","title":"Performance"},"118":{"body":"The proposal was optimized for cold storage wallets usage with minimal impact on all other parts of the ecosystem","breadcrumbs":"RFC-0000: Metadata for offline signers » Ergonomics","id":"118","title":"Ergonomics"},"119":{"body":"Proposal in this form is not compatible with older tools that do not implement proper MetadataV14 self-descriptive features; those would have to be upgraded to include a new signed extensions field.","breadcrumbs":"RFC-0000: Metadata for offline signers » Compatibility","id":"119","title":"Compatibility"},"12":{"body":"Another proposal is to use a mathematical function to regulate deposit prices, initially allowing low prices to encourage participation, followed by a gradual increase to prevent network bloat. Refinements: Choice of Function : A logarithmic or sigmoid function is favored over an exponential one, as these functions increase prices at a rate that encourages participation while preventing prohibitive costs. Adjustment of Constants : To finely tune the pricing rise, one of the function's constants could correlate with the total number of NFTs on AssetHub. This would align the deposit requirements with the actual usage and growth of the network.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Function-Based Pricing Model","id":"12","title":"Function-Based Pricing Model"},"120":{"body":"This project was developed upon a Polkadot Treasury grant; relevant development links are located in metadata-offline-project repository.","breadcrumbs":"RFC-0000: Metadata for offline signers » Prior Art and References","id":"120","title":"Prior Art and References"},"121":{"body":"How would polkadot-js handle the transition? Where would non-rust tools like Ledger apps get shortened metadata content?","breadcrumbs":"RFC-0000: Metadata for offline signers » Unresolved Questions","id":"121","title":"Unresolved Questions"},"122":{"body":"Changes to code of all cold signers to implement this mechanism SHOULD be done when this is enabled; non-cold signers may perform extra metadata check for better security. Ultimately, signing anything without decoding it with verifiable metadata should become discouraged in all situations where a decision-making mechanism is involved (that is, outside of fully automated blind signers like trade bots or staking rewards payout tools).","breadcrumbs":"RFC-0000: Metadata for offline signers » Future Directions and Related Material","id":"122","title":"Future Directions and Related Material"},"123":{"body":"(source) Table of Contents RFC-0047: Assignment of availability chunks to validators Summary Motivation Stakeholders Explanation Systematic erasure codes Availability recovery at present Availability recovery from systematic chunks Chunk assignment function Network protocol Upgrade path Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Appendix A Start Date 03 November 2023 Description An evenly-distributing indirection layer between availability chunks and validators. Authors Alin Dima","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » RFC-0047: Assignment of availability chunks to validators","id":"123","title":"RFC-0047: Assignment of availability chunks to validators"},"124":{"body":"Propose a way of permuting the availability chunk indices assigned to validators, in the context of recovering available data from systematic chunks , with the purpose of fairly distributing network bandwidth usage.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Summary","id":"124","title":"Summary"},"125":{"body":"Currently, the ValidatorIndex is always identical to the ChunkIndex. Since the validator array is only shuffled once per session, naively using the ValidatorIndex as the ChunkIndex would pose an unreasonable stress on the first N/3 validators during an entire session, when favouring availability recovery from systematic chunks. Therefore, the relay chain node needs a deterministic way of evenly distributing the first ~(N_VALIDATORS / 3) systematic availability chunks to different validators, based on the relay chain block and core. The main purpose is to ensure fair distribution of network bandwidth usage for availability recovery in general and in particular for systematic chunk holders.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Motivation","id":"125","title":"Motivation"},"126":{"body":"Relay chain node core developers.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Stakeholders","id":"126","title":"Stakeholders"},"127":{"body":"","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Explanation","id":"127","title":"Explanation"},"128":{"body":"An erasure coding algorithm is considered systematic if it preserves the original unencoded data as part of the resulting code. The implementation of the erasure coding algorithm used for polkadot's availability data is systematic. Roughly speaking, the first N_VALIDATORS/3 chunks of data can be cheaply concatenated to retrieve the original data, without running the resource-intensive and time-consuming reconstruction algorithm. You can find the concatenation procedure of systematic chunks for polkadot's erasure coding algorithm here In a nutshell, it performs a column-wise concatenation with 2-byte chunks. The output could be zero-padded at the end, so scale decoding must be aware of the expected length in bytes and ignore trailing zeros (this assertion is already being made for regular reconstruction).","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Systematic erasure codes","id":"128","title":"Systematic erasure codes"},"129":{"body":"According to the polkadot protocol spec : A validator should request chunks by picking peers randomly and must recover at least f+1 chunks, where n=3f+k and k in {1,2,3}. For parity's polkadot node implementation, the process was further optimised. At this moment, it works differently based on the estimated size of the available data: (a) for small PoVs (up to 128 Kib), sequentially try requesting the unencoded data from the backing group, in a random order. If this fails, fallback to option (b). (b) for large PoVs (over 128 Kib), launch N parallel requests for the erasure coded chunks (currently, N has an upper limit of 50), until enough chunks were recovered. Validators are tried in a random order. Then, reconstruct the original data. All options require that after reconstruction, validators then re-encode the data and re-create the erasure chunks trie in order to check the erasure root.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Availability recovery at present","id":"129","title":"Availability recovery at present"},"13":{"body":"This approach suggests pegging the deposit value to a stable currency like the USD, introducing predictability and stability for network users. Considerations and Challenges: Market Dynamics : One perspective is that fluctuations in native currency value naturally balance user participation and pricing, deterring network spam while encouraging higher-value collections. Conversely, there's an argument for allowing broader participation if the DOT/KSM value increases. Complexity and Risks : Implementing a USD-based pricing system could add complexity and potential risks. The implementation needs to be carefully designed to avoid unintended consequences, such as excessive reliance on external financial systems or currencies. Each of these proposals offers unique advantages and challenges. The optimal approach may involve a combination of these ideas, carefully adjusted to address the specific needs and dynamics of the Polkadot and Kusama networks.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Linking Deposit to USD(x) Value","id":"13","title":"Linking Deposit to USD(x) Value"},"130":{"body":"As part of the effort of increasing polkadot's resource efficiency, scalability and performance , work is under way to modify the Availability Recovery protocol by leveraging systematic chunks. See this comment for preliminary performance results. In this scheme, the relay chain node will first attempt to retrieve the ~N/3 systematic chunks from the validators that should hold them, before falling back to recovering from regular chunks, as before. A re-encoding step is still needed for verifying the erasure root, so the erasure coding overhead cannot be completely brought down to 0. Not being able to retrieve even one systematic chunk would make systematic reconstruction impossible. Therefore, backers can be used as a backup to retrieve a couple of missing systematic chunks, before falling back to retrieving regular chunks.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Availability recovery from systematic chunks","id":"130","title":"Availability recovery from systematic chunks"},"131":{"body":"Properties The function that decides the chunk index for a validator will be parameterized by at least (validator_index, core_index) and have the following properties: deterministic relatively quick to compute and resource-efficient. when considering a fixed core_index, the function should describe a permutation of the chunk indices the validators that map to the first N/3 chunk indices should have as little overlap as possible for different cores. In other words, we want a uniformly distributed, deterministic mapping from ValidatorIndex to ChunkIndex per core. It's desirable to not embed this function in the runtime, for performance and complexity reasons. However, this means that the function needs to be kept very simple and with minimal or no external dependencies. Any change to this function could result in parachains being stalled and needs to be coordinated via a runtime upgrade or governance call. Proposed function Pseudocode: pub fn get_chunk_index( n_validators: u32, validator_index: ValidatorIndex, core_index: CoreIndex\n) -> ChunkIndex { let threshold = systematic_threshold(n_validators); // Roughly n_validators/3 let core_start_pos = core_index * threshold; (core_start_pos + validator_index) % n_validators\n}","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Chunk assignment function","id":"131","title":"Chunk assignment function"},"132":{"body":"The request-response /req_chunk protocol will be bumped to a new version (from v1 to v2). For v1, the request and response payloads are: /// Request an availability chunk.\npub struct ChunkFetchingRequest { /// Hash of candidate we want a chunk for. pub candidate_hash: CandidateHash, /// The index of the chunk to fetch. pub index: ValidatorIndex,\n} /// Receive a requested erasure chunk.\npub enum ChunkFetchingResponse { /// The requested chunk data. Chunk(ChunkResponse), /// Node was not in possession of the requested chunk. NoSuchChunk,\n} /// This omits the chunk's index because it is already known by\n/// the requester and by not transmitting it, we ensure the requester is going to use his index\n/// value for validating the response, thus making sure he got what he requested.\npub struct ChunkResponse { /// The erasure-encoded chunk of data belonging to the candidate block. pub chunk: Vec, /// Proof for this chunk's branch in the Merkle tree. pub proof: Proof,\n} Version 2 will add an index field to ChunkResponse: #[derive(Debug, Clone, Encode, Decode)]\npub struct ChunkResponse { /// The erasure-encoded chunk of data belonging to the candidate block. pub chunk: Vec, /// Proof for this chunk's branch in the Merkle tree. pub proof: Proof, /// Chunk index. pub index: ChunkIndex\n} An important thing to note is that in version 1, the ValidatorIndex value is always equal to the ChunkIndex. Until the chunk rotation feature is enabled, this will also be true for version 2. However, after the feature is enabled, this will generally not be true. The requester will send the request to validator with index V. The responder will map the V validator index to the C chunk index and respond with the C-th chunk. This mapping can be seamless, by having each validator store their chunk by ValidatorIndex (just as before). The protocol implementation MAY check the returned ChunkIndex against the expected mapping to ensure that it received the right chunk. In practice, this is desirable during availability-distribution and systematic chunk recovery. However, regular recovery may not check this index, which is particularly useful when participating in disputes that don't allow for easy access to the validator->chunk mapping. See Appendix A for more details. In any case, the requester MUST verify the chunk's proof using the provided index. During availability-recovery, given that the requester may not know (if the mapping is not available) whether the received chunk corresponds to the requested validator index, it has to keep track of received chunk indices and ignore duplicates. Such duplicates should be considered the same as an invalid/garbage response (drop it and move on to the next validator - we can't punish via reputation changes, because we don't know which validator misbehaved).","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Network protocol","id":"132","title":"Network protocol"},"133":{"body":"Step 1: Enabling new network protocol In the beginning, both /req_chunk/1 and /req_chunk/2 will be supported, until all validators and collators have upgraded to use the new version. V1 will be considered deprecated. During this step, the mapping will still be 1:1 (ValidatorIndex == ChunkIndex), regardless of protocol. Once all nodes are upgraded, a new release will be cut that removes the v1 protocol. Only once all nodes have upgraded to this version will step 2 commence. Step 2: Enabling the new validator->chunk mapping Considering that the Validator->Chunk mapping is critical to para consensus, the change needs to be enacted atomically via governance, only after all validators have upgraded the node to a version that is aware of this mapping, functionality-wise. It needs to be explicitly stated that after the governance enactment, validators that run older client versions that don't support this mapping will not be able to participate in parachain consensus. Additionally, an error will be logged when starting a validator with an older version, after the feature was enabled. On the other hand, collators will not be required to upgrade in this step (but are still require to upgrade for step 1), as regular chunk recovery will work as before, granted that version 1 of the networking protocol has been removed. Note that collators only perform availability-recovery in rare, adversarial scenarios, so it is fine to not optimise for this case and let them upgrade at their own pace. To support enabling this feature via the runtime, we will use the NodeFeatures bitfield of the HostConfiguration struct (added in https://github.com/paritytech/polkadot-sdk/pull/2177). Adding and enabling a feature with this scheme does not require a runtime upgrade, but only a referendum that issues a Configuration::set_node_feature extrinsic. Once the feature is enabled and new configuration is live, the validator->chunk mapping ceases to be a 1:1 mapping and systematic recovery may begin.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Upgrade path","id":"133","title":"Upgrade path"},"134":{"body":"Getting access to the core_index that used to be occupied by a candidate in some parts of the dispute protocol is very complicated (See appendix A ). This RFC assumes that availability-recovery processes initiated during disputes will only use regular recovery, as before. This is acceptable since disputes are rare occurrences in practice and is something that can be optimised later, if need be. Adding the core_index to the CandidateReceipt would mitigate this problem and will likely be needed in the future for CoreJam and/or Elastic scaling. Related discussion about updating CandidateReceipt It's a breaking change that requires all validators and collators to upgrade their node version at least once.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Drawbacks","id":"134","title":"Drawbacks"},"135":{"body":"Extensive testing will be conducted - both automated and manual. This proposal doesn't affect security or privacy.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Testing, Security, and Privacy","id":"135","title":"Testing, Security, and Privacy"},"136":{"body":"","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Performance, Ergonomics, and Compatibility","id":"136","title":"Performance, Ergonomics, and Compatibility"},"137":{"body":"This is a necessary data availability optimisation, as reed-solomon erasure coding has proven to be a top consumer of CPU time in polkadot as we scale up the parachain block size and number of availability cores. With this optimisation, preliminary performance results show that CPU time used for reed-solomon coding/decoding can be halved and total POV recovery time decrease by 80% for large POVs. See more here .","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Performance","id":"137","title":"Performance"},"138":{"body":"Not applicable.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Ergonomics","id":"138","title":"Ergonomics"},"139":{"body":"This is a breaking change. See upgrade path section above. All validators and collators need to have upgraded their node versions before the feature will be enabled via a governance call.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Compatibility","id":"139","title":"Compatibility"},"14":{"body":"Modifying deposit requirements necessitates a balanced assessment of the potential drawbacks. Highlighted below are cogent points extracted from the discourse on the Polkadot Forum conversation , which provide critical perspectives on the implications of such changes: The discourse around modifying deposit requirements includes various perspectives: Adjusting NFT deposit requirements on Polkadot and Kusama Asset Hubs involves key challenges: State Growth and Technical Concerns : Lowering deposit requirements can lead to increased blockchain state size, potentially causing state bloat. This growth needs to be managed to prevent strain on the network's resources and maintain operational efficiency. Network Security and Market Response : Reduced deposits might increase transaction volume, potentially bloating the state, thereby impacting network security. Additionally, adapting to the cryptocurrency market's volatility is crucial. The mechanism for setting deposit amounts must be responsive yet stable, avoiding undue complexity for users. Economic Impact on Previous Stakeholders : The change could have varied economic effects on previous (before the change) creators, platform operators, and investors. Balancing these interests is essential to ensure the adjustment benefits the ecosystem without negatively impacting its value dynamics. However in the particular case of Polkadot and Kusama Asset Hub this does not pose a concern since there are very few collections currently and thus previous stakeholders wouldn't be much affected. As of date 9th January 2024 there are 42 collections on Polkadot Asset Hub and 191 on Kusama Asset Hub with a relatively low volume.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Drawbacks","id":"14","title":"Drawbacks"},"140":{"body":"See comments on the tracking issue and the in-progress PR","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Prior Art and References","id":"140","title":"Prior Art and References"},"141":{"body":"Not applicable.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Unresolved Questions","id":"141","title":"Unresolved Questions"},"142":{"body":"This enables future optimisations for the performance of availability recovery, such as retrieving batched systematic chunks from backers/approval-checkers.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Future Directions and Related Material","id":"142","title":"Future Directions and Related Material"},"143":{"body":"This appendix details the intricacies of getting access to the core index of a candidate in parity's polkadot node. Here, core_index refers to the index of the core that a candidate was occupying while it was pending availability (from backing to inclusion). Availability-recovery can currently be triggered by the following phases in the polkadot protocol: During the approval voting process. By other collators of the same parachain. During disputes. Getting the right core index for a candidate can be troublesome. Here's a breakdown of how different parts of the node implementation can get access to it: The approval-voting process for a candidate begins after observing that the candidate was included. Therefore, the node has easy access to the block where the candidate got included (and also the core that it occupied). The pov_recovery task of the collators starts availability recovery in response to noticing a candidate getting backed, which enables easy access to the core index the candidate started occupying. Disputes may be initiated on a number of occasions: 3.a. is initiated by the validator as a result of finding an invalid candidate while participating in the approval-voting protocol. In this case, availability-recovery is not needed, since the validator already issued their vote. 3.b is initiated by the validator noticing dispute votes recorded on-chain. In this case, we can safely assume that the backing event for that candidate has been recorded and kept in memory. 3.c is initiated as a result of getting a dispute statement from another validator. It is possible that the dispute is happening on a fork that was not yet imported by this validator, so the subsystem may not have seen this candidate being backed. A naive attempt of solving 3.c would be to add a new version for the disputes request-response networking protocol. Blindly passing the core index in the network payload would not work, since there is no way of validating that the reported core_index was indeed the one occupied by the candidate at the respective relay parent. Another attempt could be to include in the message the relay block hash where the candidate was included. This information would be used in order to query the runtime API and retrieve the core index that the candidate was occupying. However, considering it's part of an unimported fork, the validator cannot call a runtime API on that block. Adding the core_index to the CandidateReceipt would solve this problem and would enable systematic recovery for all dispute scenarios.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Appendix A","id":"143","title":"Appendix A"},"144":{"body":"(source) Table of Contents RFC-0061: Support allocator inside of runtime Summary Motivation Stakeholders Explanation Runtime side spec Client side spec Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 27 December 2023 Description Supporting runtime built-in allocator makes the substrate runtime more versatile Authors Jiahao Ye","breadcrumbs":"RFC-0061: Support allocator inside of runtime » RFC-0061: Support allocator inside of runtime","id":"144","title":"RFC-0061: Support allocator inside of runtime"},"145":{"body":"Currently, substrate runtime use an simple allocator defined by host side. Every runtime MUST import these allocator functions for normal execution. This situation make runtime code not versatile enough. So this RFC proposes to define a new spec for allocator part to make substrate runtime more generic.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Summary","id":"145","title":"Summary"},"146":{"body":"Since this RFC define a new way for allocator, we now regard the old one as legacy allocator. As we all know, since the allocator implementation details are defined by the substrate client, parachain/parathread cannot customize memory allocator algorithm, so the new specification allows the runtime to customize memory allocation, and then export the allocator function according to the specification for the client side to use. Another benefit is that some new host functions can be designed without allocating memory on the client, which may have potential performance improvements. Also it will help provide a unified and clean specification if substrate runtime support multi-targets(e.g. RISC-V). There is also a potential benefit. Many programming languages that support compilation to wasm may not be friendly to supporting external allocator. This is beneficial for other programming languages to enter the substrate runtime ecosystem. The last and most important benefit is that for offchain context execution, the runtime can fully support pure wasm. What this means here is that all imported host functions could not actually be called (as stub functions), then the various verification logic of the runtime can be converted into pure wasm, which provides the possibility for the substrate runtime to run block verification in other environments (such as in browsers and other non-substrate environments).","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Motivation","id":"146","title":"Motivation"},"147":{"body":"No attempt was made at convincing stakeholders.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Stakeholders","id":"147","title":"Stakeholders"},"148":{"body":"","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Explanation","id":"148","title":"Explanation"},"149":{"body":"This section contains a list of functions should be exported by substrate runtime. We define the spec as version 1, so the following dummy function v1 MUST be exported to hint client that runtime is using version 1 spec, otherwise rollback to legacy allocator. The function should never be used, and its name is only for version checking. (export \"v1\" (func $v1)) Choose this way is more generic than custom section since many other tools do not support custom section very well. But if an environment want to run it, it should always be possible to parse the export section. The allocator functions are: (export \"alloc\" (func $alloc))\n(export \"dealloc\" (func $dealloc))\n(export \"realloc\" (func $realloc)) Their signatures are: (func $alloc (param $size i32) (result i32))\n(func $dealloc (param $addr i32) (param $size i32))\n(func $realloc (param $addr i32) (param $size i32) (param $new_size i32) (result i32)) Note: dealloc/realloc is not used in substrate side currently, but for the functional integrity. The following imports are disabled. The two kind of allocators(leagcy and v1) cannot know each other, and importing them will cause abnormal memory allocation. (import \"env\" \"ext_allocator_free_version_1\" (func $ext_allocator_free_version_1 (type 0)))\n(import \"env\" \"ext_allocator_malloc_version_1\" (func $ext_allocator_malloc_version_1 (type 1))) The following export could be removed. The client side no need to know heap base. (export \"__heap_base\" (global 2))","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Runtime side spec","id":"149","title":"Runtime side spec"},"15":{"body":"","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Testing, Security, and Privacy","id":"15","title":"Testing, Security, and Privacy"},"150":{"body":"During instantiating time, add a version checking stage for wasm executor before any other wasm module checking. Check if parsed wasm module contains a exported v1 function: If not exist, we predicate it using legacy allocator, just do normal checking like before. Set legacy allocator be Some while set v1 allocator be None. If exist, we predicate it using v1 allocator. And then we lookup and hold the exported alloc function for the total lifestyle of instance, return error if not exist. Set legacy allocator be None while set v1 allocator be Some. When wasm host functions or other entrypoint call(e.g. runtime_apis/validate_block) need to allocate memory, check if instance hold the alloc, if hold just call it otherwise call the legacy allocator. Detail-heavy explanation of the RFC, suitable for explanation to an implementer of the changeset. This should address corner cases in detail and provide justification behind decisions, and provide rationale for how the design meets the solution requirements.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Client side spec","id":"150","title":"Client side spec"},"151":{"body":"The allocator inside of the runtime will make code size bigger, but it's not obvious. The allocator inside of the runtime maybe slow down(or speed up) the runtime, still not obvious. We could ignore these drawbacks since they are not prominent. And the execution efficiency is highly decided by runtime developer. We could not prevent a poor efficiency if developer want to do it.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Drawbacks","id":"151","title":"Drawbacks"},"152":{"body":"Keep the legacy allocator runtime test cases, and add new feature to compile test cases for v1 allocator spec. And then update the test asserts. Update template runtime to enable v1 spec. Once the dev network runs well, it seems that the spec is implmented correctly.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Testing, Security, and Privacy","id":"152","title":"Testing, Security, and Privacy"},"153":{"body":"","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Performance, Ergonomics, and Compatibility","id":"153","title":"Performance, Ergonomics, and Compatibility"},"154":{"body":"As the above says, not obvious impact about performance. And polkadot-sdk could offer the best practice allocator for all chains. Third party also could customized by theirself. So the performance could be improved over time.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Performance","id":"154","title":"Performance"},"155":{"body":"Only for runtime developer, Just need to import a new crate and enable a new feature. Maybe it's convienient for other wasm-target language to implment.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Ergonomics","id":"155","title":"Ergonomics"},"156":{"body":"It's 100% compatible. Only Some runtime configs and executor configs need to be depreacted. For support new runtime spec, we MUST upgrade the client binary to support new spec of client part firstly. We SHALL add an optional primtive crate to enable the version 1 spec and disable the legacy allocator by cargo feature. For the first year, we SHALL disable the v1 by default, and enable it by default start in the next year.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Compatibility","id":"156","title":"Compatibility"},"157":{"body":"Move the allocator inside of the runtime Add new allocator design","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Prior Art and References","id":"157","title":"Prior Art and References"},"158":{"body":"None at this time.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Unresolved Questions","id":"158","title":"Unresolved Questions"},"159":{"body":"The content discussed with RFC-0004 is basically orthogonal, but it could still be considered together, and it is preferred that this rfc be implmentented first. This feature could make substrate runtime be easier supported by other languages and integreted into other ecosystem.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Future Directions and Related Material","id":"159","title":"Future Directions and Related Material"},"16":{"body":"The prevention of \"spam\" could be prevented by OpenGov proposal to forceDestoy list of collections that are not suitable.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Security concerns","id":"16","title":"Security concerns"},"160":{"body":"(source) Table of Contents RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot Summary Motivation Defi+NFT Applications need Smart Contracts on AssetHub Rollups need Smart Contracts on AssetHub ink! on AssetHub will lead to CorePlay Developers on AssetHub Stakeholders Explanation Limit Smart Contract Weight allocation Model AssetHub Assets inside EVM Smart Contracts based on Astar New DOT Revenue Sources New Revenue from AssetHub EVM Contracts New Revenue for ink!/Coreplay Contracts Drawbacks and Tradeoffs Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Unresolved Questions Future Directions and Related Material Start Date 14 January 2024 Description A proposal to add EVM + ink! Contracts to Asset Hub for Polkadot to support Polkadot Rollups and larger numbers of EVM/Coreplay smart contract developers and their users on Polkadot Rollups and AssetHub for Polkadot . Authors Sourabh Niyogi","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot","id":"160","title":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot"},"161":{"body":"This RFC proposes to add the two dominant smart contract programming languages in the Polkadot ecosystem to AssetHub: EVM + ink!/Coreplay. The objective is to increase DOT Revenue by making AssetHub accessible to (1) Polkadot Rollups; (2) EVM smart contract programmers; (3) Coreplay programmers who will benefit from easier-to-use smart contract environments. These changes in AssetHub are enabled by key Polkadot 2.0 technologies: PolkaVM supporting Coreplay, and hyper data availability in Blobs Chain.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Summary","id":"161","title":"Summary"},"162":{"body":"EVM Contracts are pervasive in the Web3 blockchain ecosystem, while Polkadot 2.0's Coreplay aims to surpass EVM Contracts in ease-of-use using PolkaVM's RISC architecture. Asset Hub for Polkadot does not have smart contract capabilities, even though dominant stablecoin assets such as USDC and USDT are originated there. In addition, in the RFC #32 - Minimal Relay Chain architecture , DOT balances are planned to be shifted to Asset Hub, to support Polkadot 2.0's CoreJam map-reduce architecture . In this 2.0 architecture, there is no room for synchronous contracts on the Polkadot relay chain -- doing so would waste precious resources that should be dedicated to sync+async composability. However, while Polkadot fellows have concluded the Polkadot relay chain should not support synchronous smart contracts, this is not applicable to AssetHub for Polkadot. The following sections argue for the need for Smart Contracts on AssetHub.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Motivation","id":"162","title":"Motivation"},"163":{"body":"EVM Smart Contract chains within Polkadot and outside are dominated by defi + NFT applications. While the assetConversion pallet (implementing Uniswap v1) is a start to having some basic defi on AssetHub, many programmers may be surprised to find that synchronous EVM smart contract capabilities (e.g. uniswap v2+v3) on other chains are not possible on AssetHub. Indeed, this is true for many Polkadot parachains, with the exception of the top 2 Polkadot parachains (by marketcap circa early 2024: Moonbeam + Astar) who do include the EVM pallets. This leads to a cumbersome Polkadot EVM smart contract programming experience between AssetHub and these 2 Polkadot parachains, making the Polkadot ecosystem hard to work with for asset-related applications from defi to NFTs. The ink! defi ecosystem remains nascent, having only Astar as a potential home, and empirically has almost no defi/NFT activity. Although e.g. uniswap translations have been written, An AssetHub for Polkadot deployment of EVM and ink! contracts, it is hoped, would likely support new applications for top assets (USDC and USDT) and spur many smart contract developers to develop end user applications with familiar synchronous programming constructs.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Defi+NFT Applications need Smart Contracts on AssetHub","id":"163","title":"Defi+NFT Applications need Smart Contracts on AssetHub"},"164":{"body":"Polkadot Data Availability technology is extremely promising but underutilized. We envision a new class of customer, \"Polkadot Rollups\" that can utilize Polkadot DA far better than Ethereum and other technology platforms. Unlike Ethereum's DA which is capped at a fixed throughput now extending to EIP-4844, Polkadot data availability is linear in the number of cores . This means Polkadot can support a much larger number of rollups than Ethereum now , and even more as the number of cores in Polkadot grows. This performance difference has not been widely appreciated in the blockchain community. Recently, a \"Blobs\" chain has been developed to expose Polkadot DA to rollups by senior Polkadot Fellows: ThrumDev Blobs on Kusama - ParaID 3338 ) Rollkit A rollup kit is mappable to widely used rollup platforms, such as OP Stack, Arbitrum Orbit or StarkNet Madara. A Blobs chain, currently deployed on Kusama (paraID 3338), enables rollups to utilize functionality outside the Polkadot 1.0 parachain architecture by having rollups submit transactions via a rollup kit abstraction. The Blobs chain write interface is simple blobs.submitBlob(namespaceId, blob) with a matching read interface. However, simply sending blobs is not enough to power a rollup. End users need to interact with a \"settlement layer\", while rollups require proof systems for security. Key functionality for optimistic rollups (e.g. OP Stack, Arbitrum Orbit) are: enabling the users of the rollup to deposit and withdraw the L1 native token (DOT) into the rollup and from the rollup. In an AssetHub context: Deposits: send DOT to the rollup from AssetHub, by calling an EVM Contract function on AssetHub; Withdrawal: withdraw DOT from the rollup by submitting a EVM transaction on the rollup. After some of days (e.g. 7 days on OP Stack), the user submits a transaction on AssetHub to claim their DOT, using a Merkle proof. enabling interactive fraud proofs. While this has rarely happened in practice, it is critical to rollup security. In an AssetHub context: Anyone monitoring a rollup, using the Blobs chain can access the recent history. When detecting invalid state transitions, anyone can interact with rollup and AssetHub's EVM to generate a fraud proof. Analogous functionality exist for ZK-rollup platforms (e.g. Polygon zkEVM, StarkNet Madara), with high potential for using the same Blobs+AssetHub chains. While it is possible to have the operations in EVM Contracts translated in FRAME pallets (e.g. an \"opstack\" pallet), we do not believe a pallet translation confers significant benefits. Instead, we believe the translation would require regular updates from the rollup platform, which have proven difficult to implement in practice.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Rollups need Smart Contracts on AssetHub","id":"164","title":"Rollups need Smart Contracts on AssetHub"},"165":{"body":"While ink! WASM Smart Contracts have been promising technology, the adoption of ink! WASM Contracts amongst Polkadot parachains has been low, in practice just Astar to date, with nowhere near as many developers. This may be due to missing tooling, slow compile times, and/or simply because ink!/Rust is just harder to learn than Solidity, the dominant programming language of EVM Chains. Fortunately, ink! can compile to PolkaVM , a new RISC based VM that has the special capability of suspending and resuming the registers, supporting long-running computations. This has the key new promise of making smart contract languages easier to use -- instead of smart contract developers worrying about what can be done within the gas limits of a specific block or a specific transaction, Coreplay smart contracts can be much easier to program on (see here ). We believe AssetHub should support ink! as a precursor to support CorePlay's capabilities as soon as possible. To the best of our knowledge, release times of this are unknown but having ink! inside AssetHub would be natural for Polkadot 2.0.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » ink! on AssetHub will lead to CorePlay Developers on AssetHub","id":"165","title":"ink! on AssetHub will lead to CorePlay Developers on AssetHub"},"166":{"body":"Asset Hub Users : Those who call any extrinsic on Asset Hub for Polkadot. DOT Token Holders : Those who hold DOT on any chain in the Polkadot ecosystem. AssetHub Smart Contract Developers : Those who utilize EVM Smart Contracts, ink! Contracts or Coreplay Contracts on AssetHub. Ethereum Rollups : Rollups who utilize Ethereum as a settlement layer and interactive fraud proofs or ZK proofs to secure their rollup and utilize Ethereum DA to record transactions, provide security for their rollup, and have rollup users settle on Ethereum. Polkadot Rollups : Rollups who utilize AssetHub as a settlement layer and interactive fraud proofs or ZK proofs on Assethub and Blobs to record rollup transactions, provide security for their rollup, and have rollup users settle on AssetHub for Polkadot.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Stakeholders","id":"166","title":"Stakeholders"},"167":{"body":"","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Explanation","id":"167","title":"Explanation"},"168":{"body":"AssetHub is a major component of the Polkadot 2.0 Minimal Relay Chain architecture. It is critical that smart contract developers not be able to clog AssetHub's blockspace for other mission critical applications, such as Staking and Governance. As such, it is proposed that at most 50% of the available weight in AssetHub for Polkadot blocks be allocated to smart contracts pallets (EVM, ink! and/or Coreplay). While to date AssetHub has limited usage, it is believed (see here ) that imposing this limit on smart contracts pallet would limit the effect on non-smart contract usage. A excessively small weight limit like 10% or 20% may limit the attractiveness of Polkadot as a platform for Polkadot rollups and EVM Contracts. A excessively large weight like 90% or 100% may threaten AssetHub usage. In practice, this 50% weight limit would be used for 3 categories of smart contract usage: Defi/NFT applications: modern defi EVM Contracts would be expected to go beyond the capabilities of assetConversion pallet to support many common ERC20/ERC721/ERC1155 centric applications. Polkadot Rollups users: deposit and withdrawal operations would be expected to dominate here. Note the operations of recording blocks would be done on the Blobs Chains, while interactive fraud proofs would be extremely rare by comparison. Coreplay smart contract usage, at a future time. We expect the first category to dominate. If AssetHub smart contract usage increases so as to approach this 50% limit, the gas price will increase significantly. This likely motivates EVM contract developers to migrate to a EVM contract chain and/or rethink their application to work asynchronously within CoreJam, another major Polkadot 2.0 technology.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Limit Smart Contract Weight allocation","id":"168","title":"Limit Smart Contract Weight allocation"},"169":{"body":"It is essential to make AssetHub assets interface well with EVM Smart Contracts. Polkadot parachains Astar and Moonbeam have a mapping between assetIDs and \"virtual\" EVM Contracts. Astar XCM Asset List Moonbeam XC-20 We propose that AssetHub support a systemic mapping following Astar: (a) Native Relay DOT + KSM - should be mapped to 0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF on AssetHub for Polkadot and AssetHub for Kusama respectively (b) Other Assethubs assets should map into an EVM address using a 0xffffffff prefix https://docs.astar.network/docs/learn/interoperability/xcm/integration/tools#xc20-address The usage of the above has been made code-complete by Astar: xc-asset-config assets-erc20 pallet-assets extensions Polkadot parachains Astar and Moonbeam adopted two very different approaches of how end users interact with EVM Contracts. We propose that AssetHub for Polkadot adopt the Astar solution, mirroring it as closely as possible.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Model AssetHub Assets inside EVM Smart Contracts based on Astar","id":"169","title":"Model AssetHub Assets inside EVM Smart Contracts based on Astar"},"17":{"body":"","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Performance, Ergonomics, and Compatibility","id":"17","title":"Performance, Ergonomics, and Compatibility"},"170":{"body":"A substantial motivation in this proposal is to increase demand for DOT via two key chains: AssetHub - from defi/NFT users, Polkadot Rollup users and AssetHub Smart Contract Developers Blobs - for Polkadot Rollups","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » New DOT Revenue Sources","id":"170","title":"New DOT Revenue Sources"},"171":{"body":"Enabling EVM Contracts on AssetHub will support DOT revenue from: defi/NFT users who use AssetHub directly rollup operators who utilize Blobs chain rollup users who buy DOT to utilize Polkadot Rollups","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » New Revenue from AssetHub EVM Contracts","id":"171","title":"New Revenue from AssetHub EVM Contracts"},"172":{"body":"Enabling ink! contracts will pave the way to a new class of AssetHub Smart Contract Developers. Given PolkaVM's proven reduced compile time and RISC architecture enabling register snapshots, it is natural to utilize these new technical capabilities on a flagship system chain. To the extent these capabilities are attractive to smart contract developers, this has the potential for bringing in new DOT revenue from a system chain.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » New Revenue for ink!/Coreplay Contracts","id":"172","title":"New Revenue for ink!/Coreplay Contracts"},"173":{"body":"Supporting EVM Contracts in AssetHub is seen by some as undercutting Polkadot's 1.0 parachain architecture, both special purpose appchains and smart contract developer platform parachains. We believe the lack of growth of parachains in the last 12-18 months, and the high potential of CorePlay motivates new options be pursued in system chains. Maintaining EVM Contracts on AssetHub may be seen as difficult and may require Substrate engineers to maintain EVM Pallets and manage the xcContracts. We believe this cost will be relatively small based on the proven deployment of Astar and Moonbeam. The cost will be justified compared to the potential upside of new DOT revenue from defi/NFT applications on AssetHub and the potential for utilizing Polkadot DA for Polkadot rollups.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Drawbacks and Tradeoffs","id":"173","title":"Drawbacks and Tradeoffs"},"174":{"body":"Testing the mapping between assetIDs and EVM Contracts thoroughly will be critical. Having a complete working OP Stack chain using AssetHub for Kusama (1000) and Blobs on Kusama (3338) would be highly desirable, but is unlikely to be required.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Testing, Security, and Privacy","id":"174","title":"Testing, Security, and Privacy"},"175":{"body":"","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Performance, Ergonomics, and Compatibility","id":"175","title":"Performance, Ergonomics, and Compatibility"},"176":{"body":"The weight limit of 50% is expected to be adequate to limit excess smart contract usage at this time. Storage bloat is expected to kept to a minimum with the nominal 0.01 Existential Deposit.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Performance","id":"176","title":"Performance"},"177":{"body":"Note that the existential deposit is not 0 DOT but being lowered from 0.1 DOT to 0.01 DOT, which may pose problems for some developers. Many developers routinely deploy their EVM contracts on many different EVM Chains in parallel. This non-zero ED may pose problems for some developers The 0.01 DOT (worth $0.075 USD) is unlikely to pose significant issue.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Ergonomics","id":"177","title":"Ergonomics"},"178":{"body":"It is believed that EVM pallet (as deployed on Moonbeam + Astar) is sufficiently compatible with Ethereum, and that the ED of 0.01 DOT pose negligible issues. The messaging architecture for rollups are not compatible with Polkadot XCM. It is not clear if leading rollup platforms (OP Stack, Arbitrum Orbit, Polygon zkEVM) could be made compatible with XCM.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Compatibility","id":"178","title":"Compatibility"},"179":{"body":"It is highly desirable to know the throughput of Polkadot DA with popular rollup architectures OP Stack and Arbitrum Orbit. This would enable CEXs and EVM L2 builders to choose Polkadot over Ethereum.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Unresolved Questions","id":"179","title":"Unresolved Questions"},"18":{"body":"The primary performance consideration stems from the potential for state bloat due to increased activity from lower deposit requirements. It's vital to monitor and manage this to avoid any negative impact on the chain's performance. Strategies for mitigating state bloat, including efficient data management and periodic reviews of storage requirements, will be essential.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Performance","id":"18","title":"Performance"},"180":{"body":"If accepted, this RFC could pave the way for CorePlay on Asset Hub for Polkadot/Kusama, a major component of Polkadot 2.0's smart contract future. The importance of precompiles should","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Future Directions and Related Material","id":"180","title":"Future Directions and Related Material"},"181":{"body":"(source) Table of Contents RFC-1: Agile Coretime Summary Motivation Present System Problems Requirements Stakeholders Explanation Overview Detail Specific functions of the Coretime-chain Notes on the Instantaneous Coretime Market Notes on Economics Notes on Types Rollout Performance, Ergonomics and Compatibility Testing, Security and Privacy Future Directions and Related Material Drawbacks, Alternatives and Unknowns Prior Art and References Start Date 30 June 2023 Description Agile periodic-sale-based model for assigning Coretime on the Polkadot Ubiquitous Computer. Authors Gavin Wood","breadcrumbs":"RFC-1: Agile Coretime » RFC-1: Agile Coretime","id":"181","title":"RFC-1: Agile Coretime"},"182":{"body":"This proposes a periodic, sale-based method for assigning Polkadot Coretime, the analogue of \"block space\" within the Polkadot Network. The method takes into account the need for long-term capital expenditure planning for teams building on Polkadot, yet also provides a means to allow Polkadot to capture long-term value in the resource which it sells. It supports the possibility of building rich and dynamic secondary markets to optimize resource allocation and largely avoids the need for parameterization.","breadcrumbs":"RFC-1: Agile Coretime » Summary","id":"182","title":"Summary"},"183":{"body":"","breadcrumbs":"RFC-1: Agile Coretime » Motivation","id":"183","title":"Motivation"},"184":{"body":"The Polkadot Ubiquitous Computer , or just Polkadot UC , represents the public service provided by the Polkadot Network. It is a trust-free, WebAssembly-based, multicore, internet-native omnipresent virtual machine which is highly resilient to interference and corruption. The present system of allocating the limited resources of the Polkadot Ubiquitous Computer is through a process known as parachain slot auctions . This is a parachain-centric paradigm whereby a single core is long-term allocated to a single parachain which itself implies a Substrate/Cumulus-based chain secured and connected via the Relay-chain. Slot auctions are on-chain candle auctions which proceed for several days and result in the core being assigned to the parachain for six months at a time up to 24 months in advance. Practically speaking, we only see two year periods being bid upon and leased. Funds behind the bids made in the slot auctions are merely locked, they are not consumed or paid and become unlocked and returned to the bidder on expiry of the lease period. A means of sharing the deposit trustlessly known as a crowdloan is available allowing token holders to contribute to the overall deposit of a chain without any counterparty risk.","breadcrumbs":"RFC-1: Agile Coretime » Present System","id":"184","title":"Present System"},"185":{"body":"The present system is based on a model of one-core-per-parachain. This is a legacy interpretation of the Polkadot platform and is not a reflection of its present capabilities. By restricting ownership and usage to this model, more dynamic and resource-efficient means of utilizing the Polkadot Ubiquitous Computer are lost. More specifically, it is impossible to lease out cores at anything less than six months, and apparently unrealistic to do so at anything less than two years. This removes the ability to dynamically manage the underlying resource, and generally experimentation, iteration and innovation suffer. It bakes into the platform an assumption of permanence for anything deployed into it and restricts the market's ability to find a more optimal allocation of the finite resource. There is no ability to determine capital requirements for hosting a parachain beyond two years from the point of its initial deployment onto Polkadot. While it would be unreasonable to have perfect and indefinite cost predictions for any real-world platform, not having any clarity whatsoever beyond \"market rates\" two years hence can be a very off-putting prospect for teams to buy into. However, quite possibly the most substantial problem is both a perceived and often real high barrier to entry of the Polkadot ecosystem. By forcing innovators to either raise seven-figure sums through investors or appeal to the wider token-holding community, Polkadot makes it difficult for a small band of innovators to deploy their technology into Polkadot. While not being actually permissioned, it is also far from the barrierless, permissionless ideal which an innovation platform such as Polkadot should be striving for.","breadcrumbs":"RFC-1: Agile Coretime » Problems","id":"185","title":"Problems"},"186":{"body":"The solution SHOULD provide an acceptable value-capture mechanism for the Polkadot network. The solution SHOULD allow parachains and other projects deployed on to the Polkadot UC to make long-term capital expenditure predictions for the cost of ongoing deployment. The solution SHOULD minimize the barriers to entry in the ecosystem. The solution SHOULD work well when the Polkadot UC has up to 1,000 cores. The solution SHOULD work when the number of cores which the Polkadot UC can support changes over time. The solution SHOULD facilitate the optimal allocation of work to cores of the Polkadot UC, including by facilitating the trade of regular core assignment at various intervals and for various spans. The solution SHOULD avoid creating additional dependencies on functionality which the Relay-chain need not strictly provide for the delivery of the Polkadot UC. Furthermore, the design SHOULD be implementable and deployable in a timely fashion; three months from the acceptance of this RFC should not be unreasonable.","breadcrumbs":"RFC-1: Agile Coretime » Requirements","id":"186","title":"Requirements"},"187":{"body":"Primary stakeholder sets are: Protocol researchers and developers, largely represented by the Polkadot Fellowship and Parity Technologies' Engineering division. Polkadot Parachain teams both present and future, and their users. Polkadot DOT token holders. Socialization: The essensials of this proposal were presented at Polkadot Decoded 2023 Copenhagen on the Main Stage. A small amount of socialization at the Parachain Summit preceeded it and some substantial discussion followed it. Parity Ecosystem team is currently soliciting views from ecosystem teams who would be key stakeholders.","breadcrumbs":"RFC-1: Agile Coretime » Stakeholders","id":"187","title":"Stakeholders"},"188":{"body":"","breadcrumbs":"RFC-1: Agile Coretime » Explanation","id":"188","title":"Explanation"},"189":{"body":"Upon implementation of this proposal, the parachain-centric slot auctions and associated crowdloans cease. Instead, Coretime on the Polkadot UC is sold by the Polkadot System in two separate formats: Bulk Coretime and Instantaneous Coretime . When a Polkadot Core is utilized, we say it is dedicated to a Task rather than a \"parachain\". The Task to which a Core is dedicated may change at every Relay-chain block and while one predominant type of Task is to secure a Cumulus-based blockchain (i.e. a parachain), other types of Tasks are envisioned. Bulk Coretime is sold periodically on a specialised system chain known as the Coretime-chain and allocated in advance of its usage, whereas Instantaneous Coretime is sold on the Relay-chain immediately prior to usage on a block-by-block basis. This proposal does not fix what should be done with revenue from sales of Coretime and leaves it for a further RFC process. Owners of Bulk Coretime are tracked on the Coretime-chain and the ownership status and properties of the owned Coretime are exposed over XCM as a non-fungible asset. At the request of the owner, the Coretime-chain allows a single Bulk Coretime asset, known as a Region , to be used in various ways including transferal to another owner, allocated to a particular task (e.g. a parachain) or placed in the Instantaneous Coretime Pool. Regions can also be split out, either into non-overlapping sub-spans or exactly-overlapping spans with less regularity. The Coretime-Chain periodically instructs the Relay-chain to assign its cores to alternative tasks as and when Core allocations change due to new Regions coming into effect. Renewal and Migration There is a renewal system which allows a Bulk Coretime assignment of a single core to be renewed unchanged with a known price increase from month to month. Renewals are processed in a period prior to regular purchases, effectively giving them precedence over a fixed number of cores available. Renewals are only enabled when a core's assignment does not include an Instantaneous Coretime allocation and has not been split into shorter segments. Thus, renewals are designed to ensure only that committed parachains get some guarantees about price for predicting future costs. This price-capped renewal system only allows cores to be reused for their same tasks from month to month. In any other context, Bulk Coretime would need to be purchased regularly. As a migration mechanism, pre-existing leases (from the legacy lease/slots/crowdloan framework) are initialized into the Coretime-chain and cores assigned to them prior to Bulk Coretime sales. In the sale where the lease expires, the system offers a renewal, as above, to allow a priority sale of Bulk Coretime and ensure that the Parachain suffers no downtime when transitioning from the legacy framework. Instantaneous Coretime Processing of Instantaneous Coretime happens in part on the Polkadot Relay-chain. Credit is purchased on the Coretime-chain for regular DOT tokens, and this results in a DOT-denominated Instantaneous Coretime Credit account on the Relay-chain being credited for the same amount. Though the Instantaneous Coretime Credit account records a balance for an account identifier (very likely controlled by a collator), it is non-transferable and non-refundable . It can only be consumed in order to purchase some Instantaneous Coretime with immediate availability. The Relay-chain reports this usage back to the Coretime-chain in order to allow it to reward the providers of the underlying Coretime, either the Polkadot System or owners of Bulk Coretime who contributed to the Instantaneous Coretime Pool. Specifically the Relay-chain is expected to be responsible for: holding non-transferable, non-refundable DOT-denominated Instantaneous Coretime Credit balance information. setting and adjusting the price of Instantaneous Coretime based on usage. allowing collators to consume their Instantaneous Coretime Credit at the current pricing in exchange for the ability to schedule one PoV for near-immediate usage. ensuring the Coretime-Chain has timely accounting information on Instantaneous Coretime Sales revenue. Coretime-chain The Coretime-chain is a new system parachain. It has the responsibility of providing the Relay-chain via UMP with information of: The number of cores which should be made available. Which tasks should be running on which cores and in what ratios. Accounting information for Instantaneous Coretime Credit. It also expects information from the Relay-chain via DMP: The number of cores available to be scheduled. Account information on Instantaneous Coretime Sales. The specific interface is properly described in RFC-5.","breadcrumbs":"RFC-1: Agile Coretime » Overview","id":"189","title":"Overview"},"19":{"body":"The proposed change aims to enhance the user experience for artists, traders and utilizers of Kusama and Polkadot asset hub. Making Polkadot and Kusama more accessible and user-friendly.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Ergonomics","id":"19","title":"Ergonomics"},"190":{"body":"Parameters This proposal includes a number of parameters which need not necessarily be fixed. Their usage is explained below, but their values are suggested or specified in the later section Parameter Values . Reservations and Leases The Coretime-chain includes some governance-set reservations of Coretime; these cover every System-chain. Additionally, governance is expected to initialize details of the pre-existing leased chains. Regions A Region is an assignable period of Coretime with a known regularity. All Regions are associated with a unique Core Index , to identify which core the assignment of which ownership of the Region controls. All Regions are also associated with a Core Mask , an 80-bit bitmap, to denote the regularity at which it may be scheduled on the core. If all bits are set in the Core Mask value, it is said to be Complete . 80 is selected since this results in the size of the datatype used to identify any Region of Polkadot Coretime to be a very convenient 128-bit. Additionally, if TIMESLICE (the number of Relay-chain blocks in a Timeslice) is 80, then a single bit in the Core Mask bitmap represents exactly one Core for one Relay-chain block in one Timeslice. All Regions have a span. Region spans are quantized into periods of TIMESLICE blocks; BULK_PERIOD divides into TIMESLICE a whole number of times. The Timeslice type is a u32 which can be multiplied by TIMESLICE to give a BlockNumber value representing the same quantity in terms of Relay-chain blocks. Regions can be tasked to a TaskId (aka ParaId) or pooled into the Instantaneous Coretime Pool. This process can be Provisional or Final . If done only provisionally or not at all then they are fresh and have an Owner which is able to manipulate them further including reassignment. Once Final , then all ownership information is discarded and they cannot be manipulated further. Renewal is not possible when only provisionally tasked/pooled. Bulk Sales A sale of Bulk Coretime occurs on the Coretime-chain every BULK_PERIOD blocks. In every sale, a BULK_LIMIT of individual Regions are offered for sale. Each Region offered for sale has a different Core Index, ensuring that they each represent an independently allocatable resource on the Polkadot UC. The Regions offered for sale have the same span: they last exactly BULK_PERIOD blocks, and begin immediately following the span of the previous Sale's Regions. The Regions offered for sale also have the complete, non-interlaced, Core Mask. The Sale Period ends immediately as soon as span of the Coretime Regions that are being sold begins. At this point, the next Sale Price is set according to the previous Sale Price together with the number of Regions sold compared to the desired and maximum amount of Regions to be sold. See Price Setting for additional detail on this point. Following the end of the previous Sale Period, there is an Interlude Period lasting INTERLUDE_PERIOD of blocks. After this period is elapsed, regular purchasing begins with the Purchasing Period . This is designed to give at least two weeks worth of time for the purchased regions to be partitioned, interlaced, traded and allocated. The Interlude The Interlude period is a period prior to Regular Purchasing where renewals are allowed to happen. This has the effect of ensuring existing long-term tasks/parachains have a chance to secure their Bulk Coretime for a well-known price prior to general sales. Regular Purchasing Any account may purchase Regions of Bulk Coretime if they have the appropriate funds in place during the Purchasing Period, which is from INTERLUDE_PERIOD blocks after the end of the previous sale until the beginning of the Region of the Bulk Coretime which is for sale as long as there are Regions of Bulk Coretime left for sale (i.e. no more than BULK_LIMIT have already been sold in the Bulk Coretime Sale). The Purchasing Period is thus roughly BULK_PERIOD - INTERLUDE_PERIOD blocks in length. The Sale Price varies during an initial portion of the Purchasing Period called the Leadin Period and then stays stable for the remainder. This initial portion is LEADIN_PERIOD blocks in duration. During the Leadin Period the price decreases towards the Sale Price, which it lands at by the end of the Leadin Period. The actual curve by which the price starts and descends to the Sale Price is outside the scope of this RFC, though a basic suggestion is provided in the Price Setting Notes, below. Renewals At any time when there are remaining Regions of Bulk Coretime to be sold, including during the Interlude Period , then certain Bulk Coretime assignmnents may be Renewed . This is similar to a purchase in that funds must be paid and it consumes one of the Regions of Bulk Coretime which would otherwise be placed for purchase. However there are two key differences. Firstly, the price paid is the minimum of RENEWAL_PRICE_CAP more than what the purchase/renewal price was in the previous renewal and the current (or initial, if yet to begin) regular Sale Price. Secondly, the purchased Region comes preassigned with exactly the same workload as before. It cannot be traded, repartitioned, interlaced or exchanged. As such unlike regular purchasing the Region never has an owner. Renewal is only possible for either cores which have been assigned as a result of a previous renewal, which are migrating from legacy slot leases, or which fill their Bulk Coretime with an unsegmented, fully and finally assigned workload which does not include placement in the Instantaneous Coretime Pool. The renewed workload will be the same as this initial workload. Manipulation Regions may be manipulated in various ways by its owner: Transferred in ownership. Partitioned into quantized, non-overlapping segments of Bulk Coretime with the same ownership. Interlaced into multiple Regions over the same period whose eventual assignments take turns to be scheduled. Assigned to a single, specific task (identified by TaskId aka ParaId). This may be either provisional or final . Pooled into the Instantaneous Coretime Pool, in return for a pro-rata amount of the revenue from the Instantaneous Coretime Sales over its period. Enactment","breadcrumbs":"RFC-1: Agile Coretime » Detail","id":"190","title":"Detail"},"191":{"body":"Several functions of the Coretime-chain SHALL be exposed through dispatchables and/or a nonfungible trait implementation integrated into XCM: 1. transfer Regions may have their ownership transferred. A transfer(region: RegionId, new_owner: AccountId) dispatchable shall have the effect of altering the current owner of the Region identified by region from the signed origin to new_owner. An implementation of the nonfungible trait SHOULD include equivalent functionality. RegionId SHOULD be used for the AssetInstance value. 2. partition Regions may be split apart into two non-overlapping interior Regions of the same Core Mask which together concatenate to the original Region. A partition(region: RegionId, pivot: Timeslice) dispatchable SHALL have the effect of removing the Region identified by region and adding two new Regions of the same owner and Core Mask. One new Region will begin at the same point of the old Region but end at pivot timeslices into the Region, whereas the other will begin at this point and end at the end point of the original Region. Also: owner field of region must the equal to the Signed origin. pivot must equal neither the begin nor end fields of the region. 3. interlace Regions may be decomposed into two Regions of the same span whose eventual assignments take turns on the core by virtue of having complementary Core Masks. An interlace(region: RegionId, mask: CoreMask) dispatchable shall have the effect of removing the Region identified by region and creating two new Regions. The new Regions will each have the same span and owner of the original Region, but one Region will have a Core Mask equal to mask and the other will have Core Mask equal to the XOR of mask and the Core Mask of the original Region. Also: owner field of region must the equal to the Signed origin. mask must have some bits set AND must not equal the Core Mask of the old Region AND must only have bits set which are also set in the old Region's' Core Mask. 4. assign Regions may be assigned to a core. A assign(region: RegionId, target: TaskId, finality: Finality) dispatchable shall have the effect of placing an item in the workplan corresponding to the region's properties and assigned to the target task. If the region's end has already passed (taking into account any advance notice requirements) then this operation is a no-op. If the region's begining has already passed, then it is effectively altered to become the next schedulable timeslice. finality may have the value of either Final or Provisional. If Final, then the operation is free, the region record is removed entirely from storage and renewal may be possible: if the Region's span is the entire BULK_PERIOD, then the Coretime-chain records in storage that the allocation happened during this period in order to facilitate the possibility for a renewal. (Renewal only becomes possible when the full Core Mask of a core is finally assigned for the full BULK_PERIOD.) Also: owner field of region must the equal to the Signed origin. 5. pool Regions may be consumed in exchange for a pro rata portion of the Instantaneous Coretime Sales Revenue from its period and regularity. A pool(region: RegionId, beneficiary: AccountId, finality: Finality) dispatchable shall have the effect of placing an item in the workplan corresponding to the region's properties and assigned to the Instantaneous Coretime Pool. The details of the region will be recorded in order to allow for a pro rata share of the Instantaneous Coretime Sales Revenue at the time of the Region relative to any other providers in the Pool. If the region's end has already passed (taking into account any advance notice requirements) then this operation is a no-op. If the region's begining has already passed, then it is effectively altered to become the next schedulable timeslice. finality may have the value of either Final or Provisional. If Final, then the operation is free and the region record is removed entirely from storage. Also: owner field of region must the equal to the Signed origin. 6. Purchases A dispatchable purchase(price_limit: Balance) shall be provided. Any account may call purchase to purchase Bulk Coretime at the maximum price of price_limit. This may be called successfully only: during the regular Purchasing Period; when the caller is a Signed origin and their account balance is reducible by the current sale price; when the current sale price is no greater than price_limit; and when the number of cores already sold is less than BULK_LIMIT. If successful, the caller's account balance is reduced by the current sale price and a new Region item for the following Bulk Coretime span is issued with the owner equal to the caller's account. 7. Renewals A dispatchable renew(core: CoreIndex) shall be provided. Any account may call renew to purchase Bulk Coretime and renew an active allocation for the given core. This may be called during the Interlude Period as well as the regular Purchasing Period and has the same effect as purchase followed by assign, except that: The price of the sale is the Renewal Price (see next). The Region is allocated exactly the given core is currently allocated for the present Region. Renewal is only valid where a Region's span is assigned to Tasks (not placed in the Instantaneous Coretime Pool) for the entire unsplit BULK_PERIOD over all of the Core Mask and with Finality. There are thus three possibilities of a renewal being allowed: Purchased unsplit Coretime with final assignment to tasks over the full Core Mask. Renewed Coretime. A legacy lease which is ending. Renewal Price The Renewal Price is the minimum of the current regular Sale Price (or the initial Sale Price if in the Interlude Period) and: If the workload being renewed came to be through the Purchase and Assignment of Bulk Coretime, then the price paid during that Purchase operation. If the workload being renewed was previously renewed, then the price paid during this previous Renewal operation plus RENEWAL_PRICE_CAP. If the workload being renewed is a migation from a legacy slot auction lease, then the nominal price for a Regular Purchase (outside of the Lead-in Period) of the Sale during which the legacy lease expires. 8. Instantaneous Coretime Credits A dispatchable purchase_credit(amount: Balance, beneficiary: RelayChainAccountId) shall be provided. Any account with at least amount spendable funds may call this. This increases the Instantaneous Coretime Credit balance on the Relay-chain of the beneficiary by the given amount. This Credit is consumable on the Relay-chain as part of the Task scheduling system and its specifics are out of the scope of this proposal. When consumed, revenue is recorded and provided to the Coretime-chain for proper distribution. The API for doing this is specified in RFC-5.","breadcrumbs":"RFC-1: Agile Coretime » Specific functions of the Coretime-chain","id":"191","title":"Specific functions of the Coretime-chain"},"192":{"body":"For an efficient market to form around the provision of Bulk-purchased Cores into the pool of cores available for Instantaneous Coretime purchase, it is crucial to ensure that price changes for the purchase of Instantaneous Coretime are reflected well in the revenues of private Coretime providers during the same period. In order to ensure this, then it is crucial that Instantaneous Coretime, once purchased, cannot be held indefinitely prior to eventual use since, if this were the case, a nefarious collator could purchase Coretime when cheap and utilize it some time later when expensive and deprive private Coretime providers of their revenue. It must therefore be assumed that Instantaneous Coretime, once purchased, has a definite and short \"shelf-life\", after which it becomes unusable. This incentivizes collators to avoid purchasing Coretime unless they expect to utilize it imminently and thus helps create an efficient market-feedback mechanism whereby a higher price will actually result in material revenues for private Coretime providers who contribute to the pool of Cores available to service Instantaneous Coretime purchases.","breadcrumbs":"RFC-1: Agile Coretime » Notes on the Instantaneous Coretime Market","id":"192","title":"Notes on the Instantaneous Coretime Market"},"193":{"body":"The specific pricing mechanisms are out of scope for the present proposal. Proposals on economics should be properly described and discussed in another RFC. However, for the sake of completeness, I provide some basic illustration of how price setting could potentially work. Bulk Price Progression The present proposal assumes the existence of a price-setting mechanism which takes into account several parameters: OLD_PRICE: The price of the previous sale. BULK_TARGET: the target number of cores to be purchased as Bulk Coretime Regions or renewed during the previous sale. BULK_LIMIT: the maximum number of cores which could have been purchased/renewed during the previous sale. CORES_SOLD: the actual number of cores purchased/renewed in the previous sale. SELLOUT_PRICE: the price at which the most recent Bulk Coretime was purchased ( not renewed) prior to selling more cores than BULK_TARGET (or immediately after, if none were purchased before). This may not have a value if no Bulk Coretime was purchased. In general we would expect the price to increase the closer CORES_SOLD gets to BULK_LIMIT and to decrease the closer it gets to zero. If it is exactly equal to BULK_TARGET, then we would expect the price to remain the same. In the edge case that no cores were purchased yet more cores were sold (through renewals) than the target, then we would also avoid altering the price. A simple example of this would be the formula: IF SELLOUT_PRICE == NULL AND CORES_SOLD > BULK_TARGET THEN RETURN OLD_PRICE\nEND IF\nEFFECTIVE_PRICE := IF CORES_SOLD > BULK_TARGET THEN SELLOUT_PRICE\nELSE OLD_PRICE\nEND IF\nNEW_PRICE := IF CORES_SOLD < BULK_TARGET THEN EFFECTIVE_PRICE * MAX(CORES_SOLD, 1) / BULK_TARGET\nELSE EFFECTIVE_PRICE + EFFECTIVE_PRICE * (CORES_SOLD - BULK_TARGET) / (BULK_LIMIT - BULK_TARGET)\nEND IF This exists only as a trivial example to demonstrate a basic solution exists, and should not be intended as a concrete proposal. Intra-Leadin Price-decrease During the Leadin Period of a sale, the effective price starts higher than the Sale Price and falls to end at the Sale Price at the end of the Leadin Period. The price can thus be defined as a simple factor above one on which the Sale Price is multiplied. A function which returns this factor would accept a factor between zero and one specifying the portion of the Leadin Period which has passed. Thus we assume SALE_PRICE, then we can define PRICE as: PRICE := SALE_PRICE * FACTOR((NOW - LEADIN_BEGIN) / LEADIN_PERIOD) We can define a very simple progression where the price decreases monotonically from double the Sale Price at the beginning of the Leadin Period. FACTOR(T) := 2 - T Parameter Values Parameters are either suggested or specified . If suggested , it is non-binding and the proposal should not be judged on the value since other RFCs and/or the governance mechanism of Polkadot is expected to specify/maintain it. If specified , then the proposal should be judged on the merit of the value as-is. Name Value BULK_PERIOD 28 * DAYS specified INTERLUDE_PERIOD 7 * DAYS specified LEADIN_PERIOD 7 * DAYS specified TIMESLICE 8 * MINUTES specified BULK_TARGET 30 suggested BULK_LIMIT 45 suggested RENEWAL_PRICE_CAP Perbill::from_percent(2) suggested Instantaneous Price Progression This proposal assumes the existence of a Relay-chain-based price-setting mechanism for the Instantaneous Coretime Market which alters from block to block, taking into account several parameters: the last price, the size of the Instantaneous Coretime Pool (in terms of cores per Relay-chain block) and the amount of Instantaneous Coretime waiting for processing (in terms of Core-blocks queued). The ideal situation is to have the size of the Instantaneous Coretime Pool be equal to some factor of the Instantaneous Coretime waiting. This allows all Instantaneous Coretime sales to be processed with some limited latency while giving limited flexibility over ordering to the Relay-chain apparatus which is needed for efficient operation. If we set a factor of three, and thus aim to retain a queue of Instantaneous Coretime Sales which can be processed within three Relay-chain blocks, then we would increase the price if the queue goes above three times the amount of cores available, and decrease if it goes under. Let us assume the values OLD_PRICE, FACTOR, QUEUE_SIZE and POOL_SIZE. A simple definition of the NEW_PRICE would be thus: NEW_PRICE := IF QUEUE_SIZE < POOL_SIZE * FACTOR THEN OLD_PRICE * 0.95\nELSE OLD_PRICE / 0.95\nEND IF This exists only as a trivial example to demonstrate a basic solution exists, and should not be intended as a concrete proposal.","breadcrumbs":"RFC-1: Agile Coretime » Notes on Economics","id":"193","title":"Notes on Economics"},"194":{"body":"This exists only as a short illustration of a potential technical implementation and should not be treated as anything more. Regions This data schema achieves a number of goals: Coretime can be individually traded at a level of a single usage of a single core. Coretime Regions, of arbitrary span and up to 1/80th interlacing can be exposed as NFTs and exchanged. Any Coretime Region can be contributed to the Instantaneous Coretime Pool. Unlimited number of individual Coretime contributors to the Instantaneous Coretime Pool. (Effectively limited only in number of cores and interlacing level; with current values this would allow 80,000 individual payees per timeslice). All keys are self-describing. Workload to communicate core (re-)assignments is well-bounded and low in weight. All mandatory bookkeeping workload is well-bounded in weight. type Timeslice = u32; // 80 block amounts.\ntype CoreIndex = u16;\ntype CoreMask = [u8; 10]; // 80-bit bitmap. // 128-bit (16 bytes)\nstruct RegionId { begin: Timeslice, core: CoreIndex, mask: CoreMask,\n}\n// 296-bit (37 bytes)\nstruct RegionRecord { end: Timeslice, owner: AccountId,\n} map Regions = Map; // 40-bit (5 bytes). Could be 32-bit with a more specialised type.\nenum CoreTask { Off, Assigned { target: TaskId }, InstaPool,\n}\n// 120-bit (15 bytes). Could be 14 bytes with a specialised 32-bit `CoreTask`.\nstruct ScheduleItem { mask: CoreMask, // 80 bit task: CoreTask, // 40 bit\n} /// The work we plan on having each core do at a particular time in the future.\ntype Workplan = Map<(Timeslice, CoreIndex), BoundedVec>;\n/// The current workload of each core. This gets updated with workplan as timeslices pass.\ntype Workload = Map>; enum Contributor { System, Private(AccountId),\n} struct ContributionRecord { begin: Timeslice, end: Timeslice, core: CoreIndex, mask: CoreMask, payee: Contributor,\n}\ntype InstaPoolContribution = Map; type SignedTotalMaskBits = u32;\ntype InstaPoolIo = Map; type PoolSize = Value; /// Counter for the total CoreMask which could be dedicated to a pool. `u32` so we don't ever get\n/// an overflow.\ntype TotalMaskBits = u32;\nstruct InstaPoolHistoryRecord { total_contributions: TotalMaskBits, maybe_payout: Option,\n}\n/// Total InstaPool rewards for each Timeslice and the number of core Mask which contributed.\ntype InstaPoolHistory = Map; CoreMask tracks unique \"parts\" of a single core. It is used with interlacing in order to give a unique identifier to each component of any possible interlacing configuration of a core, allowing for simple self-describing keys for all core ownership and allocation information. It also allows for each core's workload to be tracked and updated progressively, keeping ongoing compute costs well-bounded and low. Regions are issued into the Regions map and can be transferred, partitioned and interlaced as the owner desires. Regions can only be tasked if they begin after the current scheduling deadline (if they have missed this, then the region can be auto-trimmed until it is). Once tasked, they are removed from there and a record is placed in Workplan. In addition, if they are contributed to the Instantaneous Coretime Pool, then an entry is placing in InstaPoolContribution and InstaPoolIo. Each timeslice, InstaPoolIo is used to update the current value of PoolSize. A new entry in InstaPoolHistory is inserted, with the total_contributions field of InstaPoolHistoryRecord being informed by the PoolSize value. Each core's has its Workload mutated according to its Workplan for the upcoming timeslice. When Instantaneous Coretime Market Revenues are reported for a particular timeslice from the Relay-chain, this information gets placed in the maybe_payout field of the relevant record of InstaPoolHistory. Payments can be requested made for any records in InstaPoolContribution whose begin is the key for a value in InstaPoolHistory whose maybe_payout is Some. In this case, the total_contributions is reduced by the ContributionRecord's mask and a pro rata amount paid. The ContributionRecord is mutated by incrementing begin, or removed if begin becomes equal to end. Example: // Simple example with a `u16` `CoreMask` and bulk sold in 100 timeslices.\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// First split @ 50\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_1111_1111u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Share half of first 50 blocks\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Sell half of them to Bob\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Bob };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Bob splits first 10 and assigns them to himself.\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1111_1111u16 } => { end: 110u32, owner: Bob };\n{ core: 0u16, begin: 110, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Bob };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Bob shares first 10 3 ways and sells smaller shares to Charlie and Dave\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1100_0000u16 } => { end: 110u32, owner: Charlie };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_0011_0000u16 } => { end: 110u32, owner: Dave };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_0000_1111u16 } => { end: 110u32, owner: Bob };\n{ core: 0u16, begin: 110, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Bob };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Bob assigns to his para B, Charlie and Dave assign to their paras C and D; Alice assigns first 50 to A\nRegions:\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\nWorkplan:\n(100, 0) => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1100_0000u16, task: Assigned(C) }, { mask: 0b0000_0000_0011_0000u16, task: Assigned(D) }, { mask: 0b0000_0000_0000_1111u16, task: Assigned(B) },\n]\n(110, 0) => vec![{ mask: 0b0000_0000_1111_1111u16, task: Assigned(B) }]\n// Alice assigns her remaining 50 timeslices to the InstaPool paying herself:\nRegions: (empty)\nWorkplan:\n(100, 0) => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1100_0000u16, task: Assigned(C) }, { mask: 0b0000_0000_0011_0000u16, task: Assigned(D) }, { mask: 0b0000_0000_0000_1111u16, task: Assigned(B) },\n]\n(110, 0) => vec![{ mask: 0b0000_0000_1111_1111u16, task: Assigned(B) }]\n(150, 0) => vec![{ mask: 0b1111_1111_1111_1111u16, task: InstaPool }]\nInstaPoolContribution:\n{ begin: 150, end: 200, core: 0, mask: 0b1111_1111_1111_1111u16, payee: Alice }\nInstaPoolIo:\n150 => 16\n200 => -16\n// Actual notifications to relay chain.\n// Assumes:\n// - Timeslice is 10 blocks.\n// - Timeslice 0 begins at block #1000.\n// - Relay needs 10 blocks notice of change.\n//\nWorkload: 0 => vec![]\nPoolSize: 0 // Block 990:\nRelay <= assign_core(core: 0u16, begin: 1000, assignment: vec![(A, 8), (C, 2), (D, 2), (B, 4)])\nWorkload: 0 => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1100_0000u16, task: Assigned(C) }, { mask: 0b0000_0000_0011_0000u16, task: Assigned(D) }, { mask: 0b0000_0000_0000_1111u16, task: Assigned(B) },\n]\nPoolSize: 0 // Block 1090:\nRelay <= assign_core(core: 0u16, begin: 1100, assignment: vec![(A, 8), (B, 8)])\nWorkload: 0 => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1111_1111u16, task: Assigned(B) },\n]\nPoolSize: 0 // Block 1490:\nRelay <= assign_core(core: 0u16, begin: 1500, assignment: vec![(Pool, 16)])\nWorkload: 0 => vec![ { mask: 0b1111_1111_1111_1111u16, task: InstaPool },\n]\nPoolSize: 16\nInstaPoolIo:\n200 => -16\nInstaPoolHistory:\n150 => { total_contributions: 16, maybe_payout: None } // Sometime after block 1500:\nInstaPoolHistory:\n150 => { total_contributions: 16, maybe_payout: Some(P) } // Sometime after block 1990:\nInstaPoolIo: (empty)\nPoolSize: 0\nInstaPoolHistory:\n150 => { total_contributions: 16, maybe_payout: Some(P0) }\n151 => { total_contributions: 16, maybe_payout: Some(P1) }\n152 => { total_contributions: 16, maybe_payout: Some(P2) }\n...\n199 => { total_contributions: 16, maybe_payout: Some(P49) } // Sometime later still Alice calls for a payout\nInstaPoolContribution: (empty)\nInstaPoolHistory: (empty)\n// Alice gets rewarded P0 + P1 + ... P49.","breadcrumbs":"RFC-1: Agile Coretime » Notes on Types","id":"194","title":"Notes on Types"},"195":{"body":"Rollout of this proposal comes in several phases: Finalise the specifics of implementation; this may be done through a design document or through a well-documented prototype implementation. Implement the design, including all associated aspects such as unit tests, benchmarks and any support software needed. If any new parachain is required, launch of this. Formal audit of the implementation and any manual testing. Announcement to the various stakeholders of the imminent changes. Software integration and release. Governance upgrade proposal(s). Monitoring of the upgrade process.","breadcrumbs":"RFC-1: Agile Coretime » Rollout","id":"195","title":"Rollout"},"196":{"body":"No specific considerations. Parachains already deployed into the Polkadot UC must have a clear plan of action to migrate to an agile Coretime market. While this proposal does not introduce documentable features per se, adequate documentation must be provided to potential purchasers of Polkadot Coretime. This SHOULD include any alterations to the Polkadot-SDK software collection.","breadcrumbs":"RFC-1: Agile Coretime » Performance, Ergonomics and Compatibility","id":"196","title":"Performance, Ergonomics and Compatibility"},"197":{"body":"Regular testing through unit tests, integration tests, manual testnet tests, zombie-net tests and fuzzing SHOULD be conducted. A regular security review SHOULD be conducted prior to deployment through a review by the Web3 Foundation economic research group. Any final implementation MUST pass a professional external security audit. The proposal introduces no new privacy concerns.","breadcrumbs":"RFC-1: Agile Coretime » Testing, Security and Privacy","id":"197","title":"Testing, Security and Privacy"},"198":{"body":"RFC-3 proposes a means of implementing the high-level allocations within the Relay-chain. RFC-5 proposes the API for interacting with Relay-chain. Additional work should specify the interface for the instantaneous market revenue so that the Coretime-chain can ensure Bulk Coretime placed in the instantaneous market is properly compensated.","breadcrumbs":"RFC-1: Agile Coretime » Future Directions and Related Material","id":"198","title":"Future Directions and Related Material"},"199":{"body":"Unknowns include the economic and resource parameterisations: The initial price of Bulk Coretime. The price-change algorithm between Bulk Coretime sales. The price increase per Bulk Coretime period for renewals. The price decrease graph in the Leadin period for Bulk Coretime sales. The initial price of Instantaneous Coretime. The price-change algorithm for Instantaneous Coretime sales. The percentage of cores to be sold as Bulk Coretime. The fate of revenue collected.","breadcrumbs":"RFC-1: Agile Coretime » Drawbacks, Alternatives and Unknowns","id":"199","title":"Drawbacks, Alternatives and Unknowns"},"2":{"body":"This RFC proposes changing the current deposit requirements on the Polkadot and Kusama Asset Hub for creating NFT collection, minting an individual NFT, and lowering it's coresponding metadata and attribute deposit. The objective is to lower the barrier to entry for NFT creators, fostering a more inclusive and vibrant ecosystem while maintaining network integrity and preventing spam.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Summary","id":"2","title":"Summary"},"20":{"body":"The change does not impact compatibility as redeposit function is already implemented.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Compatibility","id":"20","title":"Compatibility"},"200":{"body":"Robert Habermeier initially wrote on the subject of Polkadot blockspace-centric in the article Polkadot Blockspace over Blockchains . While not going into details, the article served as an early reframing piece for moving beyond one-slot-per-chain models and building out secondary market infrastructure for resource allocation.","breadcrumbs":"RFC-1: Agile Coretime » Prior Art and References","id":"200","title":"Prior Art and References"},"201":{"body":"(source) Table of Contents RFC-5: Coretime Interface Summary Motivation Requirements Stakeholders Explanation UMP Message Types DMP Message Types Realistic Limits of the Usage Performance, Ergonomics and Compatibility Testing, Security and Privacy Future Directions and Related Material Drawbacks, Alternatives and Unknowns Prior Art and References Start Date 06 July 2023 Description Interface for manipulating the usage of cores on the Polkadot Ubiquitous Computer. Authors Gavin Wood, Robert Habermeier","breadcrumbs":"RFC-5: Coretime Interface » RFC-5: Coretime Interface","id":"201","title":"RFC-5: Coretime Interface"},"202":{"body":"In the Agile Coretime model of the Polkadot Ubiquitous Computer, as proposed in RFC-1 and RFC-3, it is necessary for the allocating parachain (envisioned to be one or more pallets on a specialised Brokerage System Chain) to communicate the core assignments to the Relay-chain, which is responsible for ensuring those assignments are properly enacted. This is a proposal for the interface which will exist around the Relay-chain in order to communicate this information and instructions.","breadcrumbs":"RFC-5: Coretime Interface » Summary","id":"202","title":"Summary"},"203":{"body":"The background motivation for this interface is splitting out coretime allocation functions and secondary markets from the Relay-chain onto System parachains. A well-understood and general interface is necessary for ensuring the Relay-chain receives coretime allocation instructions from one or more System chains without introducing dependencies on the implementation details of either side.","breadcrumbs":"RFC-5: Coretime Interface » Motivation","id":"203","title":"Motivation"},"204":{"body":"The interface MUST allow the Relay-chain to be scheduled on a low-latency basis. Individual cores MUST be schedulable, both in full to a single task (a ParaId or the Instantaneous Coretime Pool) or to many unique tasks in differing ratios. Typical usage of the interface SHOULD NOT overload the VMP message system. The interface MUST allow for the allocating chain to be notified of all accounting information relevant for making accurate rewards for contributing to the Instantaneous Coretime Pool. The interface MUST allow for Instantaneous Coretime Market Credits to be communicated. The interface MUST allow for the allocating chain to instruct changes to the number of cores which it is able to allocate. The interface MUST allow for the allocating chain to be notified of changes to the number of cores which are able to be allocated by the allocating chain.","breadcrumbs":"RFC-5: Coretime Interface » Requirements","id":"204","title":"Requirements"},"205":{"body":"Primary stakeholder sets are: Developers of the Relay-chain core-management logic. Developers of the Brokerage System Chain and its pallets. Socialization: This content of this RFC was discussed in the Polkdot Fellows channel.","breadcrumbs":"RFC-5: Coretime Interface » Stakeholders","id":"205","title":"Stakeholders"},"206":{"body":"The interface has two sections: The messages which the Relay-chain is able to receive from the allocating parachain (the UMP message types ), and messages which the Relay-chain is able to send to the allocating parachain (the DMP message types ). These messages are expected to be able to be implemented in a well-known pallet and called with the XCM Transact instruction. Future work may include these messages being introduced into the XCM standard.","breadcrumbs":"RFC-5: Coretime Interface » Explanation","id":"206","title":"Explanation"},"207":{"body":"request_core_count Prototype: fn request_core_count( count: u16,\n) Requests the Relay-chain to alter the number of schedulable cores to count. Under normal operation, the Relay-chain SHOULD send a notify_core_count(count) message back. request_revenue_info_at Prototype: fn request_revenue_at( when: BlockNumber,\n) Requests that the Relay-chain send a notify_revenue message back at or soon after Relay-chain block number when whose until parameter is equal to when. The period in to the past which when is allowed to be may be limited; if so the limit should be understood on a channel outside of this proposal. In the case that the request cannot be serviced because when is too old a block then a notify_revenue message must still be returned, but its revenue field may be None. credit_account Prototype: fn credit_account( who: AccountId, amount: Balance,\n) Instructs the Relay-chain to add the amount of DOT to the Instantaneous Coretime Market Credit account of who. It is expected that Instantaneous Coretime Market Credit on the Relay-chain is NOT transferrable and only redeemable when used to assign cores in the Instantaneous Coretime Pool. assign_core Prototype: type PartsOf57600 = u16;\nenum CoreAssignment { InstantaneousPool, Task(ParaId),\n}\nfn assign_core( core: CoreIndex, begin: BlockNumber, assignment: Vec<(CoreAssignment, PartsOf57600)>, end_hint: Option,\n) Requirements: assert!(core < core_count);\nassert!(targets.iter().map(|x| x.0).is_sorted());\nassert_eq!(targets.iter().map(|x| x.0).unique().count(), targets.len());\nassert_eq!(targets.iter().map(|x| x.1).sum(), 57600); Where: core_count is assumed to be the sole parameter in the last received notify_core_count message. Instructs the Relay-chain to ensure that the core indexed as core is utilised for a number of assignments in specific ratios given by assignment starting as soon after begin as possible. Core assignments take the form of a CoreAssignment value which can either task the core to a ParaId value or indicate that the core should be used in the Instantaneous Pool. Each assignment comes with a ratio value, represented as the numerator of the fraction with a denominator of 57,600. If end_hint is Some and the inner is greater than the current block number, then the Relay-chain should optimize in the expectation of receiving a new assign_core(core, ...) message at or prior to the block number of the inner value. Specific functionality should remain unchanged regardless of the end_hint value. On the choice of denominator: 57,600 is a very composite number which factors into: 2 ** 8, 3 ** 2, 5 ** 2. By using it as the denominator we allow for various useful fractions to be perfectly represented including thirds, quarters, fifths, tenths, 80ths, percent and 256ths.","breadcrumbs":"RFC-5: Coretime Interface » UMP Message Types","id":"207","title":"UMP Message Types"},"208":{"body":"notify_core_count Prototype: fn notify_core_count( count: u16,\n) Indicate that from this block onwards, the range of acceptable values of the core parameter of assign_core message is [0, count). assign_core will be a no-op if provided with a value for core outside of this range. notify_revenue_info Prototype: fn notify_revenue_info( until: BlockNumber, revenue: Option,\n) Provide the amount of revenue accumulated from Instantaneous Coretime Sales from Relay-chain block number last_until to until, not including until itself. last_until is defined as being the until argument of the last notify_revenue message sent, or zero for the first call. If revenue is None, this indicates that the information is no longer available. This explicitly disregards the possibility of multiple parachains requesting and being notified of revenue information. The Relay-chain must be configured to ensure that only a single revenue information destination exists.","breadcrumbs":"RFC-5: Coretime Interface » DMP Message Types","id":"208","title":"DMP Message Types"},"209":{"body":"For request_revenue_info, a successful request should be possible if when is no less than the Relay-chain block number on arrival of the message less 100,000. For assign_core, a successful request should be possible if begin is no less than the Relay-chain block number on arrival of the message plus 10 and workload contains no more than 100 items.","breadcrumbs":"RFC-5: Coretime Interface » Realistic Limits of the Usage","id":"209","title":"Realistic Limits of the Usage"},"21":{"body":"There remain unresolved questions regarding the implementation of a function-based pricing model for deposits and the feasibility of linking deposits to a USD(x) value. These aspects require further exploration and discussion to ascertain their viability and potential impact on the ecosystem.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Unresolved Questions","id":"21","title":"Unresolved Questions"},"210":{"body":"No specific considerations.","breadcrumbs":"RFC-5: Coretime Interface » Performance, Ergonomics and Compatibility","id":"210","title":"Performance, Ergonomics and Compatibility"},"211":{"body":"Standard Polkadot testing and security auditing applies. The proposal introduces no new privacy concerns.","breadcrumbs":"RFC-5: Coretime Interface » Testing, Security and Privacy","id":"211","title":"Testing, Security and Privacy"},"212":{"body":"RFC-1 proposes a means of determining allocation of Coretime using this interface. RFC-3 proposes a means of implementing the high-level allocations within the Relay-chain.","breadcrumbs":"RFC-5: Coretime Interface » Future Directions and Related Material","id":"212","title":"Future Directions and Related Material"},"213":{"body":"None at present.","breadcrumbs":"RFC-5: Coretime Interface » Drawbacks, Alternatives and Unknowns","id":"213","title":"Drawbacks, Alternatives and Unknowns"},"214":{"body":"None.","breadcrumbs":"RFC-5: Coretime Interface » Prior Art and References","id":"214","title":"Prior Art and References"},"215":{"body":"(source) Table of Contents RFC-0007: System Collator Selection Summary Motivation Requirements Stakeholders Explanation Set Size Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Written Discussions Prior Feedback and Input From Unresolved Questions Future Directions and Related Material Start Date 07 July 2023 Description Mechanism for selecting collators of system chains. Authors Joe Petrowski","breadcrumbs":"RFC-0007: System Collator Selection » RFC-0007: System Collator Selection","id":"215","title":"RFC-0007: System Collator Selection"},"216":{"body":"As core functionality moves from the Relay Chain into system chains, so increases the reliance on the liveness of these chains for the use of the network. It is not economically scalable, nor necessary from a game-theoretic perspective, to pay collators large rewards. This RFC proposes a mechanism -- part technical and part social -- for ensuring reliable collator sets that are resilient to attemps to stop any subsytem of the Polkadot protocol.","breadcrumbs":"RFC-0007: System Collator Selection » Summary","id":"216","title":"Summary"},"217":{"body":"In order to guarantee access to Polkadot's system, the collators on its system chains must propose blocks (provide liveness) and allow all transactions to eventually be included. That is, some collators may censor transactions, but there must exist one collator in the set who will include a given transaction. In fact, all collators may censor varying subsets of transactions, but as long as no transaction is in the intersection of every subset, it will eventually be included. The objective of this RFC is to propose a mechanism to select such a set on each system chain. While the network as a whole uses staking (and inflationary rewards) to attract validators, collators face different challenges in scale and have lower security assumptions than validators. Regarding scale, there exist many system chains, and it is economically expensive to pay collators a premium. Likewise, any staked DOT for collation is not staked for validation. Since collator sets do not need to meet Byzantine Fault Tolerance criteria, staking as the primary mechanism for collator selection would remove stake that is securing BFT assumptions, making the network less secure. Another problem with economic scalability relates to the increasing number of system chains, and corresponding increase in need for collators (i.e., increase in collator slots). \"Good\" (highly available, non-censoring) collators will not want to compete in elections on many chains when they could use their resources to compete in the more profitable validator election. Such dilution decreases the required bond on each chain, leaving them vulnerable to takeover by hostile collator groups. This RFC proposes a system whereby collation is primarily an infrastructure service, with the on-chain Treasury reimbursing costs of semi-trusted node operators, referred to as \"Invulnerables\". The system need not trust the individual operators, only that as a set they would be resilient to coordinated attempts to stop a single chain from halting or to censor a particular subset of transactions. In the case that users do not trust this set, this RFC also proposes that each chain always have available collator positions that can be acquired by anyone by placing a bond.","breadcrumbs":"RFC-0007: System Collator Selection » Motivation","id":"217","title":"Motivation"},"218":{"body":"System MUST have at least one valid collator for every chain. System MUST allow anyone to become a collator, provided they reserve/hold enough DOT. System SHOULD select a set of collators with reasonable expectation that the set will not collude to censor any subset of transactions. Collators selected by governance SHOULD have a reasonable expectation that the Treasury will reimburse their operating costs.","breadcrumbs":"RFC-0007: System Collator Selection » Requirements","id":"218","title":"Requirements"},"219":{"body":"Infrastructure providers (people who run validator/collator nodes) Polkadot Treasury","breadcrumbs":"RFC-0007: System Collator Selection » Stakeholders","id":"219","title":"Stakeholders"},"22":{"body":"We recommend initially lowering the deposit to the suggested levels. Subsequently, based on the outcomes and feedback, we can continue discussions on more complex models such as function-based pricing or currency-linked deposits. If accepted, this RFC could pave the way for further discussions and proposals aimed at enhancing the inclusivity and accessibility of the Polkadot ecosystem.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Future Directions and Related Material","id":"22","title":"Future Directions and Related Material"},"220":{"body":"This protocol builds on the existing Collator Selection pallet and its notion of Invulnerables. Invulnerables are collators (identified by their AccountIds) who will be selected as part of the collator set every session. Operations relating to the management of the Invulnerables are done through privileged, governance origins. The implementation should maintain an API for adding and removing Invulnerable collators. In addition to Invulnerables, there are also open slots for \"Candidates\". Anyone can register as a Candidate by placing a fixed bond. However, with a fixed bond and fixed number of slots, there is an obvious selection problem: The slots fill up without any logic to replace their occupants. This RFC proposes that the collator selection protocol allow Candidates to increase (and decrease) their individual bonds, sort the Candidates according to bond, and select the top N Candidates. The selection and changeover should be coordinated by the session manager. A FRAME pallet already exists for sorting (\"bagging\") \"top N\" groups, the Bags List pallet . This pallet's SortedListProvider should be integrated into the session manager of the Collator Selection pallet. Despite the lack of apparent economic incentives (i.e., inflation), several reasons exist why one may want to bond funds to participate in the Candidates election, for example: They want to build credibility to be selected as Invulnerable; They want to ensure availability of an application, e.g. a stablecoin issuer might run a collator on Asset Hub to ensure transactions in its asset are included in blocks; They fear censorship themselves, e.g. a voter might think their votes are being censored from governance, so they run a collator on the governance chain to include their votes. Unlike the fixed-bond mechanism that fills up its Candidates, the election mechanism ensures that anyone can join the collator set by placing the Nth highest bond.","breadcrumbs":"RFC-0007: System Collator Selection » Explanation","id":"220","title":"Explanation"},"221":{"body":"In order to achieve the requirements listed under Motivation , it is reasonable to have approximately: 20 collators per system chain, of which 15 are Invulnerable, and five are elected by bond.","breadcrumbs":"RFC-0007: System Collator Selection » Set Size","id":"221","title":"Set Size"},"222":{"body":"The primary drawback is a reliance on governance for continued treasury funding of infrastructure costs for Invulnerable collators.","breadcrumbs":"RFC-0007: System Collator Selection » Drawbacks","id":"222","title":"Drawbacks"},"223":{"body":"The vast majority of cases can be covered by unit testing. Integration test should ensure that the Collator Selection UpdateOrigin, which has permission to modify the Invulnerables and desired number of Candidates, can handle updates over XCM from the system's governance location.","breadcrumbs":"RFC-0007: System Collator Selection » Testing, Security, and Privacy","id":"223","title":"Testing, Security, and Privacy"},"224":{"body":"This proposal has very little impact on most users of Polkadot, and should improve the performance of system chains by reducing the number of missed blocks.","breadcrumbs":"RFC-0007: System Collator Selection » Performance, Ergonomics, and Compatibility","id":"224","title":"Performance, Ergonomics, and Compatibility"},"225":{"body":"As chains have strict PoV size limits, care must be taken in the PoV impact of the session manager. Appropriate benchmarking and tests should ensure that conservative limits are placed on the number of Invulnerables and Candidates.","breadcrumbs":"RFC-0007: System Collator Selection » Performance","id":"225","title":"Performance"},"226":{"body":"The primary group affected is Candidate collators, who, after implementation of this RFC, will need to compete in a bond-based election rather than a race to claim a Candidate spot.","breadcrumbs":"RFC-0007: System Collator Selection » Ergonomics","id":"226","title":"Ergonomics"},"227":{"body":"This RFC is compatible with the existing implementation and can be handled via upgrades and migration.","breadcrumbs":"RFC-0007: System Collator Selection » Compatibility","id":"227","title":"Compatibility"},"228":{"body":"","breadcrumbs":"RFC-0007: System Collator Selection » Prior Art and References","id":"228","title":"Prior Art and References"},"229":{"body":"GitHub: Collator Selection Roadmap GitHub: Revisit Collator Selection Mechanism Polkadot Forum: Economic Model for System Para Collators","breadcrumbs":"RFC-0007: System Collator Selection » Written Discussions","id":"229","title":"Written Discussions"},"23":{"body":"(source) Table of Contents RFC-0026: Sassafras Consensus Protocol Abstract 1. Motivation 1.1. Relevance to Implementors 1.2. Supporting Sassafras for Polkadot 2. Stakeholders 2.1. Blockchain Developers 2.2. Polkadot Ecosystem Contributors 3. Notation and Convention 3.1. Data Structures Definitions and Encoding 3.2. Pseudo-Code 3.3. Incremental Introduction of Types and Functions 4. Protocol Introduction 4.1. Submission of Candidate Tickets 4.2. Validation of Candidate Tickets 4.3. Tickets and Slots Binding 4.4. Claim of Ticket Ownership 4.5. Validation of Ticket Ownership 5. Bandersnatch VRFs Cryptographic Primitives 5.1. VRF Input 5.2. VRF PreOutput 5.3. VRF Signature Data 5.4. VRF Signature 6. Sassafras Protocol 6.1. Epoch's First Block 6.2. Creation and Submission of Candidate Tickets 6.3. Validation of candidate tickets 6.4. Ticket-Slot Binding 6.5. Slot Claim Production 6.6. Slot Claim Verification 6.6.1. Primary Method 6.7. Randomness Accumulator 7. Drawbacks 8. Testing, Security, and Privacy 9. Performance, Ergonomics, and Compatibility 9.1. Performance 9.2. Ergonomics 9.3. Compatibility 10. Prior Art and References 11. Unresolved Questions 12. Future Directions and Related Material 12.1. Interactions with On-Chain Code 12.2. Deployment Strategies 12.3. ZK-SNARK SRS Initialization 12.4. Anonymous Submission of Tickets. Start Date September 06, 2023 Description Sassafras consensus protocol description and structures Authors Davide Galassi","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » RFC-0026: Sassafras Consensus Protocol","id":"23","title":"RFC-0026: Sassafras Consensus Protocol"},"230":{"body":"Kian Paimani Jeff Burdges Rob Habermeier SR Labs Auditors Current collators including Paranodes, Stake Plus, Turboflakes, Peter Mensik, SIK, and many more.","breadcrumbs":"RFC-0007: System Collator Selection » Prior Feedback and Input From","id":"230","title":"Prior Feedback and Input From"},"231":{"body":"None at this time.","breadcrumbs":"RFC-0007: System Collator Selection » Unresolved Questions","id":"231","title":"Unresolved Questions"},"232":{"body":"There may exist in the future system chains for which this model of collator selection is not appropriate. These chains should be evaluated on a case-by-case basis.","breadcrumbs":"RFC-0007: System Collator Selection » Future Directions and Related Material","id":"232","title":"Future Directions and Related Material"},"233":{"body":"(source) Table of Contents RFC-0008: Store parachain bootnodes in relay chain DHT Summary Motivation Stakeholders Explanation DHT provider registration New networking protocol Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-07-14 Description Parachain bootnodes shall register themselves in the DHT of the relay chain Authors Pierre Krieger","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » RFC-0008: Store parachain bootnodes in relay chain DHT","id":"233","title":"RFC-0008: Store parachain bootnodes in relay chain DHT"},"234":{"body":"The full nodes of the Polkadot peer-to-peer network maintain a distributed hash table (DHT), which is currently used for full nodes discovery and validators discovery purposes. This RFC proposes to extend this DHT to be used to discover full nodes of the parachains of Polkadot.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Summary","id":"234","title":"Summary"},"235":{"body":"The maintenance of bootnodes has long been an annoyance for everyone. When a bootnode is newly-deployed or removed, every chain specification must be updated in order to take the update into account. This has lead to various non-optimal solutions, such as pulling chain specifications from GitHub repositories. When it comes to RPC nodes, UX developers often have trouble finding up-to-date addresses of parachain RPC nodes. With the ongoing migration from RPC nodes to light clients, similar problems would happen with chain specifications as well. Furthermore, there exists multiple different possible variants of a certain chain specification: with the non-raw storage, with the raw storage, with just the genesis trie root hash, with or without checkpoint, etc. All of this creates confusion. Removing the need for parachain developers to be aware of and manage these different versions would be beneficial. Since the PeerId and addresses of bootnodes needs to be stable, extra maintenance work is required from the chain maintainers. For example, they need to be extra careful when migrating nodes within their infrastructure. In some situations, bootnodes are put behind domain names, which also requires maintenance work. Because the list of bootnodes in chain specifications is so annoying to modify, the consequence is that the number of bootnodes is rather low (typically between 2 and 15). In order to better resist downtimes and DoS attacks, a better solution would be to use every node of a certain chain as potential bootnode, rather than special-casing some specific nodes. While this RFC doesn't solve these problems for relay chains, it aims at solving it for parachains by storing the list of all the full nodes of a parachain on the relay chain DHT. Assuming that this RFC is implemented, and that light clients are used, deploying a parachain wouldn't require more work than registering it onto the relay chain and starting the collators. There wouldn't be any need for special infrastructure nodes anymore.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Motivation","id":"235","title":"Motivation"},"236":{"body":"This RFC has been opened on my own initiative because I think that this is a good technical solution to a usability problem that many people are encountering and that they don't realize can be solved.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Stakeholders","id":"236","title":"Stakeholders"},"237":{"body":"The content of this RFC only applies for parachains and parachain nodes that are \"Substrate-compatible\". It is in no way mandatory for parachains to comply to this RFC. Note that \"Substrate-compatible\" is very loosely defined as \"implements the same mechanisms and networking protocols as Substrate\". The author of this RFC believes that \"Substrate-compatible\" should be very precisely specified, but there is controversy on this topic. While a lot of this RFC concerns the implementation of parachain nodes, it makes use of the resources of the Polkadot chain, and as such it is important to describe them in the Polkadot specification. This RFC adds two mechanisms: a registration in the DHT, and a new networking protocol.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Explanation","id":"237","title":"Explanation"},"238":{"body":"This RFC heavily relies on the functionalities of the Kademlia DHT already in use by Polkadot. You can find a link to the specification here . Full nodes of a parachain registered on Polkadot should register themselves onto the Polkadot DHT as the providers of a key corresponding to the parachain that they are serving, as described in the Content provider advertisement section of the specification. This uses the ADD_PROVIDER system of libp2p-kademlia. This key is: sha256(concat(scale_compact(para_id), randomness)) where the value of randomness can be found in the randomness field when calling the BabeApi_currentEpoch function. For example, for a para_id equal to 1000, and at the time of writing of this RFC (July 14th 2023 at 09:13 UTC), it is sha(0xa10f12872447958d50aa7b937b0106561a588e0e2628d33f81b5361b13dbcf8df708), which is equal to 0x483dd8084d50dbbbc962067f216c37b627831d9339f5a6e426a32e3076313d87. In order to avoid downtime when the key changes, parachain full nodes should also register themselves as a secondary key that uses a value of randomness equal to the randomness field when calling BabeApi_nextEpoch. Implementers should be aware that their implementation of Kademlia might already hash the key before XOR'ing it. The key is not meant to be hashed twice. The compact SCALE encoding has been chosen in order to avoid problems related to the number of bytes and endianness of the para_id.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » DHT provider registration","id":"238","title":"DHT provider registration"},"239":{"body":"A new request-response protocol should be added, whose name is /91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3/paranode (that hexadecimal number is the genesis hash of the Polkadot chain, and should be adjusted appropriately for Kusama and others). The request consists in a SCALE-compact-encoded para_id. For example, for a para_id equal to 1000, this is 0xa10f. Note that because this is a request-response protocol, the request is always prefixed with its length in bytes. While the body of the request is simply the SCALE-compact-encoded para_id, the data actually sent onto the substream is both the length and body. The response consists in a protobuf struct, defined as: syntax = \"proto2\"; message Response { // Peer ID of the node on the parachain side. bytes peer_id = 1; // Multiaddresses of the parachain side of the node. The list and format are the same as for the `listenAddrs` field of the `identify` protocol. repeated bytes addrs = 2; // Genesis hash of the parachain. Used to determine the name of the networking protocol to connect to the parachain. Untrusted. bytes genesis_hash = 3; // So-called \"fork ID\" of the parachain. Used to determine the name of the networking protocol to connect to the parachain. Untrusted. optional string fork_id = 4;\n}; The maximum size of a response is set to an arbitrary 16kiB. The responding side should make sure to conform to this limit. Given that fork_id is typically very small and that the only variable-length field is addrs, this is easily achieved by limiting the number of addresses. Implementers should be aware that addrs might be very large, and are encouraged to limit the number of addrs to an implementation-defined value.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » New networking protocol","id":"239","title":"New networking protocol"},"24":{"body":"Sassafras is a novel consensus protocol designed to address the recurring fork-related challenges encountered in other lottery-based protocols. The protocol aims to create a mapping between each epoch's slots and the validators set while ensuring that the identity of validators assigned to the slots remains undisclosed until the slot is actively claimed during block production.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » Abstract","id":"24","title":"Abstract"},"240":{"body":"The peer_id and addrs fields are in theory not strictly needed, as the PeerId and addresses could be always equal to the PeerId and addresses of the node being registered as the provider and serving the response. However, the Cumulus implementation currently uses two different networking stacks, one of the parachain and one for the relay chain, using two separate PeerIds and addresses, and as such the PeerId and addresses of the other networking stack must be indicated. Asking them to use only one networking stack wouldn't feasible in a realistic time frame. The values of the genesis_hash and fork_id fields cannot be verified by the requester and are expected to be unused at the moment. Instead, a client that desires connecting to a parachain is expected to obtain the genesis hash and fork ID of the parachain from the parachain chain specification. These fields are included in the networking protocol nonetheless in case an acceptable solution is found in the future, and in order to allow use cases such as discovering parachains in a not-strictly-trusted way.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Drawbacks","id":"240","title":"Drawbacks"},"241":{"body":"Because not all nodes want to be used as bootnodes, implementers are encouraged to provide a way to disable this mechanism. However, it is very much encouraged to leave this mechanism on by default for all parachain nodes. This mechanism doesn't add or remove any security by itself, as it relies on existing mechanisms. However, if the principle of chain specification bootnodes is entirely replaced with the mechanism described in this RFC (which is the objective), then it becomes important whether the mechanism in this RFC can be abused in order to make a parachain unreachable. Due to the way Kademlia works, it would become the responsibility of the 20 Polkadot nodes whose sha256(peer_id) is closest to the key (described in the explanations section) to store the list of bootnodes of each parachain. Furthermore, when a large number of providers (here, a provider is a bootnode) are registered, only the providers closest to the key are kept, up to a certain implementation-defined limit. For this reason, an attacker can abuse this mechanism by randomly generating libp2p PeerIds until they find the 20 entries closest to the key representing the target parachain. They are then in control of the parachain bootnodes. Because the key changes periodically and isn't predictable, and assuming that the Polkadot DHT is sufficiently large, it is not realistic for an attack like this to be maintained in the long term. Furthermore, parachain clients are expected to cache a list of known good nodes on their disk. If the mechanism described in this RFC went down, it would only prevent new nodes from accessing the parachain, while clients that have connected before would not be affected.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Testing, Security, and Privacy","id":"241","title":"Testing, Security, and Privacy"},"242":{"body":"","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Performance, Ergonomics, and Compatibility","id":"242","title":"Performance, Ergonomics, and Compatibility"},"243":{"body":"The DHT mechanism generally has a low overhead, especially given that publishing providers is done only every 24 hours. Doing a Kademlia iterative query then sending a provider record shouldn't take more than around 50 kiB in total of bandwidth for the parachain bootnode. Assuming 1000 parachain full nodes, the 20 Polkadot full nodes corresponding to a specific parachain will each receive a sudden spike of a few megabytes of networking traffic when the key rotates. Again, this is relatively negligible. If this becomes a problem, one can add a random delay before a parachain full node registers itself to be the provider of the key corresponding to BabeApi_next_epoch. Maybe the biggest uncertainty is the traffic that the 20 Polkadot full nodes will receive from light clients that desire knowing the bootnodes of a parachain. Light clients are generally encouraged to cache the peers that they use between restarts, so they should only query these 20 Polkadot full nodes at their first initialization. If this every becomes a problem, this value of 20 is an arbitrary constant that can be increased for more redundancy.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Performance","id":"243","title":"Performance"},"244":{"body":"Irrelevant.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Ergonomics","id":"244","title":"Ergonomics"},"245":{"body":"Irrelevant.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Compatibility","id":"245","title":"Compatibility"},"246":{"body":"None.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Prior Art and References","id":"246","title":"Prior Art and References"},"247":{"body":"While it fundamentally doesn't change much to this RFC, using BabeApi_currentEpoch and BabeApi_nextEpoch might be inappropriate. I'm not familiar enough with good practices within the runtime to have an opinion here. Should it be an entirely new pallet?","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Unresolved Questions","id":"247","title":"Unresolved Questions"},"248":{"body":"It is possible that in the future a client could connect to a parachain without having to rely on a trusted parachain specification.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Future Directions and Related Material","id":"248","title":"Future Directions and Related Material"},"249":{"body":"(source) Table of Contents RFC-0012: Process for Adding New System Collectives Summary Motivation Stakeholders Explanation Removing Collectives Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Prior Art and References Unresolved Questions Start Date 24 July 2023 Description A process for adding new (and removing existing) system collectives. Authors Joe Petrowski","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » RFC-0012: Process for Adding New System Collectives","id":"249","title":"RFC-0012: Process for Adding New System Collectives"},"25":{"body":"Sassafras Protocol has been rigorously detailed in a comprehensive research paper authored by the Web3 foundation research team. This RFC is primarily intended to detail the critical implementation aspects vital for ensuring interoperability and to clarify certain aspects that are left open by the research paper and thus subject to interpretation during implementation.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 1. Motivation","id":"25","title":"1. Motivation"},"250":{"body":"Since the introduction of the Collectives parachain, many groups have expressed interest in forming new -- or migrating existing groups into -- on-chain collectives. While adding a new collective is relatively simple from a technical standpoint, the Fellowship will need to merge new pallets into the Collectives parachain for each new collective. This RFC proposes a means for the network to ratify a new collective, thus instructing the Fellowship to instate it in the runtime.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Summary","id":"250","title":"Summary"},"251":{"body":"Many groups have expressed interest in representing collectives on-chain. Some of these include: Parachain technical fellowship (new) Fellowship(s) for media, education, and evangelism (new) Polkadot Ambassador Program (existing) Anti-Scam Team (existing) Collectives that form part of the core Polkadot protocol should have a mandate to serve the Polkadot network. However, as part of the Polkadot protocol, the Fellowship, in its capacity of maintaining system runtimes, will need to include modules and configurations for each collective. Once a group has developed a value proposition for the Polkadot network, it should have a clear path to having its collective accepted on-chain as part of the protocol. Acceptance should direct the Fellowship to include the new collective with a given initial configuration into the runtime. However, the network, not the Fellowship, should ultimately decide which collectives are in the interest of the network.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Motivation","id":"251","title":"Motivation"},"252":{"body":"Polkadot stakeholders who would like to organize on-chain. Technical Fellowship, in its role of maintaining system runtimes.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Stakeholders","id":"252","title":"Stakeholders"},"253":{"body":"The group that wishes to operate an on-chain collective should publish the following information: Charter, including the collective's mandate and how it benefits Polkadot. This would be similar to the Fellowship Manifesto . Seeding recommendation. Member types, i.e. should members be individuals or organizations. Member management strategy, i.e. how do members join and get promoted, if applicable. How much, if at all, members should get paid in salary. Any special origins this Collective should have outside its self. For example, the Fellowship can whitelist calls for referenda via the WhitelistOrigin. This information could all be in a single document or, for example, a GitHub repository. After publication, members should seek feedback from the community and Technical Fellowship, and make any revisions needed. When the collective believes the proposal is ready, they should bring a remark with the text APPROVE_COLLECTIVE(\"{collective name}, {commitment}\") to a Root origin referendum. The proposer should provide instructions for generating commitment. The passing of this referendum would be unequivocal direction to the Fellowship that this collective should be part of the Polkadot runtime. Note: There is no need for a REJECT referendum. Proposals that have not been approved are simply not included in the runtime.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Explanation","id":"253","title":"Explanation"},"254":{"body":"If someone believes that an existing collective is not acting in the interest of the network or in accordance with its charter, they should likewise have a means to instruct the Fellowship to remove that collective from Polkadot. An on-chain remark from the Root origin with the text REMOVE_COLLECTIVE(\"{collective name}, {para ID}, [{pallet indices}]\") would instruct the Fellowship to remove the collective via the listed pallet indices on paraId. Should someone want to construct such a remark, they should have a reasonable expectation that a member of the Fellowship would help them identify the pallet indices associated with a given collective, whether or not the Fellowship member agrees with removal. Collective removal may also come with other governance calls, for example voiding any scheduled Treasury spends that would fund the given collective.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Removing Collectives","id":"254","title":"Removing Collectives"},"255":{"body":"Passing a Root origin referendum is slow. However, given the network's investment (in terms of code maintenance and salaries) in a new collective, this is an appropriate step.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Drawbacks","id":"255","title":"Drawbacks"},"256":{"body":"No impacts.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Testing, Security, and Privacy","id":"256","title":"Testing, Security, and Privacy"},"257":{"body":"Generally all new collectives will be in the Collectives parachain. Thus, performance impacts should strictly be limited to this parachain and not affect others. As the majority of logic for collectives is generalized and reusable, we expect most collectives to be instances of similar subsets of modules. That is, new collectives should generally be compatible with UIs and other services that provide collective-related functionality, with little modifications to support new ones.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Performance, Ergonomics, and Compatibility","id":"257","title":"Performance, Ergonomics, and Compatibility"},"258":{"body":"The launch of the Technical Fellowship, see the initial forum post .","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Prior Art and References","id":"258","title":"Prior Art and References"},"259":{"body":"None at this time.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Unresolved Questions","id":"259","title":"Unresolved Questions"},"26":{"body":"This RFC focuses on providing implementors with the necessary insights into the protocol's operation. In instances of inconsistency between this document and the research paper, this RFC should be considered authoritative to eliminate ambiguities and ensure interoperability.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 1.1. Relevance to Implementors","id":"26","title":"1.1. Relevance to Implementors"},"260":{"body":"(source) Table of Contents RFC-0014: Improve locking mechanism for parachains Summary Motivation Requirements Stakeholders Explanation Status quo Proposed changes Migration Drawbacks Testing, Security, and Privacy Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date July 25, 2023 Description Improve locking mechanism for parachains Authors Bryan Chen","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » RFC-0014: Improve locking mechanism for parachains","id":"260","title":"RFC-0014: Improve locking mechanism for parachains"},"261":{"body":"This RFC proposes a set of changes to the parachain lock mechanism. The goal is to allow a parachain manager to self-service the parachain without root track governance action. This is achieved by remove existing lock conditions and only lock a parachain when: A parachain manager explicitly lock the parachain OR a parachain block is produced successfully","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Summary","id":"261","title":"Summary"},"262":{"body":"The manager of a parachain has permission to manage the parachain when the parachain is unlocked. Parachains are by default locked when onboarded to a slot. This requires the parachain wasm/genesis must be valid, otherwise a root track governance action on relaychain is required to update the parachain. The current reliance on root track governance actions for managing parachains can be time-consuming and burdensome. This RFC aims to address this technical difficulty by allowing parachain managers to take self-service actions, rather than relying on general public voting. The key scenarios this RFC seeks to improve are: Rescue a parachain with invalid wasm/genesis. While we have various resources and templates to build a new parachain, it is still not a trivial task. It is very easy to make a mistake and resulting an invalid wasm/genesis. With lack of tools to help detect those issues [1] , it is very likely that the issues are only discovered after the parachain is onboarded on a slot. In this case, the parachain is locked and the parachain team has to go through a lengthy governance process to rescue the parachain. Perform lease renewal for an existing parachain. One way to perform lease renewal for a parachain is by doing a least swap with another parachain with a longer lease. This requires the other parachain must be operational and able to perform XCM transact call into relaychain to dispatch the swap call. Combined with the overhead of setting up a new parachain, this is an time consuming and expensive process. Ideally, the parachain manager should be able to perform the lease swap call without having a running parachain [2] .","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Motivation","id":"262","title":"Motivation"},"263":{"body":"A parachain manager SHOULD be able to rescue a parachain by updating the wasm/genesis without root track governance action. A parachain manager MUST NOT be able to update the wasm/genesis if the parachain is locked. A parachain SHOULD be locked when it successfully produced the first block. A parachain manager MUST be able to perform lease swap without having a running parachain.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Requirements","id":"263","title":"Requirements"},"264":{"body":"Parachain teams Parachain users","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Stakeholders","id":"264","title":"Stakeholders"},"265":{"body":"","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Explanation","id":"265","title":"Explanation"},"266":{"body":"A parachain can either be locked or unlocked [3] . With parachain locked, the parachain manager does not have any privileges. With parachain unlocked, the parachain manager can perform following actions with the paras_registrar pallet: deregister: Deregister a Para Id, freeing all data and returning any deposit. swap: Initiate or confirm lease swap with another parachain. add_lock: Lock the parachain. schedule_code_upgrade: Schedule a parachain upgrade to update parachain wasm. set_current_head: Set the parachain's current head. Currently, a parachain can be locked with following conditions: From add_lock call, which can be dispatched by relaychain Root origin, the parachain, or the parachain manager. When a parachain is onboarded on a slot [4] . When a crowdloan is created. Only the relaychain Root origin or the parachain itself can unlock the lock [5] . This creates an issue that if the parachain is unable to produce block, the parachain manager is unable to do anything and have to rely on relaychain Root origin to manage the parachain.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Status quo","id":"266","title":"Status quo"},"267":{"body":"This RFC proposes to change the lock and unlock conditions. A parachain can be locked only with following conditions: Relaychain governance MUST be able to lock any parachain. A parachain MUST be able to lock its own lock. A parachain manager SHOULD be able to lock the parachain. A parachain SHOULD be locked when it successfully produced a block for the first time. A parachain can be unlocked only with following conditions: Relaychain governance MUST be able to unlock any parachain. A parachain MUST be able to unlock its own lock. Note that create crowdloan MUST NOT lock the parachain and onboard a parachain SHOULD NOT lock it until a new block is successfully produced.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Proposed changes","id":"267","title":"Proposed changes"},"268":{"body":"A one off migration is proposed in order to apply this change retrospectively so that existing parachains can also be benefited from this RFC. This migration will unlock parachains that confirms with following conditions: Parachain is locked. Parachain never produced a block. Including from expired leases. Parachain manager never explicitly lock the parachain.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Migration","id":"268","title":"Migration"},"269":{"body":"Parachain locks are designed in such way to ensure the decentralization of parachains. If parachains are not locked when it should be, it could introduce centralization risk for new parachains. For example, one possible scenario is that a collective may decide to launch a parachain fully decentralized. However, if the parachain is unable to produce block, the parachain manager will be able to replace the wasm and genesis without the consent of the collective. It is considered this risk is tolerable as it requires the wasm/genesis to be invalid at first place. It is not yet practically possible to develop a parachain without any centralized risk currently. Another case is that a parachain team may decide to use crowdloan to help secure a slot lease. Previously, creating a crowdloan will lock a parachain. This means crowdloan participants will know exactly the genesis of the parachain for the crowdloan they are participating. However, this actually providers little assurance to crowdloan participants. For example, if the genesis block is determined before a crowdloan is started, it is not possible to have onchain mechanism to enforce reward distributions for crowdloan participants. They always have to rely on the parachain team to fulfill the promise after the parachain is alive. Existing operational parachains will not be impacted.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Drawbacks","id":"269","title":"Drawbacks"},"27":{"body":"Beyond promoting interoperability, this RFC also aims to facilitate the implementation of Sassafras within the Polkadot ecosystem. Although the specifics of deployment strategies are beyond the scope of this document, it lays the groundwork for the integration of Sassafras into the Polkadot network.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 1.2. Supporting Sassafras for Polkadot","id":"27","title":"1.2. Supporting Sassafras for Polkadot"},"270":{"body":"The implementation of this RFC will be tested on testnets (Rococo and Westend) first. An audit maybe required to ensure the implementation does not introduce unwanted side effects. There is no privacy related concerns.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Testing, Security, and Privacy","id":"270","title":"Testing, Security, and Privacy"},"271":{"body":"This RFC should not introduce any performance impact.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Performance","id":"271","title":"Performance"},"272":{"body":"This RFC should improve the developer experiences for new and existing parachain teams","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Ergonomics","id":"272","title":"Ergonomics"},"273":{"body":"This RFC is fully compatibility with existing interfaces.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Compatibility","id":"273","title":"Compatibility"},"274":{"body":"Parachain Slot Extension Story: https://github.com/paritytech/polkadot/issues/4758 Allow parachain to renew lease without actually run another parachain: https://github.com/paritytech/polkadot/issues/6685 Always treat parachain that never produced block for a significant amount of time as unlocked: https://github.com/paritytech/polkadot/issues/7539","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Prior Art and References","id":"274","title":"Prior Art and References"},"275":{"body":"None at this stage.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Unresolved Questions","id":"275","title":"Unresolved Questions"},"276":{"body":"This RFC is only intended to be a short term solution. Slots will be removed in future and lock mechanism is likely going to be replaced with a more generalized parachain manage & recovery system in future. Therefore long term impacts of this RFC are not considered. https://github.com/paritytech/cumulus/issues/377 [2] : https://github.com/paritytech/polkadot/issues/6685 [3] : https://github.com/paritytech/polkadot/blob/994af3de79af25544bf39644844cbe70a7b4d695/runtime/common/src/paras_registrar.rs#L51-L52C15 [4] : https://github.com/paritytech/polkadot/blob/994af3de79af25544bf39644844cbe70a7b4d695/runtime/common/src/paras_registrar.rs#L473-L475 [5] : https://github.com/paritytech/polkadot/blob/994af3de79af25544bf39644844cbe70a7b4d695/runtime/common/src/paras_registrar.rs#L333-L340","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Future Directions and Related Material","id":"276","title":"Future Directions and Related Material"},"277":{"body":"(source) Table of Contents RFC-0022: Adopt Encointer Runtime Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date Aug 22nd 2023 Description Permanently move the Encointer runtime into the Fellowship runtimes repo. Authors @brenzi for Encointer Association, 8000 Zurich, Switzerland","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » RFC-0022: Adopt Encointer Runtime","id":"277","title":"RFC-0022: Adopt Encointer Runtime"},"278":{"body":"Encointer is a system chain on Kusama since Jan 2022 and has been developed and maintained by the Encointer association. This RFC proposes to treat Encointer like any other system chain and include it in the fellowship repo with this PR .","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Summary","id":"278","title":"Summary"},"279":{"body":"Encointer does not seek to be in control of its runtime repository. As a decentralized system, the fellowship has a more suitable structure to maintain a system chain runtime repo than the Encointer association does. Also, Encointer aims to update its runtime in batches with other system chains in order to have consistency for interoperability across system chains.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Motivation","id":"279","title":"Motivation"},"28":{"body":"","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 2. Stakeholders","id":"28","title":"2. Stakeholders"},"280":{"body":"Fellowship: Will continue to take upon them the review and auditing work for the Encointer runtime, but the process is streamlined with other system chains and therefore less time-consuming compared to the separate repo and CI process we currently have. Kusama Network: Tokenholders can easily see the changes of all system chains in one place. Encointer Association: Further decentralization of the Encointer Network necessities like devops. Encointer devs: Being able to work directly in the Fellowship runtimes repo to streamline and synergize with other developers.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Stakeholders","id":"280","title":"Stakeholders"},"281":{"body":"Our PR has all details about our runtime and how we would move it into the fellowship repo. Noteworthy: All Encointer-specific pallets will still be located in encointer's repo for the time being: https://github.com/encointer/pallets It will still be the duty of the Encointer team to keep its runtime up to date and provide adequate test fixtures. Frequent dependency bumps with Polkadot releases would be beneficial for interoperability and could be streamlined with other system chains but that will not be a duty of fellowship. Whenever possible, all system chains could be upgraded jointly (including Encointer) with a batch referendum. Further notes: Encointer will publish all its crates crates.io Encointer does not carry out external auditing of its runtime nor pallets. It would be beneficial but not a requirement from our side if Encointer could join the auditing process of other system chains.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Explanation","id":"281","title":"Explanation"},"282":{"body":"Other than all other system chains, development and maintenance of the Encointer Network is mainly financed by the KSM Treasury and possibly the DOT Treasury in the future. Encointer is dedicated to maintaining its network and runtime code for as long as possible, but there is a dependency on funding which is not in the hands of the fellowship. The only risk in the context of funding, however, is that the Encointer runtime will see less frequent updates if there's less funding.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Drawbacks","id":"282","title":"Drawbacks"},"283":{"body":"No changes to the existing system are proposed. Only changes to how maintenance is organized.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Testing, Security, and Privacy","id":"283","title":"Testing, Security, and Privacy"},"284":{"body":"No changes","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Performance, Ergonomics, and Compatibility","id":"284","title":"Performance, Ergonomics, and Compatibility"},"285":{"body":"Existing Encointer runtime repo","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Prior Art and References","id":"285","title":"Prior Art and References"},"286":{"body":"None identified","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Unresolved Questions","id":"286","title":"Unresolved Questions"},"287":{"body":"More info on Encointer: encointer.org","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Future Directions and Related Material","id":"287","title":"Future Directions and Related Material"},"288":{"body":"(source) Table of Contents RFC-0032: Minimal Relay Summary Motivation Stakeholders Explanation Migrations Interfaces Functional Architecture Resource Allocation Deployment Kusama Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 20 September 2023 Description Proposal to minimise Relay Chain functionality. Authors Joe Petrowski, Gavin Wood","breadcrumbs":"RFC-0032: Minimal Relay » RFC-0032: Minimal Relay","id":"288","title":"RFC-0032: Minimal Relay"},"289":{"body":"The Relay Chain contains most of the core logic for the Polkadot network. While this was necessary prior to the launch of parachains and development of XCM, most of this logic can exist in parachains. This is a proposal to migrate several subsystems into system parachains.","breadcrumbs":"RFC-0032: Minimal Relay » Summary","id":"289","title":"Summary"},"29":{"body":"Developers responsible for creating blockchains who intend to leverage the benefits offered by the Sassafras Protocol.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 2.1. Blockchain Developers","id":"29","title":"2.1. Blockchain Developers"},"290":{"body":"Polkadot's scaling approach allows many distinct state machines (known generally as parachains) to operate with common guarantees about the validity and security of their state transitions. Polkadot provides these common guarantees by executing the state transitions on a strict subset (a backing group) of the Relay Chain's validator set. However, state transitions on the Relay Chain need to be executed by all validators. If any of those state transitions can occur on parachains, then the resources of the complement of a single backing group could be used to offer more cores. As in, they could be offering more coretime (a.k.a. blockspace) to the network. By minimising state transition logic on the Relay Chain by migrating it into \"system chains\" -- a set of parachains that, with the Relay Chain, make up the Polkadot protocol -- the Polkadot Ubiquitous Computer can maximise its primary offering: secure blockspace.","breadcrumbs":"RFC-0032: Minimal Relay » Motivation","id":"290","title":"Motivation"},"291":{"body":"Parachains that interact with affected logic on the Relay Chain; Core protocol and XCM format developers; Tooling, block explorer, and UI developers.","breadcrumbs":"RFC-0032: Minimal Relay » Stakeholders","id":"291","title":"Stakeholders"},"292":{"body":"The following pallets and subsystems are good candidates to migrate from the Relay Chain: Identity Balances Staking Staking Election Provider Bags List NIS Nomination Pools Fast Unstake Governance Treasury and Bounties Conviction Voting Referenda Note: The Auctions and Crowdloan pallets will be replaced by Coretime, its system chain and interface described in RFC-1 and RFC-5, respectively.","breadcrumbs":"RFC-0032: Minimal Relay » Explanation","id":"292","title":"Explanation"},"293":{"body":"Some subsystems are simpler to move than others. For example, migrating Identity can be done by simply preventing state changes in the Relay Chain, using the Identity-related state as the genesis for a new chain, and launching that new chain with the genesis and logic (pallet) needed. Other subsystems cannot experience any downtime like this because they are essential to the network's functioning, like Staking and Governance. However, these can likely coexist with a similarly-permissioned system chain for some time, much like how \"Gov1\" and \"OpenGov\" coexisted at the latter's introduction. Specific migration plans will be included in release notes of runtimes from the Polkadot Fellowship when beginning the work of migrating a particular subsystem.","breadcrumbs":"RFC-0032: Minimal Relay » Migrations","id":"293","title":"Migrations"},"294":{"body":"The Relay Chain, in many cases, will still need to interact with these subsystems, especially Staking and Governance. These subsystems will require making some APIs available either via dispatchable calls accessible to XCM Transact or possibly XCM Instructions in future versions. For example, Staking provides a pallet-API to register points (e.g. for block production) and offences (e.g. equivocation). With Staking in a system chain, that chain would need to allow the Relay Chain to update validator points periodically so that it can correctly calculate rewards. A pub-sub protocol may also lend itself to these types of interactions.","breadcrumbs":"RFC-0032: Minimal Relay » Interfaces","id":"294","title":"Interfaces"},"295":{"body":"This RFC proposes that system chains form individual components within the system's architecture and that these components are chosen as functional groups. This approach allows synchronous composibility where it is most valuable, but isolates logic in such a way that provides flexibility for optimal resource allocation (see Resource Allocation ). For the subsystems discussed in this RFC, namely Identity, Governance, and Staking, this would mean: People Chain, for identity and personhood logic, providing functionality related to the attributes of single actors; Governance Chain, for governance and system collectives, providing functionality for pluralities to express their voices within the system; Staking Chain, for Polkadot's staking system, including elections, nominations, reward distribution, slashing, and non-interactive staking; and Asset Hub, for fungible and non-fungible assets, including DOT. The Collectives chain and Asset Hub already exist, so implementation of this RFC would mean two new chains (People and Staking), with Governance moving to the currently-known-as Collectives chain and Asset Hub being increasingly used for DOT over the Relay Chain. Note that one functional group will likely include many pallets, as we do not know how pallet configurations and interfaces will evolve over time.","breadcrumbs":"RFC-0032: Minimal Relay » Functional Architecture","id":"295","title":"Functional Architecture"},"296":{"body":"The system should minimise wasted blockspace. These three (and other) subsystems may not each consistently require a dedicated core. However, core scheduling is far more agile than functional grouping. While migrating functionality from one chain to another can be a multi-month endeavour, cores can be rescheduled almost on-the-fly. Migrations are also breaking changes to some use cases, for example other parachains that need to route XCM programs to particular chains. It is thus preferable to do them a single time in migrating off the Relay Chain, reducing the risk of needing parachain splits in the future. Therefore, chain boundaries should be based on functional grouping where synchronous composibility is most valuable; and efficient resource allocation should be managed by the core scheduling protocol. Many of these system chains (including Asset Hub) could often share a single core in a semi-round robin fashion (the coretime may not be uniform). When needed, for example during NPoS elections or slashing events, the scheduler could allocate a dedicated core to the chain in need of more throughput.","breadcrumbs":"RFC-0032: Minimal Relay » Resource Allocation","id":"296","title":"Resource Allocation"},"297":{"body":"Actual migrations should happen based on some prioritization. This RFC proposes to migrate Identity, Staking, and Governance as the systems to work on first. A brief discussion on the factors involved in each one: Identity Identity will be one of the simpler pallets to migrate into a system chain, as its logic is largely self-contained and it does not \"share\" balances with other subsystems. As in, any DOT is held in reserve as a storage deposit and cannot be simultaneously used the way locked DOT can be locked for multiple purposes. Therefore, migration can take place as follows: The pallet can be put in a locked state, blocking most calls to the pallet and preventing updates to identity info. The frozen state will form the genesis of a new system parachain. Functions will be added to the pallet that allow migrating the deposit to the parachain. The parachain deposit is on the order of 1/100th of the Relay Chain's. Therefore, this will result in freeing up Relay State as well as most of each user's reserved balance. The pallet and any leftover state can be removed from the Relay Chain. User interfaces that render Identity information will need to source their data from the new system parachain. Note: In the future, it may make sense to decommission Kusama's Identity chain and do all account identities via Polkadot's. However, the Kusama chain will serve as a dress rehearsal for Polkadot. Staking Migrating the staking subsystem will likely be the most complex technical undertaking, as the Staking system cannot stop (the system MUST always have a validator set) nor run in parallel (the system MUST have only one validator set) and the subsystem itself is made up of subsystems in the runtime and the node. For example, if offences are reported to the Staking parachain, validator nodes will need to submit their reports there. Handling balances also introduces complications. The same balance can be used for staking and governance. Ideally, all balances stay on Asset Hub, and only report \"credits\" to system chains like Staking and Governance. However, staking mutates balances by issuing new DOT on era changes and for rewards. Allowing DOT directly on the Staking parachain would simplify staking changes. Given the complexity, it would be pragmatic to include the Balances pallet in the Staking parachain in its first version. Any other systems that use overlapping locks, most notably governance, will need to recognise DOT held on both Asset Hub and the Staking parachain. There is more discussion about staking in a parachain in Moving Staking off the Relay Chain . Governance Migrating governance into a parachain will be less complicated than staking. Most of the primitives needed for the migration already exist. The Treasury supports spending assets on remote chains and collectives like the Polkadot Technical Fellowship already function in a parachain. That is, XCM already provides the ability to express system origins across chains. Therefore, actually moving the governance logic into a parachain will be simple. It can run in parallel with the Relay Chain's governance, which can be removed when the parachain has demonstrated sufficient functionality. It's possible that the Relay Chain maintain a Root-level emergency track for situations like parachains halting . The only complication arises from the fact that both Asset Hub and the Staking parachain will have DOT balances; therefore, the Governance chain will need to be able to credit users' voting power based on balances from both locations. This is not expected to be difficult to handle.","breadcrumbs":"RFC-0032: Minimal Relay » Deployment","id":"297","title":"Deployment"},"298":{"body":"Although Polkadot and Kusama both have system chains running, they have to date only been used for introducing new features or bodies, for example fungible assets or the Technical Fellowship. There has not yet been a migration of logic/state from the Relay Chain into a parachain. Given its more realistic network conditions than testnets, Kusama is the best stage for rehearsal. In the case of identity, Polkadot's system may be sufficient for the ecosystem. Therefore, Kusama should be used to test the migration of logic and state from Relay Chain to parachain, but these features may be (at the will of Kusama's governance) dropped from Kusama entirely after a successful migration on Polkadot. For Governance, Polkadot already has the Collectives parachain, which would become the Governance parachain. The entire group of DOT holders is itself a collective (the legislative body), and governance provides the means to express voice. Launching a Kusama Governance chain would be sensible to rehearse a migration. The Staking subsystem is perhaps where Kusama would provide the most value in its canary capacity. Staking is the subsystem most constrained by PoV limits. Ensuring that elections, payouts, session changes, offences/slashes, etc. work in a parachain on Kusama -- with its larger validator set -- will give confidence to the chain's robustness on Polkadot.","breadcrumbs":"RFC-0032: Minimal Relay » Kusama","id":"298","title":"Kusama"},"299":{"body":"These subsystems will have reduced resources in cores than on the Relay Chain. Staking in particular may require some optimizations to deal with constraints.","breadcrumbs":"RFC-0032: Minimal Relay » Drawbacks","id":"299","title":"Drawbacks"},"3":{"body":"The current deposit of 10 DOT for collection creation (along with 0.01 DOT for item deposit and 0.2 DOT for metadata and attribute deposit) on the Polkadot Asset Hub and 0.1 KSM on Kusama Asset Hub presents a significant financial barrier for many NFT creators. By lowering the deposit requirements, we aim to encourage more NFT creators to participate in the Polkadot NFT ecosystem, thereby enriching the diversity and vibrancy of the community and its offerings. The actual implementation of the deposit is an arbitrary number coming from Uniques pallet . It is not a result of any economic analysis. This proposal aims to adjust the deposit from constant to dynamic pricing based on the deposit function with respect to stakeholders.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Motivation","id":"3","title":"Motivation"},"30":{"body":"Developers contributing to the Polkadot ecosystem, both relay-chain and para-chains. The protocol will have a central role in the next generation block authoring consensus systems.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 2.2. Polkadot Ecosystem Contributors","id":"30","title":"2.2. Polkadot Ecosystem Contributors"},"300":{"body":"Standard audit/review requirements apply. More powerful multi-chain integration test tools would be useful in developement.","breadcrumbs":"RFC-0032: Minimal Relay » Testing, Security, and Privacy","id":"300","title":"Testing, Security, and Privacy"},"301":{"body":"Describe the impact of the proposal on the exposed functionality of Polkadot.","breadcrumbs":"RFC-0032: Minimal Relay » Performance, Ergonomics, and Compatibility","id":"301","title":"Performance, Ergonomics, and Compatibility"},"302":{"body":"This is an optimization. The removal of public/user transactions on the Relay Chain ensures that its primary resources are allocated to system performance.","breadcrumbs":"RFC-0032: Minimal Relay » Performance","id":"302","title":"Performance"},"303":{"body":"This proposal alters very little for coretime users (e.g. parachain developers). Application developers will need to interact with multiple chains, making ergonomic light client tools particularly important for application development. For existing parachains that interact with these subsystems, they will need to configure their runtimes to recognize the new locations in the network.","breadcrumbs":"RFC-0032: Minimal Relay » Ergonomics","id":"303","title":"Ergonomics"},"304":{"body":"Implementing this proposal will require some changes to pallet APIs and/or a pub-sub protocol. Application developers will need to interact with multiple chains in the network.","breadcrumbs":"RFC-0032: Minimal Relay » Compatibility","id":"304","title":"Compatibility"},"305":{"body":"Transactionless Relay-chain Moving Staking off the Relay Chain","breadcrumbs":"RFC-0032: Minimal Relay » Prior Art and References","id":"305","title":"Prior Art and References"},"306":{"body":"There remain some implementation questions, like how to use balances for both Staking and Governance. See, for example, Moving Staking off the Relay Chain .","breadcrumbs":"RFC-0032: Minimal Relay » Unresolved Questions","id":"306","title":"Unresolved Questions"},"307":{"body":"Ideally the Relay Chain becomes transactionless, such that not even balances are represented there. With Staking and Governance off the Relay Chain, this is not an unreasonable next step. With Identity on Polkadot, Kusama may opt to drop its People Chain.","breadcrumbs":"RFC-0032: Minimal Relay » Future Directions and Related Material","id":"307","title":"Future Directions and Related Material"},"308":{"body":"(source) Table of Contents RFC-0050: Fellowship Salaries Summary Motivation Stakeholders Explanation Salary Asset Projections Updates Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Start Date 15 November 2023 Description Proposal to set rank-based Fellowship salary levels. Authors Joe Petrowski, Gavin Wood","breadcrumbs":"RFC-0050: Fellowship Salaries » RFC-0050: Fellowship Salaries","id":"308","title":"RFC-0050: Fellowship Salaries"},"309":{"body":"The Fellowship Manifesto states that members should receive a monthly allowance on par with gross income in OECD countries. This RFC proposes concrete amounts.","breadcrumbs":"RFC-0050: Fellowship Salaries » Summary","id":"309","title":"Summary"},"31":{"body":"This section outlines the notation and conventions adopted throughout this document to ensure clarity and consistency.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3. Notation and Convention","id":"31","title":"3. Notation and Convention"},"310":{"body":"One motivation for the Technical Fellowship is to provide an incentive mechanism that can induct and retain technical talent for the continued progress of the network. In order for members to uphold their commitment to the network, they should receive support to ensure that their needs are met such that they have the time to dedicate to their work on Polkadot. Given the high expectations of Fellows, it is reasonable to consider contributions and requirements on par with a full-time job. Providing a livable wage to those making such contributions makes it pragmatic to work full-time on Polkadot. Note: Goals of the Fellowship, expectations for each Dan, and conditions for promotion and demotion are all explained in the Manifesto. This RFC is only to propose concrete values for allowances.","breadcrumbs":"RFC-0050: Fellowship Salaries » Motivation","id":"310","title":"Motivation"},"311":{"body":"Fellowship members Polkadot Treasury","breadcrumbs":"RFC-0050: Fellowship Salaries » Stakeholders","id":"311","title":"Stakeholders"},"312":{"body":"This RFC proposes agreeing on salaries relative to a single level, the III Dan. As such, changes to the amount or asset used would only be on a single value, and all others would adjust relatively. A III Dan is someone whose contributions match the expectations of a full-time individual contributor. The salary at this level should be reasonably close to averages in OECD countries. Dan Factor I 0.125 II 0.25 III 1 IV 1.5 V 2.0 VI 2.5 VII 2.5 VIII 2.5 IX 2.5 Note that there is a sizable increase between II Dan (Proficient) and III Dan (Fellow). By the third Dan, it is generally expected that one is working on Polkadot as their primary focus in a full-time capacity.","breadcrumbs":"RFC-0050: Fellowship Salaries » Explanation","id":"312","title":"Explanation"},"313":{"body":"Although the Manifesto (Section 8) specifies a monthly allowance in DOT, this RFC proposes the use of USDT instead. The allowance is meant to provide members stability in meeting their day-to-day needs and recognize contributions. Using USDT provides more stability and less speculation. This RFC proposes that a III Dan earn 80,000 USDT per year. The salary at this level is commensurate with average salaries in OECD countries (note: 77,000 USD in the U.S., with an average engineer at 100,000 USD). The other ranks would thus earn: Dan Annual Salary I 10,000 II 20,000 III 80,000 IV 120,000 V 160,000 VI 200,000 VII 200,000 VIII 200,000 IX 200,000 The salary levels for Architects (IV, V, and VI Dan) are typical of senior engineers. Allowances will be managed by the Salary pallet.","breadcrumbs":"RFC-0050: Fellowship Salaries » Salary Asset","id":"313","title":"Salary Asset"},"314":{"body":"Based on the current membership, the maximum yearly and monthly costs are shown below: Dan Salary Members Yearly Monthly I 10,000 27 270,000 22,500 II 20,000 11 220,000 18,333 III 80,000 8 640,000 53,333 IV 120,000 3 360,000 30,000 V 160,000 5 800,000 66,667 VI 200,000 3 600,000 50,000 > VI 200,000 0 0 0 Total 2,890,000 240,833 Note that these are the maximum amounts; members may choose to take a passive (lower) level. On the other hand, more people will likely join the Fellowship in the coming years.","breadcrumbs":"RFC-0050: Fellowship Salaries » Projections","id":"314","title":"Projections"},"315":{"body":"Updates to these levels, whether relative ratios, the asset used, or the amount, shall be done via RFC.","breadcrumbs":"RFC-0050: Fellowship Salaries » Updates","id":"315","title":"Updates"},"316":{"body":"By not using DOT for payment, the protocol relies on the stability of other assets and the ability to acquire them. However, the asset of choice can be changed in the future.","breadcrumbs":"RFC-0050: Fellowship Salaries » Drawbacks","id":"316","title":"Drawbacks"},"317":{"body":"N/A.","breadcrumbs":"RFC-0050: Fellowship Salaries » Testing, Security, and Privacy","id":"317","title":"Testing, Security, and Privacy"},"318":{"body":"","breadcrumbs":"RFC-0050: Fellowship Salaries » Performance, Ergonomics, and Compatibility","id":"318","title":"Performance, Ergonomics, and Compatibility"},"319":{"body":"N/A","breadcrumbs":"RFC-0050: Fellowship Salaries » Performance","id":"319","title":"Performance"},"32":{"body":"Data structures are primarily defined using standard ASN.1 , syntax with few exceptions: Fixed width integer types are not explicitly defined by ASN.1 standard. Within this document, U denotes a n-bit unsigned integer. Unless explicitly noted, all types must be serialized using SCALE codec. To ensure interoperability of serialized structures, the order of the fields must match the structures definitions found within this document.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3.1. Data Structures Definitions and Encoding","id":"32","title":"3.1. Data Structures Definitions and Encoding"},"320":{"body":"N/A","breadcrumbs":"RFC-0050: Fellowship Salaries » Ergonomics","id":"320","title":"Ergonomics"},"321":{"body":"N/A","breadcrumbs":"RFC-0050: Fellowship Salaries » Compatibility","id":"321","title":"Compatibility"},"322":{"body":"The Polkadot Fellowship Manifesto OECD Average Wages Indeed: Average Salary for Engineers, United States","breadcrumbs":"RFC-0050: Fellowship Salaries » Prior Art and References","id":"322","title":"Prior Art and References"},"323":{"body":"None at present.","breadcrumbs":"RFC-0050: Fellowship Salaries » Unresolved Questions","id":"323","title":"Unresolved Questions"},"324":{"body":"(source) Table of Contents RFC-0056: Enforce only one transaction per notification Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-11-30 Description Modify the transactions notifications protocol to always send only one transaction at a time Authors Pierre Krieger","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » RFC-0056: Enforce only one transaction per notification","id":"324","title":"RFC-0056: Enforce only one transaction per notification"},"325":{"body":"When two peers connect to each other, they open (amongst other things) a so-called \"notifications protocol\" substream dedicated to gossiping transactions to each other. Each notification on this substream currently consists in a SCALE-encoded Vec where Transaction is defined in the runtime. This RFC proposes to modify the format of the notification to become (Compact(1), Transaction). This maintains backwards compatibility, as this new format decodes as a Vec of length equal to 1.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Summary","id":"325","title":"Summary"},"326":{"body":"There exists three motivations behind this change: It is technically impossible to decode a SCALE-encoded Vec into a list of SCALE-encoded transactions without knowing how to decode a Transaction. That's because a Vec consists in several Transactions one after the other in memory, without any delimiter that indicates the end of a transaction and the start of the next. Unfortunately, the format of a Transaction is runtime-specific. This means that the code that receives notifications is necessarily tied to a specific runtime, and it is not possible to write runtime-agnostic code. Notifications protocols are already designed to be optimized to send many items. Currently, when it comes to transactions, each item is a Vec that consists in multiple sub-items of type Transaction. This two-steps hierarchy is completely unnecessary, and was originally written at a time when the networking protocol of Substrate didn't have proper multiplexing. It makes the implementation way more straight-forward by not having to repeat code related to back-pressure. See explanations below.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Motivation","id":"326","title":"Motivation"},"327":{"body":"Low-level developers.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Stakeholders","id":"327","title":"Stakeholders"},"328":{"body":"To give an example, if you send one notification with three transactions, the bytes that are sent on the wire are: concat( leb128(total-size-in-bytes-of-the-rest), scale(compact(3)), scale(transaction1), scale(transaction2), scale(transaction3)\n) But you can also send three notifications of one transaction each, in which case it is: concat( leb128(size(scale(transaction1)) + 1), scale(compact(1)), scale(transaction1), leb128(size(scale(transaction2)) + 1), scale(compact(1)), scale(transaction2), leb128(size(scale(transaction3)) + 1), scale(compact(1)), scale(transaction3)\n) Right now the sender can choose which of the two encoding to use. This RFC proposes to make the second encoding mandatory. The format of the notification would become a SCALE-encoded (Compact(1), Transaction). A SCALE-compact encoded 1 is one byte of value 4. In other words, the format of the notification would become concat(&[4], scale_encoded_transaction). This is equivalent to forcing the Vec to always have a length of 1, and I expect the Substrate implementation to simply modify the sending side to add a for loop that sends one notification per item in the Vec. As explained in the motivation section, this allows extracting scale(transaction) items without having to know how to decode them. By \"flattening\" the two-steps hierarchy, an implementation only needs to back-pressure individual notifications rather than back-pressure notifications and transactions within notifications.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Explanation","id":"328","title":"Explanation"},"329":{"body":"This RFC chooses to maintain backwards compatibility at the cost of introducing a very small wart (the Compact(1)). An alternative could be to introduce a new version of the transactions notifications protocol that sends one Transaction per notification, but this is significantly more complicated to implement and can always be done later in case the Compact(1) is bothersome.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Drawbacks","id":"329","title":"Drawbacks"},"33":{"body":"It is advantageous to make use of code snippets as part of the protocol description. As a convention, the code is formatted in a style similar to Rust , and can make use of the following set of predefined functions: BYTES(x: T): returns an OCTET_STRING that represents the raw byte array of the object x with type T. If T is a VisibleString (ASCII string), it returns the sequence of octets of its ASCII representation. If T is U, it returns the little-endian encoding of the integer U as n/8 octets. U(x: OCTET_STRING): returns a U interpreting x as the little-endian encoding of a n bits unsigned integer. SCALE(x: T): returns an OCTET_STRING representing the SCALE encoding of x with type T. BLAKE2(n: U32, x: OCTET_STRING): returns the standard Blake2b n bytes hash of x as an OCTET_STRING (note this is not equivalent to the truncation of the full 64 bytes Blake2b hash). CONCAT(x₀: OCTET_STRING, ..., xₖ: OCTET_STRING): returns the concatenation of the inputs as an OCTET_STRING. LENGTH(x: OCTET_STRING): returns the number of octets in x as an U32.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3.2. Pseudo-Code","id":"33","title":"3.2. Pseudo-Code"},"330":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Testing, Security, and Privacy","id":"330","title":"Testing, Security, and Privacy"},"331":{"body":"","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Performance, Ergonomics, and Compatibility","id":"331","title":"Performance, Ergonomics, and Compatibility"},"332":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Performance","id":"332","title":"Performance"},"333":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Ergonomics","id":"333","title":"Ergonomics"},"334":{"body":"The change is backwards compatible if done in two steps: modify the sender to always send one transaction per notification, then, after a while, modify the receiver to enforce the new format.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Compatibility","id":"334","title":"Compatibility"},"335":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Prior Art and References","id":"335","title":"Prior Art and References"},"336":{"body":"None.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Unresolved Questions","id":"336","title":"Unresolved Questions"},"337":{"body":"None. This is a simple isolated change.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Future Directions and Related Material","id":"337","title":"Future Directions and Related Material"},"338":{"body":"(source) Table of Contents RFC-0004: Remove the host-side runtime memory allocator Summary Motivation Stakeholders Explanation New host functions Other changes Drawbacks Prior Art Unresolved Questions Future Possibilities Start Date 2023-07-04 Description Update the runtime-host interface to no longer make use of a host-side allocator Authors Pierre Krieger","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » RFC-0004: Remove the host-side runtime memory allocator","id":"338","title":"RFC-0004: Remove the host-side runtime memory allocator"},"339":{"body":"Update the runtime-host interface to no longer make use of a host-side allocator.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Summary","id":"339","title":"Summary"},"34":{"body":"More types and helper functions are introduced incrementally as they become relevant within the document's context. We find this approach more agile, especially given that the set of types used is not overly complex.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3.3. Incremental Introduction of Types and Functions","id":"34","title":"3.3. Incremental Introduction of Types and Functions"},"340":{"body":"The heap allocation of the runtime is currently controlled by the host using a memory allocator on the host side. The API of many host functions consists in allocating a buffer. For example, when calling ext_hashing_twox_256_version_1, the host allocates a 32 bytes buffer using the host allocator, and returns a pointer to this buffer to the runtime. The runtime later has to call ext_allocator_free_version_1 on this pointer in order to free the buffer. Even though no benchmark has been done, it is pretty obvious that this design is very inefficient. To continue with the example of ext_hashing_twox_256_version_1, it would be more efficient to instead write the output hash to a buffer that was allocated by the runtime on its stack and passed by pointer to the function. Allocating a buffer on the stack in the worst case scenario simply consists in decreasing a number, and in the best case scenario is free. Doing so would save many Wasm memory reads and writes by the allocator, and would save a function call to ext_allocator_free_version_1. Furthermore, the existence of the host-side allocator has become questionable over time. It is implemented in a very naive way, and for determinism and backwards compatibility reasons it needs to be implemented exactly identically in every client implementation. Runtimes make substantial use of heap memory allocations, and each allocation needs to go twice through the runtime <-> host boundary (once for allocating and once for freeing). Moving the allocator to the runtime side, while it would increase the size of the runtime, would be a good idea. But before the host-side allocator can be deprecated, all the host functions that make use of it need to be updated to not use it.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Motivation","id":"340","title":"Motivation"},"341":{"body":"No attempt was made at convincing stakeholders.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Stakeholders","id":"341","title":"Stakeholders"},"342":{"body":"","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Explanation","id":"342","title":"Explanation"},"343":{"body":"This section contains a list of new host functions to introduce. (func $ext_storage_read_version_2 (param $key i64) (param $value_out i64) (param $offset i32) (result i64))\n(func $ext_default_child_storage_read_version_2 (param $child_storage_key i64) (param $key i64) (param $value_out i64) (param $offset i32) (result i64)) The signature and behaviour of ext_storage_read_version_2 and ext_default_child_storage_read_version_2 is identical to their version 1 counterparts, but the return value has a different meaning. The new functions directly return the number of bytes that were written in the value_out buffer. If the entry doesn't exist, a value of -1 is returned. Given that the host must never write more bytes than the size of the buffer in value_out, and that the size of this buffer is expressed as a 32 bits number, a 64bits value of -1 is not ambiguous. The runtime execution stops with an error if value_out is outside of the range of the memory of the virtual machine, even if the size of the buffer is 0 or if the amount of data to write would be 0 bytes. (func $ext_storage_next_key_version_2 (param $key i64) (param $out i64) (return i32))\n(func $ext_default_child_storage_next_key_version_2 (param $child_storage_key i64) (param $key i64) (param $out i64) (return i32)) The behaviour of these functions is identical to their version 1 counterparts. Instead of allocating a buffer, writing the next key to it, and returning a pointer to it, the new version of these functions accepts an out parameter containing a pointer-size to the memory location where the host writes the output. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. These functions return the size, in bytes, of the next key, or 0 if there is no next key. If the size of the next key is larger than the buffer in out, the bytes of the key that fit the buffer are written to out and any extra byte that doesn't fit is discarded. Some notes: It is never possible for the next key to be an empty buffer, because an empty key has no preceding key. For this reason, a return value of 0 can unambiguously be used to indicate the lack of next key. The ext_storage_next_key_version_2 and ext_default_child_storage_next_key_version_2 are typically used in order to enumerate keys that starts with a certain prefix. Given that storage keys are constructed by concatenating hashes, the runtime is expected to know the size of the next key and can allocate a buffer that can fit said key. When the next key doesn't belong to the desired prefix, it might not fit the buffer, but given that the start of the key is written to the buffer anyway this can be detected in order to avoid calling the function a second time with a larger buffer. (func $ext_hashing_keccak_256_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_keccak_512_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_sha2_256_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_blake2_128_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_blake2_256_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_twox_64_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_twox_128_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_twox_256_version_2 (param $data i64) (param $out i32))\n(func $ext_trie_blake2_256_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_trie_blake2_256_ordered_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_trie_keccak_256_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_trie_keccak_256_ordered_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_default_child_storage_root_version_3 (param $child_storage_key i64) (param $out i32))\n(func $ext_crypto_ed25519_generate_version_2 (param $key_type_id i32) (param $seed i64) (param $out i32))\n(func $ext_crypto_sr25519_generate_version_2 (param $key_type_id i32) (param $seed i64) (param $out i32) (return i32))\n(func $ext_crypto_ecdsa_generate_version_2 (param $key_type_id i32) (param $seed i64) (param $out i32) (return i32)) The behaviour of these functions is identical to their version 1 or version 2 counterparts. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the new version of these functions accepts an out parameter containing the memory location where the host writes the output. The output is always of a size known at compilation time. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. (func $ext_default_child_storage_root_version_3 (param $child_storage_key i64) (param $out i32))\n(func $ext_storage_root_version_3 (param $out i32)) The behaviour of these functions is identical to their version 1 and version 2 counterparts. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the new versions of these functions accepts an out parameter containing the memory location where the host writes the output. The output is always of a size known at compilation time. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. I have taken the liberty to take the version 1 of these functions as a base rather than the version 2, as a PPP deprecating the version 2 of these functions has previously been accepted: https://github.com/w3f/PPPs/pull/6 . (func $ext_storage_clear_prefix_version_3 (param $prefix i64) (param $limit i64) (param $removed_count_out i32) (return i32))\n(func $ext_default_child_storage_clear_prefix_version_3 (param $child_storage_key i64) (param $prefix i64) (param $limit i64) (param $removed_count_out i32) (return i32))\n(func $ext_default_child_storage_kill_version_4 (param $child_storage_key i64) (param $limit i64) (param $removed_count_out i32) (return i32)) The behaviour of these functions is identical to their version 2 and 3 counterparts. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the version 3 and 4 of these functions accepts a removed_count_out parameter containing the memory location to a 8 bytes buffer where the host writes the number of keys that were removed in little endian. The runtime execution stops with an error if removed_count_out is outside of the range of the memory of the virtual machine. The functions return 1 to indicate that there are keys remaining, and 0 to indicate that all keys have been removed. Note that there is an alternative proposal to add new host functions with the same names: https://github.com/w3f/PPPs/pull/7 . This alternative doesn't conflict with this one except for the version number. One proposal or the other will have to use versions 4 and 5 rather than 3 and 4. (func $ext_crypto_ed25519_sign_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i32))\n(func $ext_crypto_sr25519_sign_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i32))\nfunc $ext_crypto_ecdsa_sign_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i32))\n(func $ext_crypto_ecdsa_sign_prehashed_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i64)) The behaviour of these functions is identical to their version 1 counterparts. The new versions of these functions accept an out parameter containing the memory location where the host writes the signature. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. The signatures are always of a size known at compilation time. On success, these functions return 0. If the public key can't be found in the keystore, these functions return 1 and do not write anything to out. Note that the return value is 0 on success and 1 on failure, while the previous version of these functions write 1 on success (as it represents a SCALE-encoded Some) and 0 on failure (as it represents a SCALE-encoded None). Returning 0 on success and non-zero on failure is consistent with common practices in the C programming language and is less surprising than the opposite. (func $ext_crypto_secp256k1_ecdsa_recover_version_3 (param $sig i32) (param $msg i32) (param $out i32) (return i64))\n(func $ext_crypto_secp256k1_ecdsa_recover_compressed_version_3 (param $sig i32) (param $msg i32) (param $out i32) (return i64)) The behaviour of these functions is identical to their version 2 counterparts. The new versions of these functions accept an out parameter containing the memory location where the host writes the signature. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. The signatures are always of a size known at compilation time. On success, these functions return 0. On failure, these functions return a non-zero value and do not write anything to out. The non-zero value written on failure is: 1: incorrect value of R or S 2: incorrect value of V 3: invalid signature These values are equal to the values returned on error by the version 2 (see https://spec.polkadot.network/chap-host-api#defn-ecdsa-verify-error ), but incremented by 1 in order to reserve 0 for success. (func $ext_crypto_ed25519_num_public_keys_version_1 (param $key_type_id i32) (return i32))\n(func $ext_crypto_ed25519_public_key_version_2 (param $key_type_id i32) (param $key_index i32) (param $out i32))\n(func $ext_crypto_sr25519_num_public_keys_version_1 (param $key_type_id i32) (return i32))\n(func $ext_crypto_sr25519_public_key_version_2 (param $key_type_id i32) (param $key_index i32) (param $out i32))\n(func $ext_crypto_ecdsa_num_public_keys_version_1 (param $key_type_id i32) (return i32))\n(func $ext_crypto_ecdsa_public_key_version_2 (param $key_type_id i32) (param $key_index i32) (param $out i32)) The functions superceded the ext_crypto_ed25519_public_key_version_1, ext_crypto_sr25519_public_key_version_1, and ext_crypto_ecdsa_public_key_version_1 host functions. Instead of calling ext_crypto_ed25519_public_key_version_1 in order to obtain the list of all keys at once, the runtime should instead call ext_crypto_ed25519_num_public_keys_version_1 in order to obtain the number of public keys available, then ext_crypto_ed25519_public_key_version_2 repeatedly. The ext_crypto_ed25519_public_key_version_2 function writes the public key of the given key_index to the memory location designated by out. The key_index must be between 0 (included) and n (excluded), where n is the value returned by ext_crypto_ed25519_num_public_keys_version_1. Execution must trap if n is out of range. The same explanations apply for ext_crypto_sr25519_public_key_version_1 and ext_crypto_ecdsa_public_key_version_1. Host implementers should be aware that the list of public keys (including their ordering) must not change while the runtime is running. This is most likely done by copying the list of all available keys either at the start of the execution or the first time the list is accessed. (func $ext_offchain_http_request_start_version_2 (param $method i64) (param $uri i64) (param $meta i64) (result i32)) The behaviour of this function is identical to its version 1 counterpart. Instead of allocating a buffer, writing the request identifier in it, and returning a pointer to it, the version 2 of this function simply returns the newly-assigned identifier to the HTTP request. On failure, this function returns -1. An identifier of -1 is invalid and is reserved to indicate failure. (func $ext_offchain_http_request_write_body_version_2 (param $method i64) (param $uri i64) (param $meta i64) (result i32))\n(func $ext_offchain_http_response_read_body_version_2 (param $request_id i32) (param $buffer i64) (param $deadline i64) (result i64)) The behaviour of these functions is identical to their version 1 counterpart. Instead of allocating a buffer, writing two bytes in it, and returning a pointer to it, the new version of these functions simply indicates what happened: For ext_offchain_http_request_write_body_version_2, 0 on success. For ext_offchain_http_response_read_body_version_2, 0 or a non-zero number of bytes on success. -1 if the deadline was reached. -2 if there was an I/O error while processing the request. -3 if the identifier of the request is invalid. These values are equal to the values returned on error by the version 1 (see https://spec.polkadot.network/chap-host-api#defn-http-error ), but tweaked in order to reserve positive numbers for success. When it comes to ext_offchain_http_response_read_body_version_2, the host implementers must not read too much data at once in order to not create ambiguity in the returned value. Given that the size of the buffer is always inferior or equal to 4 GiB, this is not a problem. (func $ext_offchain_http_response_wait_version_2 (param $ids i64) (param $deadline i64) (param $out i32)) The behaviour of this function is identical to its version 1 counterpart. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the new version of this function accepts an out parameter containing the memory location where the host writes the output. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. The encoding of the response code is also modified compared to its version 1 counterpart and each response code now encodes to 4 little endian bytes as described below: 100-999: the request has finished with the given HTTP status code. -1 if the deadline was reached. -2 if there was an I/O error while processing the request. -3 if the identifier of the request is invalid. The buffer passed to out must always have a size of 4 * n where n is the number of elements in the ids. (func $ext_offchain_http_response_header_name_version_1 (param $request_id i32) (param $header_index i32) (param $out i64) (result i64))\n(func $ext_offchain_http_response_header_value_version_1 (param $request_id i32) (param $header_index i32) (param $out i64) (result i64)) These functions supercede the ext_offchain_http_response_headers_version_1 host function. Contrary to ext_offchain_http_response_headers_version_1, only one header indicated by header_index can be read at a time. Instead of calling ext_offchain_http_response_headers_version_1 once, the runtime should call ext_offchain_http_response_header_name_version_1 and ext_offchain_http_response_header_value_version_1 multiple times with an increasing header_index, until a value of -1 is returned. These functions accept an out parameter containing a pointer-size to the memory location where the header name or value should be written. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. These functions return the size, in bytes, of the header name or header value. If request doesn't exist or is in an invalid state (as documented for ext_offchain_http_response_headers_version_1) or the header_index is out of range, a value of -1 is returned. Given that the host must never write more bytes than the size of the buffer in out, and that the size of this buffer is expressed as a 32 bits number, a 64bits value of -1 is not ambiguous. If the buffer in out is too small to fit the entire header name of value, only the bytes that fit are written and the rest are discarded. (func $ext_offchain_submit_transaction_version_2 (param $data i64) (return i32))\n(func $ext_offchain_http_request_add_header_version_2 (param $request_id i32) (param $name i64) (param $value i64) (result i32)) Instead of allocating a buffer, writing 1 or 0 in it, and returning a pointer to it, the version 2 of these functions return 0 or 1, where 0 indicates success and 1 indicates failure. The runtime must interpret any non-0 value as failure, but the client must always return 1 in case of failure. (func $ext_offchain_local_storage_read_version_1 (param $kind i32) (param $key i64) (param $value_out i64) (param $offset i32) (result i64)) This function supercedes the ext_offchain_local_storage_get_version_1 host function, and uses an API and logic similar to ext_storage_read_version_2. It reads the offchain local storage key indicated by kind and key starting at the byte indicated by offset, and writes the value to the pointer-size indicated by value_out. The function returns the number of bytes that were written in the value_out buffer. If the entry doesn't exist, a value of -1 is returned. Given that the host must never write more bytes than the size of the buffer in value_out, and that the size of this buffer is expressed as a 32 bits number, a 64bits value of -1 is not ambiguous. The runtime execution stops with an error if value_out is outside of the range of the memory of the virtual machine, even if the size of the buffer is 0 or if the amount of data to write would be 0 bytes. (func $ext_offchain_network_peer_id_version_1 (param $out i64)) This function writes the PeerId of the local node to the memory location indicated by out. A PeerId is always 38 bytes long. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. (func $ext_input_size_version_1 (return i64))\n(func $ext_input_read_version_1 (param $offset i64) (param $out i64)) When a runtime function is called, the host uses the allocator to allocate memory within the runtime where to write some input data. These two new host functions provide an alternative way to access the input that doesn't make use of the allocator. The ext_input_size_version_1 host function returns the size in bytes of the input data. The ext_input_read_version_1 host function copies some data from the input data to the memory of the runtime. The offset parameter indicates the offset within the input data where to start copying, and must be inferior or equal to the value returned by ext_input_size_version_1. The out parameter is a pointer-size containing the buffer where to write to. The runtime execution stops with an error if offset is strictly superior to the size of the input data, or if out is outside of the range of the memory of the virtual machine, even if the amount of data to copy would be 0 bytes.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » New host functions","id":"343","title":"New host functions"},"344":{"body":"In addition to the new host functions, this RFC proposes two changes to the runtime-host interface: The following function signature is now also accepted for runtime entry points: (func (result i64)). Runtimes no longer need to expose a constant named __heap_base. All the host functions that are being superceded by new host functions are now considered deprecated and should no longer be used. The following other host functions are similarly also considered deprecated: ext_storage_get_version_1 ext_default_child_storage_get_version_1 ext_allocator_malloc_version_1 ext_allocator_free_version_1 ext_offchain_network_state_version_1","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Other changes","id":"344","title":"Other changes"},"345":{"body":"This RFC might be difficult to implement in Substrate due to the internal code design. It is not clear to the author of this RFC how difficult it would be.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Drawbacks","id":"345","title":"Drawbacks"},"346":{"body":"The API of these new functions was heavily inspired by API used by the C programming language.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Prior Art","id":"346","title":"Prior Art"},"347":{"body":"The changes in this RFC would need to be benchmarked. This involves implementing the RFC and measuring the speed difference. It is expected that most host functions are faster or equal speed to their deprecated counterparts, with the following exceptions: ext_input_size_version_1/ext_input_read_version_1 is inherently slower than obtaining a buffer with the entire data due to the two extra function calls and the extra copying. However, given that this only happens once per runtime call, the cost is expected to be negligible. The ext_crypto_*_public_keys, ext_offchain_network_state, and ext_offchain_http_* host functions are likely slightly slower than their deprecated counterparts, but given that they are used only in offchain workers this is acceptable. It is unclear how replacing ext_storage_get with ext_storage_read and ext_default_child_storage_get with ext_default_child_storage_read will impact performances. It is unclear how the changes to ext_storage_next_key and ext_default_child_storage_next_key will impact performances.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Unresolved Questions","id":"347","title":"Unresolved Questions"},"348":{"body":"After this RFC, we can remove from the source code of the host the allocator altogether in a future version, by removing support for all the deprecated host functions. This would remove the possibility to synchronize older blocks, which is probably controversial and requires a some preparations that are out of scope of this RFC.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Future Possibilities","id":"348","title":"Future Possibilities"},"349":{"body":"(source) Table of Contents RFC-0006: Dynamic Pricing for Bulk Coretime Sales Summary Motivation Requirements Stakeholders Explanation Overview Parameters Function Pseudo-code Properties of the Curve Example Configurations Drawbacks Prior Art and References Future Possibilities References Start Date July 09, 2023 Description A dynamic pricing model to adapt the regular price for bulk coretime sales Authors Tommi Enenkel (Alice und Bob) License MIT","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » RFC-0006: Dynamic Pricing for Bulk Coretime Sales","id":"349","title":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales"},"35":{"body":"The timeline is segmented into a sequentially ordered sequence of slots . This entire sequence of slots is then further partitioned into distinct segments known as epochs . The Sassafras protocol aims to map each slot within an epoch to the designated validators for that epoch, utilizing a ticketing system. The protocol operation can be roughly divided into five phases:","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4. Protocol Introduction","id":"35","title":"4. Protocol Introduction"},"350":{"body":"This RFC proposes a dynamic pricing model for the sale of Bulk Coretime on the Polkadot UC. The proposed model updates the regular price of cores for each sale period, by taking into account the number of cores sold in the previous sale, as well as a limit of cores and a target number of cores sold. It ensures a minimum price and limits price growth to a maximum price increase factor, while also giving govenance control over the steepness of the price change curve. It allows governance to address challenges arising from changing market conditions and should offer predictable and controlled price adjustments. Accompanying visualizations are provided at [1].","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Summary","id":"350","title":"Summary"},"351":{"body":"RFC-1 proposes periodic Bulk Coretime Sales as a mechanism to sell continouos regions of blockspace (suggested to be 4 weeks in length). A number of Blockspace Regions (compare RFC-1 & RFC-3) are provided for sale to the Broker-Chain each period and shall be sold in a way that provides value-capture for the Polkadot network. The exact pricing mechanism is out of scope for RFC-1 and shall be provided by this RFC. A dynamic pricing model is needed. A limited number of Regions are offered for sale each period. The model needs to find the price for a period based on supply and demand of the previous period. The model shall give Coretime consumers predictability about upcoming price developments and confidence that Polkadot governance can adapt the pricing model to changing market conditions.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Motivation","id":"351","title":"Motivation"},"352":{"body":"The solution SHOULD provide a dynamic pricing model that increases price with growing demand and reduces price with shrinking demand. The solution SHOULD have a slow rate of change for price if the number of Regions sold is close to a given sales target and increase the rate of change as the number of sales deviates from the target. The solution SHOULD provide the possibility to always have a minimum price per Region. The solution SHOULD provide a maximum factor of price increase should the limit of Regions sold per period be reached. The solution should allow governance to control the steepness of the price function","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Requirements","id":"352","title":"Requirements"},"353":{"body":"The primary stakeholders of this RFC are: Protocol researchers and evelopers Polkadot DOT token holders Polkadot parachains teams Brokers involved in the trade of Bulk Coretime","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Stakeholders","id":"353","title":"Stakeholders"},"354":{"body":"","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Explanation","id":"354","title":"Explanation"},"355":{"body":"The dynamic pricing model sets the new price based on supply and demand in the previous period. The model is a function of the number of Regions sold, piecewise-defined by two power functions. The left side ranges from 0 to the target. It represents situations where demand was lower than the target. The right side ranges from the target to limit. It represents situations where demand was higher than the target. The curve of the function forms a plateau around the target and then falls off to the left and rises up to the right. The shape of the plateau can be controlled via a scale factor for the left side and right side of the function respectively.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Overview","id":"355","title":"Overview"},"356":{"body":"From here on, we will also refer to Regions sold as 'cores' to stay congruent with RFC-1. Name Suggested Value Description Constraints BULK_LIMIT 45 The maximum number of cores being sold 0 < BULK_LIMIT BULK_TARGET 30 The target number of cores being sold 0 < BULK_TARGET <= BULK_LIMIT MIN_PRICE 1 The minimum price a core will always cost. 0 < MIN_PRICE MAX_PRICE_INCREASE_FACTOR 2 The maximum factor by which the price can change. 1 < MAX_PRICE_INCREASE_FACTOR SCALE_DOWN 2 The steepness of the left side of the function. 0 < SCALE_DOWN SCALE_UP 2 The steepness of the right side of the function. 0 < SCALE_UP","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Parameters","id":"356","title":"Parameters"},"357":{"body":"P(n) = \\begin{cases} (P_{\\text{old}} - P_{\\text{min}}) \\left(1 - \\left(\\frac{T - n}{T}\\right)^d\\right) + P_{\\text{min}} & \\text{if } n \\leq T \\\\ ((F - 1) \\cdot P_{\\text{old}} \\cdot \\left(\\frac{n - T}{L - T}\\right)^u) + P_{\\text{old}} & \\text{if } n > T \\end{cases} $P_{\\text{old}}$ is the old_price, the price of a core in the previous period. $P_{\\text{min}}$ is the MIN_PRICE, the minimum price a core will always cost. $F$ is the MAX_PRICE_INCREASE_FACTOR, the factor by which the price maximally can change from one period to another. $d$ is the SCALE_DOWN, the steepness of the left side of the function. $u$ is the SCALE_UP, the steepness of the right side of the function. $T$ is the BULK_TARGET, the target number of cores being sold. $L$ is the BULK_LIMIT, the maximum number of cores being sold. $n$ is cores_sold, the number of cores being sold. Left side The left side is a power function that describes an increasing concave downward curvature that approaches old_price. We realize this by using the form $y = a(1 - x^d)$, usually used as a downward sloping curve, but in our case flipped horizontally by letting the argument $x = \\frac{T-n}{T}$ decrease with $n$, doubly inversing the curve. This approach is chosen over a decaying exponential because it let's us a better control the shape of the plateau, especially allowing us to get a straight line by setting SCALE_DOWN to $1$. Ride side The right side is a power function of the form $y = a(x^u)$.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Function","id":"357","title":"Function"},"358":{"body":"NEW_PRICE := IF CORES_SOLD <= BULK_TARGET THEN (OLD_PRICE - MIN_PRICE) * (1 - ((BULK_TARGET - CORES_SOLD)^SCALE_DOWN / BULK_TARGET^SCALE_DOWN)) + MIN_PRICE\nELSE ((MAX_PRICE_INCREASE_FACTOR - 1) * OLD_PRICE * ((CORES_SOLD - BULK_TARGET)^SCALE_UP / (BULK_LIMIT - BULK_TARGET)^SCALE_UP)) + OLD_PRICE\nEND IF","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Pseudo-code","id":"358","title":"Pseudo-code"},"359":{"body":"Minimum Price We introduce MIN_PRICE to control the minimum price. The left side of the function shall be allowed to come close to 0 if cores sold approaches 0. The rationale is that if there are actually 0 cores sold, the previous sale price was too high and the price needs to adapt quickly. Price forms a plateau around the target If the number of cores is close to BULK_TARGET, less extreme price changes might be sensible. This ensures that a drop in sold cores or an increase doesn’t lead to immediate price changes, but rather slowly adapts. Only if more extreme changes in the number of sold cores occur, does the price slope increase. We introduce SCALE_DOWN and SCALE_UP to control for the steepness of the left and the right side of the function respectively. Max price increase factor We introduce MAX_PRICE_INCREASE_FACTOR as the factor that controls how much the price may increase from one period to another. Introducing this variable gives governance an additional control lever and avoids the necessity for a future runtime upgrade.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Properties of the Curve","id":"359","title":"Properties of the Curve"},"36":{"body":"Each of the validators associated to the target epoch generates and submits a set of candidate tickets to the blockchain. Every ticket is bundled with an anonymous proof of validity.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.1. Submission of Candidate Tickets","id":"36","title":"4.1. Submission of Candidate Tickets"},"360":{"body":"Baseline This example proposes the baseline parameters. If not mentioned otherwise, other examples use these values. The minimum price of a core is 1 DOT, the price can double every 4 weeks. Price change around BULK_TARGET is dampened slightly. BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 2\nSCALE_DOWN = 2\nSCALE_UP = 2\nOLD_PRICE = 1000 More aggressive pricing We might want to have a more aggressive price growth, allowing the price to triple every 4 weeks and have a linear increase in price on the right side. BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 3\nSCALE_DOWN = 2\nSCALE_UP = 1\nOLD_PRICE = 1000 Conservative pricing to ensure quick corrections in an affluent market If governance considers the risk that a sudden surge in DOT price might price chains out from bulk coretime markets, it can ensure the model quickly reacts to a quick drop in demand, by setting 0 < SCALE_DOWN < 1 and setting the max price increase factor more conservatively. BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 1.5\nSCALE_DOWN = 0.5\nSCALE_UP = 2\nOLD_PRICE = 1000 Linear pricing By setting the scaling factors to 1 and potentially adapting the max price increase, we can achieve a linear function BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 1.5\nSCALE_DOWN = 1\nSCALE_UP = 1\nOLD_PRICE = 1000","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Example Configurations","id":"360","title":"Example Configurations"},"361":{"body":"None at present.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Drawbacks","id":"361","title":"Drawbacks"},"362":{"body":"This pricing model is based on the requirements from the basic linear solution proposed in RFC-1, which is a simple dynamic pricing model and only used as proof. The present model adds additional considerations to make the model more adaptable under real conditions.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Prior Art and References","id":"362","title":"Prior Art and References"},"363":{"body":"This RFC, if accepted, shall be implemented in conjunction with RFC-1.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Future Possibilities","id":"363","title":"Future Possibilities"},"364":{"body":"[1] Polkadot forum post with visualizations: Dynamic Pricing for Bulk Coretime Sales","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » References","id":"364","title":"References"},"365":{"body":"(source) Table of Contents RFC-0009: Improved light client requests networking protocol Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-07-19 Description Modify the networking storage read requests to solve some problems with the existing one Authors Pierre Krieger","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » RFC-0009: Improved light client requests networking protocol","id":"365","title":"RFC-0009: Improved light client requests networking protocol"},"366":{"body":"Improve the networking messages that query storage items from the remote, in order to reduce the bandwidth usage and number of round trips of light clients.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Summary","id":"366","title":"Summary"},"367":{"body":"Clients on the Polkadot peer-to-peer network can be divided into two categories: full nodes and light clients. So-called full nodes are nodes that store the content of the chain locally on their disk, while light clients are nodes that don't. In order to access for example the balance of an account, a full node can do a disk read, while a light client needs to send a network message to a full node and wait for the full node to reply with the desired value. This reply is in the form of a Merkle proof, which makes it possible for the light client to verify the exactness of the value. Unfortunately, this network protocol is suffering from some issues: It is not possible for the querier to check whether a key exists in the storage of the chain except by querying the value of that key. The reply will thus include the value of the key, only for that value to be discarded by the querier that isn't interested by it. This is a waste of bandwidth. It is not possible for the querier to know whether a value in the storage of the chain has been modified between two blocks except by querying this value for both blocks and comparing them. Only a few storage values get modified in a block, and thus most of the time the comparison will be equal. This leads to a waste of bandwidth as the values have to be transferred. While it is possible to ask for multiple specific storage keys at the same time, it is not possible to ask for a list of keys that start with a certain prefix. Due to the way FRAME works, storage keys are grouped by \"prefix\", for example all account balances start with the same prefix. It is thus a common necessity for a light client to obtain the list of all keys (and possibly their values) that start with a specific prefix. This is currently not possible except by performing multiple queries serially that \"walk down\" the trie. Once Polkadot and Kusama will have transitioned to state_version = 1, which modifies the format of the trie entries, it will be possible to generate Merkle proofs that contain only the hashes of values in the storage. Thanks to this, it is already possible to prove the existence of a key without sending its entire value (only its hash), or to prove that a value has changed or not between two blocks (by sending just their hashes). Thus, the only reason why aforementioned issues exist is because the existing networking messages don't give the possibility for the querier to query this. This is what this proposal aims at fixing.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Motivation","id":"367","title":"Motivation"},"368":{"body":"This is the continuation of https://github.com/w3f/PPPs/pull/10, which itself is the continuation of https://github.com/w3f/PPPs/pull/5.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Stakeholders","id":"368","title":"Stakeholders"},"369":{"body":"The protobuf schema of the networking protocol can be found here: https://github.com/paritytech/substrate/blob/5b6519a7ff4a2d3cc424d78bc4830688f3b184c0/client/network/light/src/schema/light.v1.proto The proposal is to modify this protocol in this way: @@ -11,6 +11,7 @@ message Request { RemoteReadRequest remote_read_request = 2; RemoteReadChildRequest remote_read_child_request = 4; // Note: ids 3 and 5 were used in the past. It would be preferable to not re-use them.\n+ RemoteReadRequestV2 remote_read_request_v2 = 6; } } @@ -48,6 +49,21 @@ message RemoteReadRequest { repeated bytes keys = 3; } +message RemoteReadRequestV2 {\n+ required bytes block = 1;\n+ optional ChildTrieInfo child_trie_info = 2; // Read from the main trie if missing.\n+ repeated Key keys = 3;\n+ optional bytes onlyKeysAfter = 4;\n+ optional bool onlyKeysAfterIgnoreLastNibble = 5;\n+}\n+\n+message ChildTrieInfo {\n+ enum ChildTrieNamespace {\n+ DEFAULT = 1;\n+ }\n+\n+ required bytes hash = 1;\n+ required ChildTrieNamespace namespace = 2;\n+}\n+ // Remote read response. message RemoteReadResponse { // Read proof. If missing, indicates that the remote couldn't answer, for example because\n@@ -65,3 +81,8 @@ message RemoteReadChildRequest { // Storage keys. repeated bytes keys = 6; }\n+\n+message Key {\n+ required bytes key = 1;\n+ optional bool skipValue = 2; // Defaults to `false` if missing\n+ optional bool includeDescendants = 3; // Defaults to `false` if missing\n+} Note that the field names aren't very important as they are not sent over the wire. They can be changed at any time without any consequence. I would invite people to not discuss these field names as they are implementation details. This diff adds a new type of request (RemoteReadRequestV2). The new child_trie_info field in the request makes it possible to specify which trie is concerned by the request. The current networking protocol uses two different structs (RemoteReadRequest and RemoteReadChildRequest) for main trie and child trie queries, while this new request would make it possible to query either. This change doesn't fix any of the issues mentioned in the previous section, but is a side change that has been done for simplicity. An alternative could have been to specify the child_trie_info for each individual Key. However this would make it necessary to send the child trie hash many times over the network, which leads to a waste of bandwidth, and in my opinion makes things more complicated for no actual gain. If a querier would like to access more than one trie at the same time, it is always possible to send one query per trie. If skipValue is true for a Key, then the value associated with this key isn't important to the querier, and the replier is encouraged to replace the value with its hash provided that the storage item has a state_version equal to 1. If the storage value has a state_version equal to 0, then the optimization isn't possible and the replier should behave as if skipValue was false. If includeDescendants is true for a Key, then the replier must also include in the proof all keys that are descendant of the given key (in other words, its children, children of children, children of children of children, etc.). It must do so even if key itself doesn't have any storage value associated to it. The values of all of these descendants are replaced with their hashes if skipValue is true, similarly to key itself. The optional onlyKeysAfter and onlyKeysAfterIgnoreLastNibble fields can provide a lower bound for the keys contained in the proof. The responder must not include in its proof any node whose key is strictly inferior to the value in onlyKeysAfter. If onlyKeysAfterIgnoreLastNibble is provided, then the last 4 bits for onlyKeysAfter must be ignored. This makes it possible to represent a trie branch node that doesn't have an even number of nibbles. If no onlyKeysAfter is provided, it is equivalent to being empty, meaning that the response must start with the root node of the trie. If onlyKeysAfterIgnoreLastNibble is missing, it is equivalent to false. If onlyKeysAfterIgnoreLastNibble is true and onlyKeysAfter is missing or empty, then the request is invalid. For the purpose of this networking protocol, it should be considered as if the main trie contained an entry for each default child trie whose key is concat(\":child_storage:default:\", child_trie_hash) and whose value is equal to the trie root hash of that default child trie. This behavior is consistent with what the host functions observe when querying the storage. This behavior is present in the existing networking protocol, in other words this proposal doesn't change anything to the situation, but it is worth mentioning. Also note that child tries aren't considered as descendants of the main trie when it comes to the includeDescendants flag. In other words, if the request concerns the main trie, no content coming from child tries is ever sent back. This protocol keeps the same maximum response size limit as currently exists (16 MiB). It is not possible for the querier to know in advance whether its query will lead to a reply that exceeds the maximum size. If the reply is too large, the replier should send back only a limited number (but at least one) of requested items in the proof. The querier should then send additional requests for the rest of the items. A response containing none of the requested items is invalid. The server is allowed to silently discard some keys of the request if it judges that the number of requested keys is too high. This is in line with the fact that the server might truncate the response.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Explanation","id":"369","title":"Explanation"},"37":{"body":"Each candidate ticket undergoes a validation process for the associated validity proof and compliance with other protocol-specific constraints.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.2. Validation of Candidate Tickets","id":"37","title":"4.2. Validation of Candidate Tickets"},"370":{"body":"This proposal doesn't handle one specific situation: what if a proof containing a single specific item would exceed the response size limit? For example, if the response size limit was 1 MiB, querying the runtime code (which is typically 1.0 to 1.5 MiB) would be impossible as it's impossible to generate a proof less than 1 MiB. The response size limit is currently 16 MiB, meaning that no single storage item must exceed 16 MiB. Unfortunately, because it's impossible to verify a Merkle proof before having received it entirely, parsing the proof in a streaming way is also not possible. A way to solve this issue would be to Merkle-ize large storage items, so that a proof could include only a portion of a large storage item. Since this would require a change to the trie format, it is not realistically feasible in a short time frame.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Drawbacks","id":"370","title":"Drawbacks"},"371":{"body":"The main security consideration concerns the size of replies and the resources necessary to generate them. It is for example easily possible to ask for all keys and values of the chain, which would take a very long time to generate. Since responses to this networking protocol have a maximum size, the replier should truncate proofs that would lead to the response being too large. Note that it is already possible to send a query that would lead to a very large reply with the existing network protocol. The only thing that this proposal changes is that it would make it less complicated to perform such an attack. Implementers of the replier side should be careful to detect early on when a reply would exceed the maximum reply size, rather than inconditionally generate a reply, as this could take a very large amount of CPU, disk I/O, and memory. Existing implementations might currently be accidentally protected from such an attack thanks to the fact that requests have a maximum size, and thus that the list of keys in the query was bounded. After this proposal, this accidental protection would no longer exist. Malicious server nodes might truncate Merkle proofs even when they don't strictly need to, and it is not possible for the client to (easily) detect this situation. However, malicious server nodes can already do undesirable things such as throttle down their upload bandwidth or simply not respond. There is no need to handle unnecessarily truncated Merkle proofs any differently than a server simply not answering the request.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Testing, Security, and Privacy","id":"371","title":"Testing, Security, and Privacy"},"372":{"body":"","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Performance, Ergonomics, and Compatibility","id":"372","title":"Performance, Ergonomics, and Compatibility"},"373":{"body":"It is unclear to the author of the RFC what the performance implications are. Servers are supposed to have limits to the amount of resources they use to respond to requests, and as such the worst that can happen is that light client requests become a bit slower than they currently are.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Performance","id":"373","title":"Performance"},"374":{"body":"Irrelevant.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Ergonomics","id":"374","title":"Ergonomics"},"375":{"body":"The prior networking protocol is maintained for now. The older version of this protocol could get removed in a long time.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Compatibility","id":"375","title":"Compatibility"},"376":{"body":"None. This RFC is a clean-up of an existing mechanism.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Prior Art and References","id":"376","title":"Prior Art and References"},"377":{"body":"None","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Unresolved Questions","id":"377","title":"Unresolved Questions"},"378":{"body":"The current networking protocol could be deprecated in a long time. Additionally, the current \"state requests\" protocol (used for warp syncing) could also be deprecated in favor of this one.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Future Directions and Related Material","id":"378","title":"Future Directions and Related Material"},"379":{"body":"(source) Table of Contents RFC-0010: Burn Coretime Revenue Summary Motivation Stakeholders Explanation Start Date 19.07.2023 Description Revenue from Coretime sales should be burned Authors Jonas Gehrlein","breadcrumbs":"RFC-0010: Burn Coretime Revenue » RFC-0010: Burn Coretime Revenue","id":"379","title":"RFC-0010: Burn Coretime Revenue"},"38":{"body":"After collecting all valid candidate tickets, a deterministic method is used to uniquely associate a subset of these tickets with the slots of the target epoch.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.3. Tickets and Slots Binding","id":"38","title":"4.3. Tickets and Slots Binding"},"380":{"body":"The Polkadot UC will generate revenue from the sale of available Coretime. The question then arises: how should we handle these revenues? Broadly, there are two reasonable paths – burning the revenue and thereby removing it from total issuance or divert it to the Treasury. This Request for Comment (RFC) presents arguments favoring burning as the preferred mechanism for handling revenues from Coretime sales.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Summary","id":"380","title":"Summary"},"381":{"body":"How to handle the revenue accrued from Coretime sales is an important economic question that influences the value of DOT and should be properly discussed before deciding for either of the options. Now is the best time to start this discussion.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Motivation","id":"381","title":"Motivation"},"382":{"body":"Polkadot DOT token holders.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Stakeholders","id":"382","title":"Stakeholders"},"383":{"body":"This RFC discusses potential benefits of burning the revenue accrued from Coretime sales instead of diverting them to Treasury. Here are the following arguments for it. It's in the interest of the Polkadot community to have a consistent and predictable Treasury income, because volatility in the inflow can be damaging, especially in situations when it is insufficient. As such, this RFC operates under the presumption of a steady and sustainable Treasury income flow, which is crucial for the Polkadot community's stability. The assurance of a predictable Treasury income, as outlined in a prior discussion here , or through other equally effective measures, serves as a baseline assumption for this argument. Consequently, we need not concern ourselves with this particular issue here. This naturally begs the question - why should we introduce additional volatility to the Treasury by aligning it with the variable Coretime sales? It's worth noting that Coretime revenues often exhibit an inverse relationship with periods when Treasury spending should ideally be ramped up. During periods of low Coretime utilization (indicated by lower revenue), Treasury should spend more on projects and endeavours to increase the demand for Coretime. This pattern underscores that Coretime sales, by their very nature, are an inconsistent and unpredictable source of funding for the Treasury. Given the importance of maintaining a steady and predictable inflow, it's unnecessary to rely on another volatile mechanism. Some might argue that we could have both: a steady inflow (from inflation) and some added bonus from Coretime sales, but burning the revenue would offer further benefits as described below. Balancing Inflation: While DOT as a utility token inherently profits from a (reasonable) net inflation, it also benefits from a deflationary force that functions as a counterbalance to the overall inflation. Right now, the only mechanism on Polkadot that burns fees is the one for underutilized DOT in the Treasury. Finding other, more direct target for burns makes sense and the Coretime market is a good option. Clear incentives: By burning the revenue accrued on Coretime sales, prices paid by buyers are clearly costs. This removes distortion from the market that might arise when the paid tokens occur on some other places within the network. In that case, some actors might have secondary motives of influencing the price of Coretime sales, because they benefit down the line. For example, actors that actively participate in the Coretime sales are likely to also benefit from a higher Treasury balance, because they might frequently request funds for their projects. While those effects might appear far-fetched, they could accumulate. Burning the revenues makes sure that the prices paid are clearly costs to the actors themselves. Collective Value Accrual: Following the previous argument, burning the revenue also generates some externality, because it reduces the overall issuance of DOT and thereby increases the value of each remaining token. In contrast to the aforementioned argument, this benefits all token holders collectively and equally. Therefore, I'd consider this as the preferrable option, because burns lets all token holders participate at Polkadot's success as Coretime usage increases.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Explanation","id":"383","title":"Explanation"},"384":{"body":"(source) Table of Contents RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs Summary Motivation Stakeholders Explanation Core::initialize_block BlockBuilder::last_inherent Combined Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date July 24, 2023 Description Prepare the BlockBuilder and Core Runtime APIs for Multi-Block-Migrations. Authors Oliver Tale-Yazdi","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs","id":"384","title":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs"},"385":{"body":"Introduces breaking changes to the BlockBuilder and Core runtime APIs. A new function BlockBuilder::last_inherent is introduced and the return value of Core::initialize_block is changed to an enum. The versions of both APIs are bumped; BlockBuilder to 7 and Core to 5.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Summary","id":"385","title":"Summary"},"386":{"body":"There are three main features that motivate for this RFC: Multi-Block-Migrations: These make it possible to split a migration over multiple blocks. Pallet poll hook: Can be used to gradually replace on_initialize/on_finalize in places where the code does not need to run by a hard deadline, since it is not guaranteed to execute each block. New callback System::PostInherents: Can replace on_initialize/on_finalize where a hard deadline is required (complements poll). It is guaranteed to execute each block. These three features can be implemented when fulfilling these two requirements: The runtime can tell the block author to not include any transactions in the block. The runtime can execute logic right after all pallet-provided inherents have been applied.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Motivation","id":"386","title":"Motivation"},"387":{"body":"Substrate Maintainers: They have to implement this, including tests, audit and maintenance burden. Polkadot Runtime developers: They will have to adapt the runtime files to this breaking change. Polkadot Parachain Teams: They also have to adapt to the breaking changes but then eventually have multi-block migrations available.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Stakeholders","id":"387","title":"Stakeholders"},"388":{"body":"","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Explanation","id":"388","title":"Explanation"},"389":{"body":"This runtime API function is changed from returning () to ExtrinsicInclusionMode: enum ExtrinsicInclusionMode { /// All extrinsics are allowed in this block. AllExtrinsics, /// Only inherents are allowed in this block. OnlyInherents,\n} A block author MUST respect the ExtrinsicInclusionMode that is returned by initialize_block. The runtime MUST reject blocks that do have forbidden extrinsics in them.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Core::initialize_block","id":"389","title":"Core::initialize_block"},"39":{"body":"During the block production phase of the target epoch, validators are required to demonstrate their ownership of tickets. This step discloses the identity of the ticket owners.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.4. Claim of Ticket Ownership","id":"39","title":"4.4. Claim of Ticket Ownership"},"390":{"body":"A block author MUST always invoke last_inherent directly after applying all runtime-provided inherents. The runtime MUST reject blocks that violate this requirement.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » BlockBuilder::last_inherent","id":"390","title":"BlockBuilder::last_inherent"},"391":{"body":"Coming back to the three main features and how they can be implemented with these runtime APIs changes: 1. Multi-Block-Migrations : The runtime is being put into lock-down mode for the duration of the migration process by returning OnlyInherents from initialize_block. This ensures that no user provided transaction can interfere with the migration process. It is absolutely necessary to ensure this, since otherwise a transaction could call into un-migrated storage and violate storage invariants. The entry-point for the MBM logic is last_inherent. This is a good spot, because any data that is touched in inherents, is not MBM-migratable anyway. It could also be done before all other inherents or at the end of the block in finalize_block, but there is no downside from doing it in last_inherent and the other two features are in favour of this. 2. poll becomes possible by using last_inherent as entry-point. It would not be possible to use a pallet inherent like System::last_inherent to achieve this for two reasons. First is that pallets do not have access to AllPalletsWithSystem that is required to invoke the poll hook on all pallets. Second is that the runtime does currently not enforce an order of inherents. 3. System::PostInherents can be done in the same manner as poll.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Combined","id":"391","title":"Combined"},"392":{"body":"As noted in the review comments: this cements some assumptions about the order of inherents into the BlockBuilder traits. It was criticized for being to rigid in its assumptions.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Drawbacks","id":"392","title":"Drawbacks"},"393":{"body":"Compliance of a block author can be tested by adding specific code to the last_inherent hook and checking that it always executes. The new logic of initialize_block can be tested by checking that the block-builder will skip transactions and optional hooks when OnlyInherents is returned. Security: n/a Privacy: n/a","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Testing, Security, and Privacy","id":"393","title":"Testing, Security, and Privacy"},"394":{"body":"","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Performance, Ergonomics, and Compatibility","id":"394","title":"Performance, Ergonomics, and Compatibility"},"395":{"body":"The performance overhead is minimal in the sense that no clutter was added after fulfilling the requirements. A slight performance penalty is expected from invoking last_inherent once per block.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Performance","id":"395","title":"Performance"},"396":{"body":"The new interface allows for more extensible runtime logic. In the future, this will be utilized for multi-block-migrations which should be a huge ergonomic advantage for parachain developers.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Ergonomics","id":"396","title":"Ergonomics"},"397":{"body":"The advice here is OPTIONAL and outside of the RFC. To not degrade user experience, it is recommended to ensure that an updated node can still import historic blocks.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Compatibility","id":"397","title":"Compatibility"},"398":{"body":"The RFC is currently being implemented in polkadot-sdk#1781 . Related issues and merge requests: Simple multi block migrations Execute a hook after inherent but before transactions There is no module hook after inherents and before transactions","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Prior Art and References","id":"398","title":"Prior Art and References"},"399":{"body":"Please suggest a better name for BlockExecutiveMode. We already tried: RuntimeExecutiveMode, ExtrinsicInclusionMode. The names of the modes Normal and Minimal were also called AllExtrinsics and OnlyInherents, so if you have naming preferences; please post them. => renamed to ExtrinsicInclusionMode Is post_inherents more consistent instead of last_inherent? Then we should change it. => renamed to last_inherent","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Unresolved Questions","id":"399","title":"Unresolved Questions"},"4":{"body":"Deposit SHOULD be derived from deposit function adjusted by correspoding pricing mechansim.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Requirements","id":"4","title":"Requirements"},"40":{"body":"During block verification, the claim of ticket ownership is validated.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.5. Validation of Ticket Ownership","id":"40","title":"4.5. Validation of Ticket Ownership"},"400":{"body":"The long-term future here is to move the block building logic into the runtime. Currently there is a tight dance between the block author and the runtime; the author has to call into different runtime functions in quick succession and exact order. Any misstep causes the built block to be invalid. This can be unified and simplified by moving both parts of the logic into the runtime.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Future Directions and Related Material","id":"400","title":"Future Directions and Related Material"},"401":{"body":"(source) Table of Contents RFC-0015: Market Design Revisit Summary Motivation Stakeholders Explanation Bulk Markets Benefits of this system Further Discussion Points Drawbacks Prior Art and References Unresolved Questions Start Date 05.08.2023 Description This RFC refines the previously proposed mechanisms involving the various Coretime markets and presents an integrated framework for harmonious interaction between all markets. Authors Jonas Gehrlein","breadcrumbs":"RFC-0015: Market Design Revisit » RFC-0015: Market Design Revisit","id":"401","title":"RFC-0015: Market Design Revisit"},"402":{"body":"This document is a proposal for restructuring the bulk markets in the Polkadot UC's coretime allocation system to improve efficiency and fairness. The proposal suggests separating the BULK_PERIOD into MARKET_PERIOD and RENEWAL_PERIOD, allowing for a market-driven price discovery through a clearing price Dutch auction during the MARKET_PERIOD followed by renewal offers at the MARKET_PRICE during the RENEWAL_PERIOD. The new system ensures synchronicity between renewal and market prices, fairness among all current tenants, and efficient price discovery, while preserving price caps to provide security for current tenants. It seeks to start a discussion about the possibility of long-term leases.","breadcrumbs":"RFC-0015: Market Design Revisit » Summary","id":"402","title":"Summary"},"403":{"body":"While the initial RFC-1 has provided a robust framework for Coretime allocation within the Polkadot UC, this proposal builds upon its strengths and uses many provided building blocks to address some areas that could be further improved. In particular, this proposal introduces the following changes: It introduces a RESERVE_PRICE that anchors all markets, promoting price synchronicity within the Bulk markets (flexible + renewals). This reduces complexity. This makes sure all consumers pay a closely correlated price for coretime within a BULK_PERIOD. It reverses the order of the market and renewal phase. This allows to fine-tune the price through market forces. It exposes the renewal prices, while still being beneficial for longterm tenants, more to market forces. It removes the LeadIn period and introduces a (from the perspective of the coretime systemchain) passive Settlement Phase, that allows the secondary market to exert it's force. The premise of this proposal is to reduce complexity by introducing a common price (that develops releative to capacity consumption of Polkadot UC), while still allowing for market forces to add efficiency. Longterm lease owners still receive priority IF they can pay (close to) the market price. This prevents a situation where the renewal price significantly diverges from renewal prices which allows for core captures. While maximum price increase certainty might seem contradictory to efficient price discovery, the proposed model aims to balance these elements, utilizing market forces to determine the price and allocate cores effectively within certain bounds. It must be stated, that potential price increases remain predictable (in the worst-case) but could be higher than in the originally proposed design. The argument remains, however, that we need to allow market forces to affect all prices for an efficient Coretime pricing and allocation. Ultimately, this the framework proposed here adheres to all requirements stated in RFC-1.","breadcrumbs":"RFC-0015: Market Design Revisit » Motivation","id":"403","title":"Motivation"},"404":{"body":"Primary stakeholder sets are: Protocol researchers and developers, largely represented by the Polkadot Fellowship and Parity Technologies' Engineering division. Polkadot Parachain teams both present and future, and their users. Polkadot DOT token holders.","breadcrumbs":"RFC-0015: Market Design Revisit » Stakeholders","id":"404","title":"Stakeholders"},"405":{"body":"","breadcrumbs":"RFC-0015: Market Design Revisit » Explanation","id":"405","title":"Explanation"},"406":{"body":"The BULK_PERIOD has been restructured into two primary segments: the MARKET_PERIOD and RENEWAL_PERIOD, along with an auxiliary SETTLEMENT_PERIOD. This latter period doesn't necessitate any actions from the coretime system chain, but it facilitates a more efficient allocation of coretime in secondary markets. A significant departure from the original proposal lies in the timing of renewals, which now occur post-market phase. This adjustment aims to harmonize renewal prices with their market counterparts, ensuring a more consistent and equitable pricing model. Market Period (14 days) During the market period, core sales are conducted through a well-established clearing price Dutch auction that features a RESERVE_PRICE. The price initiates at a premium, designated as PRICE_PREMIUM (for instance, 30%) and descends linearly to the RESERVE_PRICE throughout the duration of the MARKET_PERIOD. Each bidder is expected to submit both their desired price and the quantity (that is, the amount of Coretime) they wish to purchase. To secure these acquisitions, bidders must make a deposit equivalent to their bid multiplied by the chosen quantity, in DOT. The market achieves resolution once all quantities have been sold, or the RESERVE_PRICE has been reached. This situation leads to determining the MARKET_PRICE either by the lowest bid that was successful in clearing the entire market or by the RESERVE_PRICE. This mechanism yields a uniform price, shaped by market forces (refer to the following discussion for an explanation of its benefits). In other words, all buyers pay the same price (per unit of Coretime). Further down the benefits of this variant of a Dutch auction is discussed. Note: In cases where some cores remain unsold in the market, all buyers are obligated to pay the RESERVE_PRICE. Renewal Period (7 days) As the RENEWAL_PERIOD commences, all current tenants are granted the opportunity to renew their cores at a slight discount of MARKET_PRICE * RENEWAL_DISCOUNT (for instance, 10%). This provision affords marginal benefits to existing tenants, balancing out the non-transferability aspect of renewals. At the end of the period, all available cores are allocated to the current tenants who have opted for renewal and the participants who placed bids during the market period. If the demand for cores exceeds supply, the cores left unclaimed from renewals may be awarded to bidders who placed their bids early in the auction, thereby subtly incentivizing early participation. If the supply exceeds the demand, all unsold cores are transferred to the Instantanous Market. Reserve Price Adjustment After all cores are allocated, the RESERVE_PRICE is adjusted following the process described in RFC-1 and serves as baseline price in the next BULK_PERIOD. Note: The particular price curve is outside the scope of the proposal. The MARKET_PRICE (as a function of RESERVE_PRICE), however, is able to capture higher demand very well while being capped downwards. That means, the curve that adjusts the RESERVE_PRICE should be more sensitive to undercapacity. Price Predictability Tasks that are in the \"renewal-pipeline\" can determine the upper bound for the price they will pay in any future period. The main driver of any price increase over time is the adjustment of the RESERVE_PRICE, that occurs at the end of each BULK_PERIOD after determining the capacity fillment of Polkadot UC. To calculate the maximum price in some future period, a task could assume maximum capacity in all upcoming periods and track the resulting price increase of RESERVE_PRICE. In the final period, that price can get a maximum premium of PRICE_PREMIUM and after deducting a potential RENEWAL_DISCOUNT, the maximum price can be determined. Settlement Period (7 days) During the settlement period, participants have ample time to trade Coretime on secondary markets before the onset of the next BULK_PERIOD. This allows for trading with full Coretime availability. Trading transferrable Coretime naturally continues during each BULK_PERIOD, albeit with cores already in use.","breadcrumbs":"RFC-0015: Market Design Revisit » Bulk Markets","id":"406","title":"Bulk Markets"},"407":{"body":"The introduction of a single price, the RESERVE_PRICE, provides an anchor for all Coretime markets. This is a preventative measure against the possible divergence and mismatch of prices, which could inadvertently lead to a situation where existing tenants secure cores at significantly below-market rates. With a more market-responsive pricing system, we can achieve a more efficient price discovery process. Any price increases will be less arbitrary and more dynamic. The ideal strategy for existing tenants is to maintain passivity, i.e., refrain from active market participation and simply accept the offer presented to them during the renewal phase. This approach lessens the organizational overhead for long-term projects. In the two-week market phase, the maximum price increase is known well in advance, providing ample time for tenants to secure necessary funds to meet the potential price escalation. All existing tenants pay an equal amount for Coretime, reflecting our intent to price the Coretime itself and not the relative timing of individual projects. Discussion: Clearing Price Dutch Auctions Having all bidders pay the market clearing price offers some benefits and disadvantages. Advantages: Fairness : All bidders pay the same price. Active participation : Because bidders are protected from overbidding (winner's curse), they are more likely to engage and reveal their true valuations. Simplicity : A single price is easier to work with for pricing renewals later. Truthfulness : There is no need to try to game the market by waiting with bidding. Bidders can just bid their valuations. Disadvantages: (Potentially) Lower Revenue : While the theory predicts revenue-equivalence between a uniform price and pay-as-bid type of auction, slightly lower revenue for the former type is observed empirically. Arguably, revenue maximization (i.e., squeezing out the maximum willingness to pay from bidders) is not the priority for Polkadot UC. Instead, it is interested in efficient allocation and the other benefits illustrated above. (Technical) Complexity : Instead of making a final purchase within the auction, the bid is only a deposit. Some refunds might happen after the auction is finished. This might pose additional challenges from the technical side (e.g., storage requirements).","breadcrumbs":"RFC-0015: Market Design Revisit » Benefits of this system","id":"407","title":"Benefits of this system"},"408":{"body":"Long-term Coretime : The Polkadot UC is undergoing a transition from two-year leases without an instantaneous market to a model encompassing instantaneous and one-month leases. This shift seems to pivot from one extreme to another. While the introduction of short-term leases, both instantaneous and for one month, is a constructive move to lower barriers to entry and promote experimentation, it seems to be the case that established projects might benefit from more extended lease options. We could consider offering another product, such as a six-month Coretime lease, using the same mechanism described herein. Although the majority of leases would still be sold on a one-month basis, the addition of this option would enhance market efficiency as it would strengthen the impact of a secondary market .","breadcrumbs":"RFC-0015: Market Design Revisit » Further Discussion Points","id":"408","title":"Further Discussion Points"},"409":{"body":"There are trade-offs that arise from this proposal, compared to the initial model. The most notable one is that here, I prioritize requirement 6 over requirement 2. The price, in the very \"worst-case\" (meaning a huge explosion in demand for coretime) could lead to a much larger increase of prices in Coretime. From an economic perspective, this (rare edgecase) would also mean that we'd vastly underprice Coretime in the original model, leading to highly inefficient allocations.","breadcrumbs":"RFC-0015: Market Design Revisit » Drawbacks","id":"409","title":"Drawbacks"},"41":{"body":"This chapter provides a high-level overview of the Bandersnatch VRF primitive as it relates to the Sassafras protocol. It's important to note that this section is not intended to serve as an exhaustive exploration of the mathematically intensive foundations of the cryptographic primitive. Rather, its primary aim is to offer a concise and accessible explanation of the primitive's role and usage which is relevant within the scope of this RFC. For an in-depth explanation, refer to the Ring-VRF paper authored by the Web3 foundation research team.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5. Bandersnatch VRFs Cryptographic Primitives","id":"41","title":"5. Bandersnatch VRFs Cryptographic Primitives"},"410":{"body":"This RFC builds extensively on the available ideas put forward in RFC-1 . Additionally, I want to express a special thanks to Samuel Haefner and Shahar Dobzinski for fruitful discussions and helping me structure my thoughts.","breadcrumbs":"RFC-0015: Market Design Revisit » Prior Art and References","id":"410","title":"Prior Art and References"},"411":{"body":"The technical feasability needs to be assessed.","breadcrumbs":"RFC-0015: Market Design Revisit » Unresolved Questions","id":"411","title":"Unresolved Questions"},"412":{"body":"(source) Table of Contents RFC-0020: Treasurer Track Confirmation Period Duration Modification Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics & Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date August 10, 2023 Description Treasurer Track Confirmation Period Duration Modification Authors ChaosDAO","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » RFC-0020: Treasurer Track Confirmation Period Duration Modification","id":"412","title":"RFC-0020: Treasurer Track Confirmation Period Duration Modification"},"413":{"body":"This RFC proposes a change to the duration of the confirmation period for the treasurer track from 3 hours to at least 48 hours.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Summary","id":"413","title":"Summary"},"414":{"body":"Track parameters for Polkadot OpenGov should be configured in a way that their \"difficulty\" increases relative to the power associated with their respective origin. When we look at the confirmation periods for treasury based tracks, we can see that this is clearly the case - with the one notable exception to the trend being the treasurer track: Track Description Confirmation Period Duration Small Tipper 10 Min Big Tipper 1 Hour Small Spender 12 Hours Medium Spender 24 Hours Big Spender 48 Hours Treasurer 3 Hours The confirmation period is one of the last lines of defence for the collective Polkadot stakeholders to react to a potentially bad referendum and vote NAY in order for its confirmation period to be aborted. Since the power / privilege level of the treasurer track is greater than that of the the big spender track – their confirmation period should be either equal, or the treasurer track's should be higher (note: currently the big spender track has a longer confirmation period than even the root track).","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Motivation","id":"414","title":"Motivation"},"415":{"body":"The primary stakeholders of this RFC are: DOT token holders – as this affects the protocol's treasury Entities wishing to submit a referendum via the treasurer track - as this affects the referendum timeline Projects with governance app integrations - see Performance, Ergonomics, and Compatibility section below. lolmcshizz - expressed interest to change this parameter Leemo - expressed interest to change this parameter Paradox - expressed interest to change this parameter","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Stakeholders","id":"415","title":"Stakeholders"},"416":{"body":"This RFC proposes to change the duration of the confirmation period for the treasurer track. In order to achieve that, the confirm_period parameter for the treasurer track in runtime/polkadot/src/governance/tracks.rs must be changed. Currently it is set to confirm_period: 3 * HOURS It should be changed to confirm_period: 48 * HOURS as a minimum. It may make sense for it to be changed to a value greater than 48 hours since the treasurer track has more power than the big spender track (48 hour confirmation period); however, the root track's confirmation period is 24 hours. 48 hours may be on the upper bounds of a trade-off between security and flexibility.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Explanation","id":"416","title":"Explanation"},"417":{"body":"The drawback of changing the treasurer track's confirmation period would be that the lifecycle of a referendum submitted on the treasurer track would ultimately be longer. However, the security of the protocol and its treasury should take priority here.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Drawbacks","id":"417","title":"Drawbacks"},"418":{"body":"This change will enhance / improve the security of the protocol as it relates to its treasury. The confirmation period is one of the last lines of defence for the collective Polkadot stakeholders to react to a potentially bad referendum and vote NAY in order for its confirmation period to be aborted. It makes sense for the treasurer track's confirmation period duration to be either equal to, or higher than, the big spender track confirmation period.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Testing, Security, and Privacy","id":"418","title":"Testing, Security, and Privacy"},"419":{"body":"","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Performance, Ergonomics, and Compatibility","id":"419","title":"Performance, Ergonomics, and Compatibility"},"42":{"body":"The VRF Input, denoted as VrfInput, is constructed by combining a domain identifier with arbitrary data through the vrf_input function: fn vrf_input(domain: OCTET_STRING, data: OCTET_STRING) -> VrfInput; The specific implementation details of this function are intentionally omitted. A reference implementation is provided by the bandersnatch_vrfs project. The above link points to some temporary code (Transcript label set to \"TemporaryDoNotDeploy\").\nAlso replace with docs.rs link once published to crates.io. Helper function to construct a VrfInput from a sequence of data items: fn vrf_input_from_items(domain: OCTET_STRING, items: SEQUENCE_OF OCTET_STRING) -> VrfInput { let data = OCTET_STRING(SIZE = 0); // empty octet string for item in items { data.append(item); data.append(LENGTH(item) as U8); } return vrf_input(domain, data); } Note that each item length is safely casted to an U8 as: In the context of this protocol all items lengths are less than 256. The function is internal and not designed for generic use.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.1. VRF Input","id":"42","title":"5.1. VRF Input"},"420":{"body":"This is a simple change (code wise) which should not affect the performance of the Polkadot protocol, outside of increasing the duration of the confirmation period on the treasurer track.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Performance","id":"420","title":"Performance"},"421":{"body":"If the proposal alters exposed interfaces to developers or end-users, which types of usage patterns have been optimized for? I have confirmed with the following projects that this is not a breaking change for their governance apps: Nova Wallet - directly uses on-chain data, and change will be automatically reflected. Polkassembly - directly uses on-chain data via rpc to fetch trackInfo so the change will be automatically reflected. SubSquare - scan script will update their app to the latest parameters and it will be automatically reflected in their app.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Ergonomics & Compatibility","id":"421","title":"Ergonomics & Compatibility"},"422":{"body":"N/A","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Prior Art and References","id":"422","title":"Prior Art and References"},"423":{"body":"The proposed change to the confirmation period duration for the treasurer track is to set it to 48 hours. This is equal to the current confirmation period for the big spender track. Typically it seems that track parameters increase in difficulty (duration, etc.) based on the power level of their associated origin. The longest confirmation period is that of the big spender, at 48 hours. There may be value in discussing whether or not the treasurer track confirmation period should be longer than 48 hours – a discussion of the trade-offs between security vs flexibility/agility. As a side note, the root track confirmation period is 24 hours.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Unresolved Questions","id":"423","title":"Unresolved Questions"},"424":{"body":"This RFC hopefully reminds the greater Polkadot community that it is possible to submit changes to the parameters of Polkadot OpenGov, and the greater protocol as a whole through the RFC process.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Future Directions and Related Material","id":"424","title":"Future Directions and Related Material"},"425":{"body":"(source) Table of Contents RFC-0035: Conviction Voting Delegation Modifications Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics & Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material October 10, 2023 Conviction Voting Delegation Modifications ChaosDAO","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » RFC-0035: Conviction Voting Delegation Modifications","id":"425","title":"RFC-0035: Conviction Voting Delegation Modifications"},"426":{"body":"This RFC proposes to make modifications to voting power delegations as part of the Conviction Voting pallet. The changes being proposed include: Allow a Delegator to vote independently of their Delegate if they so desire. Allow nested delegations – for example Charlie delegates to Bob who delegates to Alice – when Alice votes then both Bob and Charlie vote alongside Alice (in the current implementation Charlie will not vote when Alice votes). Make a change so that when a delegate votes abstain their delegated votes also vote abstain. Allow a Delegator to delegate/ undelegate their votes for all tracks with a single call.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Summary","id":"426","title":"Summary"},"427":{"body":"It has become clear since the launch of OpenGov that there are a few common tropes which pop up time and time again: The frequency of referenda is often too high for network participants to have sufficient time to review, comprehend, and ultimately vote on each individual referendum. This means that these network participants end up being inactive in on-chain governance. There are active network participants who are reviewing every referendum and are providing feedback in an attempt to help make the network thrive – but often time these participants do not control enough voting power to influence the network with their positive efforts. Delegating votes for all tracks currently requires long batched calls which result in high fees for the Delegator - resulting in a reluctance from many to delegate their votes. We believe (based on feedback from token holders with a larger stake in the network) that if there were some changes made to delegation mechanics, these larger stake holders would be more likely to delegate their voting power to active network participants – thus greatly increasing the support turnout.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Motivation","id":"427","title":"Motivation"},"428":{"body":"The primary stakeholders of this RFC are: The Polkadot Technical Fellowship who will have to research and implement the technical aspects of this RFC DOT token holders in general","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Stakeholders","id":"428","title":"Stakeholders"},"429":{"body":"This RFC proposes to make 4 changes to the convictionVoting pallet logic in order to improve the user experience of those delegating their voting power to another account. Allow a Delegator to vote independently of their Delegate if they so desire – this would empower network participants to more actively delegate their voting power to active voters, removing the tedious steps of having to undelegate across an entire track every time they do not agree with their delegate's voting direction for a particular referendum. Allow nested delegations – for example Charlie delegates to Bob who delegates to Alice – when Alice votes then both Bob and Charlie vote alongside Alice (in the current runtime Charlie will not vote when Alice votes) – This would allow network participants who control multiple (possibly derived) accounts to be able to delegate all of their voting power to a single account under their control, which would in turn delegate to a more active voting participant. Then if the delegator wishes to vote independently of their delegate they can control all of their voting power from a single account, which again removes the pain point of having to issue multiple undelegate extrinsics in the event that they disagree with their delegate. Have delegated votes follow their delegates abstain votes – there are times where delegates may vote abstain on a particular referendum and adding this functionality will increase the support of a particular referendum. It has a secondary benefit of meaning that Validators who are delegating their voting power do not lose points in the 1KV program in the event that their delegate votes abstain (another pain point which may be preventing those network participants from delegating). Allow a Delegator to delegate/ undelegate their votes for all tracks with a single call - in order to delegate votes across all tracks, a user must batch 15 calls - resulting in high costs for delegation. A single call for delegate_all/ undelegate_all would reduce the complexity and therefore costs of delegations considerably for prospective Delegators.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Explanation","id":"429","title":"Explanation"},"43":{"body":"Functionally, the VrfPreOutput can be considered as a seed for a PRNG to produce an arbitrary number of output bytes. It is computed as function of a VrfInput and a BandersnatchSecretKey. Two different approaches can be used to generate it: as a standalone object or as part of a signature. While the resulting VrfPreOutput is identical in both cases, the legitimacy of the latter can be confirmed by verifying the signature using the BandersnatchPublicKey of the expected signer. When constructed as a standalone object, VrfPreOutput is primarily employed in situations where the secret key owner needs to check if the generated output bytes fulfill some context specific criteria before applying the signature. To facilitate the construction, the following helper function is provided: fn vrf_pre_output(secret: BandernatchSecretKey, input: VrfInput) -> VrfPreOutput; An additional helper function is provided for producing an arbitrary number of output bytes from VrfInput and VrfPreOutput: fn vrf_bytes(len: U32, input: VrfInput, pre_output: VrfPreOuput) -> OCTET_STRING; Similar to the vrf_input function, the details about the implementation of these functions is omitted. Reference implementations are provided by the dleq_vrfs project vrf_pre_output vrf_bytes","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.2. VRF PreOutput","id":"43","title":"5.2. VRF PreOutput"},"430":{"body":"We do not foresee any drawbacks by implementing these changes. If anything we believe that this should help to increase overall voter turnout (via the means of delegation) which we see as a net positive.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Drawbacks","id":"430","title":"Drawbacks"},"431":{"body":"We feel that the Polkadot Technical Fellowship would be the most competent collective to identify the testing requirements for the ideas presented in this RFC.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Testing, Security, and Privacy","id":"431","title":"Testing, Security, and Privacy"},"432":{"body":"","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Performance, Ergonomics, and Compatibility","id":"432","title":"Performance, Ergonomics, and Compatibility"},"433":{"body":"This change may add extra chain storage requirements on Polkadot, especially with respect to nested delegations.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Performance","id":"433","title":"Performance"},"434":{"body":"The change to add nested delegations may affect governance interfaces such as Nova Wallet who will have to apply changes to their indexers to support nested delegations. It may also affect the Polkadot Delegation Dashboard as well as Polkassembly & SubSquare. We want to highlight the importance for ecosystem builders to create a mechanism for indexers and wallets to be able to understand that changes have occurred such as increasing the pallet version, etc.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Ergonomics & Compatibility","id":"434","title":"Ergonomics & Compatibility"},"435":{"body":"N/A","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Prior Art and References","id":"435","title":"Prior Art and References"},"436":{"body":"N/A","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Unresolved Questions","id":"436","title":"Unresolved Questions"},"437":{"body":"Additionally we would like to re-open the conversation about the potential for there to be free delegations. This was discussed by Dr Gavin Wood at Sub0 2022 and we feel like this would go a great way towards increasing the amount of network participants that are delegating: https://youtu.be/hSoSA6laK3Q?t=526 Overall, we strongly feel that delegations are a great way to increase voter turnout, and the ideas presented in this RFC would hopefully help in that aspect.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Future Directions and Related Material","id":"437","title":"Future Directions and Related Material"},"438":{"body":"(source) Table of Contents RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization Summary Motivation Stakeholders Explanation Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Start Date 30 October 2023 Description Host function to provide the storage proof size to runtimes. Authors Sebastian Kunert","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization","id":"438","title":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization"},"439":{"body":"This RFC proposes a new host function for parachains, storage_proof_size. It shall provide the size of the currently recorded storage proof to the runtime. Runtime authors can use the proof size to improve block utilization by retroactively reclaiming unused storage weight.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Summary","id":"439","title":"Summary"},"44":{"body":"This section outlines the data to be signed utilizing the VRF primitive: VrfSignatureData ::= SEQUENCE { transcript: Transcript, inputs: SEQUENCE_OF VrfInput } Where: transcript: a Transcript instance. In practice, this is a special hash of some protocol-specific data to sign which doesn't influence the VrfPreOutput. inputs: sequence of VrfInputs to be signed. To simplify the construction of VrfSignatureData objects, a helper function is defined: fn vrf_signature_data( transcript_label: OCTET_STRING, transcript_data: SEQUENCE_OF OCTET_STRING, inputs: SEQUENCE_OF VrfInput ) -> VrfSignatureData { let mut transcript = Transcript::new_labeled(transcript_label); for data in transcript_data { transcript.append(data); } VrfSignatureData { transcript, inputs } }","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.3. VRF Signature Data","id":"44","title":"5.3. VRF Signature Data"},"440":{"body":"The number of extrinsics that are included in a parachain block is limited by two constraints: execution time and proof size. FRAME weights cover both concepts, and block-builders use them to decide how many extrinsics to include in a block. However, these weights are calculated ahead of time by benchmarking on a machine with reference hardware. The execution-time properties of the state-trie and its storage items are unknown at benchmarking time. Therefore, we make some assumptions about the state-trie: Trie Depth: We assume a trie depth to account for intermediary nodes. Storage Item Size: We make a pessimistic assumption based on the MaxEncodedLen trait. These pessimistic assumptions lead to an overestimation of storage weight, negatively impacting block utilization on parachains. In addition, the current model does not account for multiple accesses to the same storage items. While these repetitive accesses will not increase storage-proof size, the runtime-side weight monitoring will account for them multiple times. Since the proof size is completely opaque to the runtime, we can not implement retroactive storage weight correction. A solution must provide a way for the runtime to track the exact storage-proof size consumed on a per-extrinsic basis.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Motivation","id":"440","title":"Motivation"},"441":{"body":"Parachain Teams: They MUST include this host function in their runtime and node. Light-client Implementors: They SHOULD include this host function in their runtime and node.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Stakeholders","id":"441","title":"Stakeholders"},"442":{"body":"This RFC proposes a new host function that exposes the storage-proof size to the runtime. As a result, runtimes can implement storage weight reclaiming mechanisms that improve block utilization. This RFC proposes the following host function signature: fn ext_storage_proof_size_version_1() -> u64; The host function MUST return an unsigned 64-bit integer value representing the current proof size. In block-execution and block-import contexts, this function MUST return the current size of the proof. To achieve this, parachain node implementors need to enable proof recording for block imports. In other contexts, this function MUST return 18446744073709551615 (u64::MAX), which represents disabled proof recording.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Explanation","id":"442","title":"Explanation"},"443":{"body":"","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Performance, Ergonomics, and Compatibility","id":"443","title":"Performance, Ergonomics, and Compatibility"},"444":{"body":"Parachain nodes need to enable proof recording during block import to correctly implement the proposed host function. Benchmarking conducted with balance transfers has shown a performance reduction of around 0.6% when proof recording is enabled.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Performance","id":"444","title":"Performance"},"445":{"body":"The host function proposed in this RFC allows parachain runtime developers to keep track of the proof size. Typical usage patterns would be to keep track of the overall proof size or the difference between subsequent calls to the host function.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Ergonomics","id":"445","title":"Ergonomics"},"446":{"body":"Parachain teams will need to include this host function to upgrade.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Compatibility","id":"446","title":"Compatibility"},"447":{"body":"Pull Request including proposed host function: PoV Reclaim (Clawback) Node Side . Issue with discussion: [FRAME core] Clawback PoV Weights For Dispatchables","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Prior Art and References","id":"447","title":"Prior Art and References"},"448":{"body":"(source) Table of Contents RFC-0044: Rent based registration model Summary Motivation Requirements Stakeholders Explanation Registering an on-demand parachain On-demand parachain pruning Ensuring rent is paid On-demand para re-registration Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 6 November 2023 Description A new rent based parachain registration model Authors Sergej Sakac","breadcrumbs":"RFC-0044: Rent based registration model » RFC-0044: Rent based registration model","id":"448","title":"RFC-0044: Rent based registration model"},"449":{"body":"This RFC proposes a new model for a sustainable on-demand parachain registration, involving a smaller initial deposit and periodic rent payments. The new model considers that on-demand chains may be unregistered and later re-registered. The proposed solution also ensures a quick startup for on-demand chains on Polkadot in such cases.","breadcrumbs":"RFC-0044: Rent based registration model » Summary","id":"449","title":"Summary"},"45":{"body":"Bandersnatch VRF offers two signature flavors: plain signature: much like a traditional Schnorr signature, ring signature: leverages a zk-SNARK to allows for anonymous signatures using a key from a predefined set of enabled keys, known as the ring. 5.4.1. Plain VRF Signature This section describes the signature process for VrfSignatureData using the plain signature flavor. PlainSignature ::= OCTET_STRING; VrfSignature ::= SEQUENCE { signature: PlainSignature, pre_outputs: SEQUENCE-OF VrfPreOutput } Where: signature: the actual plain signature. pre_outputs: sequence of VrfPreOutputs corresponding to the VrfInputs found within the VrfSignatureData. Helper function to construct VrfPlainSignature from VrfSignatureData: BandersnatchSecretKey ::= OCTET_STRING; fn vrf_sign( secret: BandernatchSecretKey, signature_data: VrfSignatureData ) -> VrfSignature Helper function for signature verification returning a BOOLEAN value indicating the validity of the signature (true on success): BandersnatchPublicKey ::= OCTET_STRING; fn vrf_verify( public: BandersnatchPublicKey, signature: VrfSignature ) -> BOOLEAN; In this document, the types BandersnatchSecretKey, BandersnatchPublicKey and PlainSignature are intentionally left undefined. Their definitions can be found in the bandersnatch_vrfs reference implementation. 5.4.2. Ring VRF Signature This section describes the signature process for VrfSignatureData using the ring signature flavor. RingSignature ::= OCTET_STRING; RingVrfSignature ::= SEQUENCE { signature: RingSignature, pre_outputs: SEQUENCE_OF VrfPreOutput } signature: the actual ring signature. pre_outputs: sequence of VrfPreOutputs corresponding to the VrfInputs found within the VrfSignatureData. Helper function to construct RingVrfSignature from VrfSignatureData: BandersnatchRingProverKey ::= OCTET_STRING; fn ring_vrf_sign( secret: BandersnatchRingProverKey, signature_data: VrfSignatureData, ) -> RingVrfSignature; Helper function for signature verification returning a BOOLEAN value indicating the validity of the signature (true on success). BandersnatchRingVerifierKey ::= OCTET_STRING; fn ring_vrf_verify( verifier: BandersnatchRingVerifierKey, signature: RingVrfSignature, ) -> BOOLEAN; Note that this function doesn't require the signer's public key. In this document, the types BandersnatchRingProverKey, BandersnatchRingVerifierKey, and RingSignature are intentionally left undefined. Their definitions can be found in the bandersnatch_vrfs reference implementation.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.4. VRF Signature","id":"45","title":"5.4. VRF Signature"},"450":{"body":"With the support of on-demand parachains on Polkadot, there is a need to explore a new, more cost-effective model for registering validation code. In the current model, the parachain manager is responsible for reserving a unique ParaId and covering the cost of storing the validation code of the parachain. These costs can escalate, particularly if the validation code is large. We need a better, sustainable model for registering on-demand parachains on Polkadot to help smaller teams deploy more easily. This RFC suggests a new payment model to create a more financially viable approach to on-demand parachain registration. In this model, a lower initial deposit is required, followed by recurring payments upon parachain registration. This new model will coexist with the existing one-time deposit payment model, offering teams seeking to deploy on-demand parachains on Polkadot a more cost-effective alternative.","breadcrumbs":"RFC-0044: Rent based registration model » Motivation","id":"450","title":"Motivation"},"451":{"body":"The solution SHOULD NOT affect the current model for registering validation code. The solution SHOULD offer an easily configurable way for governance to adjust the initial deposit and recurring rent cost. The solution SHOULD provide an incentive to prune validation code for which rent is not paid. The solution SHOULD allow anyone to re-register validation code under the same ParaId without the need for redundant pre-checking if it was already verified before. The solution MUST be compatible with the Agile Coretime model, as described in RFC#0001 The solution MUST allow anyone to pay the rent. The solution MUST prevent the removal of validation code if it could still be required for disputes or approval checking.","breadcrumbs":"RFC-0044: Rent based registration model » Requirements","id":"451","title":"Requirements"},"452":{"body":"Future Polkadot on-demand Parachains","breadcrumbs":"RFC-0044: Rent based registration model » Stakeholders","id":"452","title":"Stakeholders"},"453":{"body":"This RFC proposes a set of changes that will enable the new rent based approach to registering and storing validation code on-chain. The new model, compared to the current one, will require periodic rent payments. The parachain won't be pruned automatically if the rent is not paid, but by permitting anyone to prune the parachain and rewarding the caller, there will be an incentive for the removal of the validation code. On-demand parachains should still be able to utilize the current one-time payment model. However, given the size of the deposit required, it's highly likely that most on-demand parachains will opt for the new rent-based model. Importantly, this solution doesn't require any storage migrations in the current system nor does it introduce any breaking changes. The following provides a detailed description of this solution.","breadcrumbs":"RFC-0044: Rent based registration model » Explanation","id":"453","title":"Explanation"},"454":{"body":"In the current implementation of the registrar pallet, there are two constants that specify the necessary deposit for parachains to register and store their validation code: trait Config { // -- snip -- /// The deposit required for reserving a `ParaId`. #[pallet::constant] type ParaDeposit: Get>; /// The deposit to be paid per byte stored on chain. #[pallet::constant] type DataDepositPerByte: Get>;\n} This RFC proposes the addition of three new constants that will determine the payment amount and the frequency of the recurring rent payment: trait Config { // -- snip -- /// Defines how frequently the rent needs to be paid. /// /// The duration is set in sessions instead of block numbers. #[pallet::constant] type RentDuration: Get; /// The initial deposit amount for registering validation code. /// /// This is defined as a proportion of the deposit that would be required in the regular /// model. #[pallet::constant] type RentalDepositProportion: Get; /// The recurring rental cost defined as a proportion of the initial rental registration deposit. #[pallet::constant] type RentalRecurringProportion: Get;\n} Users will be able to reserve a ParaId and register their validation code for a proportion of the regular deposit required. However, they must also make additional rent payments at intervals of T::RentDuration. For registering using the new rental system we will have to make modifications to the paras-registrar pallet. We should expose two new extrinsics for this: mod pallet { // -- snip -- pub fn register_rental( origin: OriginFor, id: ParaId, genesis_head: HeadData, validation_code: ValidationCode, ) -> DispatchResult { /* ... */ } pub fn pay_rent(origin: OriginFor, id: ParaId) -> DispatchResult { /* ... */ }\n} A call to register_rental will require the reservation of only a percentage of the deposit that would otherwise be required to register the validation code when using the regular model. As described later in the Quick para re-registering section below, we will also store the code hash of each parachain to enable faster re-registration after a parachain has been pruned. For this reason the total initial deposit amount is increased to account for that. // The logic for calculating the initial deposit for parachain registered with the // new rent-based model: let validation_code_deposit = per_byte_fee.saturating_mul((validation_code.0.len() as u32).into()); let head_deposit = per_byte_fee.saturating_mul((genesis_head.0.len() as u32).into())\nlet hash_deposit = per_byte_fee.saturating_mul(HASH_SIZE); let deposit = T::RentalDepositProportion::get().mul_ceil(validation_code_deposit) .saturating_add(T::ParaDeposit::get()) .saturating_add(head_deposit) .saturating_add(hash_deposit) Once the ParaId is reserved and the validation code is registered the rent must be periodically paid to ensure the on-demand parachain doesn't get removed from the state. The pay_rent extrinsic should be callable by anyone, removing the need for the parachain to depend on the parachain manager for rent payments.","breadcrumbs":"RFC-0044: Rent based registration model » Registering an on-demand parachain","id":"454","title":"Registering an on-demand parachain"},"455":{"body":"If the rent is not paid, anyone has the option to prune the on-demand parachain and claim a portion of the initial deposit reserved for storing the validation code. This type of 'light' pruning only removes the validation code, while the head data and validation code hash are retained. The validation code hash is stored to allow anyone to register it again as well as to enable quicker re-registration by skipping the pre-checking process. The moment the rent is no longer paid, the parachain won't be able to purchase on-demand access, meaning no new blocks are allowed. This stage is called the \"hibernation\" stage, during which all the parachain-related data is still stored on-chain, but new blocks are not permitted. The reason for this is to ensure that the validation code is available in case it is needed in the dispute or approval checking subsystems. Waiting for one entire session will be enough to ensure it is safe to deregister the parachain. This means that anyone can prune the parachain only once the \"hibernation\" stage is over, which lasts for an entire session after the moment that the rent is not paid. The pruning described here is a light form of pruning, since it only removes the validation code. As with all parachains, the parachain or para manager can use the deregister extrinsic to remove all associated state.","breadcrumbs":"RFC-0044: Rent based registration model » On-demand parachain pruning","id":"455","title":"On-demand parachain pruning"},"456":{"body":"The paras pallet will be loosely coupled with the para-registrar pallet. This approach enables all the pallets tightly coupled with the paras pallet to have access to the rent status information. Once the validation code is stored without having its rent paid the assigner_on_demand pallet will ensure that an order for that parachain cannot be placed. This is easily achievable given that the assigner_on_demand pallet is tightly coupled with the paras pallet.","breadcrumbs":"RFC-0044: Rent based registration model » Ensuring rent is paid","id":"456","title":"Ensuring rent is paid"},"457":{"body":"If the rent isn't paid on time, and the parachain gets pruned, the new model should provide a quick way to re-register the same validation code under the same ParaId. This can be achieved by skipping the pre-checking process, as the validation code hash will be stored on-chain, allowing us to easily verify that the uploaded code remains unchanged. /// Stores the validation code hash for parachains that successfully completed the /// pre-checking process.\n///\n/// This is stored to enable faster on-demand para re-registration in case its pvf has been earlier\n/// registered and checked.\n///\n/// NOTE: During a runtime upgrade where the pre-checking rules change this storage map should be\n/// cleared appropriately.\n#[pallet::storage]\npub(super) type CheckedCodeHash = StorageMap<_, Twox64Concat, ParaId, ValidationCodeHash>; To enable parachain re-registration, we should introduce a new extrinsic in the paras-registrar pallet that allows this. The logic of this extrinsic will be same as regular registration, with the distinction that it can be called by anyone, and the required deposit will be smaller since it only has to cover for the storage of the validation code.","breadcrumbs":"RFC-0044: Rent based registration model » On-demand para re-registration","id":"457","title":"On-demand para re-registration"},"458":{"body":"This RFC does not alter the process of reserving a ParaId, and therefore, it does not propose reducing it, even though such a reduction could be beneficial. Even though this RFC doesn't delve into the specifics of the configuration values for parachain registration but rather focuses on the mechanism, configuring it carelessly could lead to potential problems. Since the validation code hash and head data are not removed when the parachain is pruned but only when the deregister extrinsic is called, the T::DataDepositPerByte must be set to a higher value to create a strong enough incentive for removing it from the state.","breadcrumbs":"RFC-0044: Rent based registration model » Drawbacks","id":"458","title":"Drawbacks"},"459":{"body":"The implementation of this RFC will be tested on Rococo first. Proper research should be conducted on setting the configuration values of the new system since these values can have great impact on the network. An audit is required to ensure the implementation's correctness. The proposal introduces no new privacy concerns.","breadcrumbs":"RFC-0044: Rent based registration model » Testing, Security, and Privacy","id":"459","title":"Testing, Security, and Privacy"},"46":{"body":"","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6. Sassafras Protocol","id":"46","title":"6. Sassafras Protocol"},"460":{"body":"","breadcrumbs":"RFC-0044: Rent based registration model » Performance, Ergonomics, and Compatibility","id":"460","title":"Performance, Ergonomics, and Compatibility"},"461":{"body":"This RFC should not introduce any performance impact.","breadcrumbs":"RFC-0044: Rent based registration model » Performance","id":"461","title":"Performance"},"462":{"body":"This RFC does not affect the current parachains, nor the parachains that intend to use the one-time payment model for parachain registration.","breadcrumbs":"RFC-0044: Rent based registration model » Ergonomics","id":"462","title":"Ergonomics"},"463":{"body":"This RFC does not break compatibility.","breadcrumbs":"RFC-0044: Rent based registration model » Compatibility","id":"463","title":"Compatibility"},"464":{"body":"Prior discussion on this topic: https://github.com/paritytech/polkadot-sdk/issues/1796","breadcrumbs":"RFC-0044: Rent based registration model » Prior Art and References","id":"464","title":"Prior Art and References"},"465":{"body":"None at this time.","breadcrumbs":"RFC-0044: Rent based registration model » Unresolved Questions","id":"465","title":"Unresolved Questions"},"466":{"body":"As noted in this GitHub issue , we want to raise the per-byte cost of on-chain data storage. However, a substantial increase in this cost would make it highly impractical for on-demand parachains to register on Polkadot. This RFC offers an alternative solution for on-demand parachains, ensuring that the per-byte cost increase doesn't overly burden the registration process.","breadcrumbs":"RFC-0044: Rent based registration model » Future Directions and Related Material","id":"466","title":"Future Directions and Related Material"},"467":{"body":"(source) Table of Contents RFC-0048: Generate ownership proof for SessionKeys Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 13 November 2023 Description Change SessionKeys runtime api to also create a proof of ownership for on chain registration. Authors Bastian Köcher","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » RFC-0048: Generate ownership proof for SessionKeys","id":"467","title":"RFC-0048: Generate ownership proof for SessionKeys"},"468":{"body":"When rotating/generating the SessionKeys of a node, the node calls into the runtime using the SessionKeys::generate_session_keys runtime api. This runtime api function needs to be changed to add an extra parameter owner and to change the return value to also include the proof of ownership. The owner should be the account id of the account setting the SessionKeys on chain to allow the on chain logic the verification of the proof. The on chain logic is then able to proof the possession of the private keys of the SessionKeys using the proof.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Summary","id":"468","title":"Summary"},"469":{"body":"When a user sets new SessionKeys on chain the chain can currently not ensure that the user actually has control over the private keys of the SessionKeys. With the RFC applied the chain is able to ensure that the user actually is in possession of the private keys.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Motivation","id":"469","title":"Motivation"},"47":{"body":"For epoch N, the first block produced must include a descriptor for some of the subsequent epoch (N+1) parameters. This descriptor is defined as: NextEpochDescriptor ::= SEQUENCE { randomness: OCTET_STRING(SIZE(32)), authorities: SEQUENCE_OF BandersnatchPublicKey, configuration: ProtocolConfiguration OPTIONAL } Where: randomness: 32-bytes pseudo random value. authorities: list of authorities. configuration: optional protocol configuration. This descriptor must be encoded using the SCALE encoding system and embedded in the block header's digest log. The identifier for the digest element is BYTES(\"SASS\"). A special case arises for the first block for epoch 0, which each node produces independently during the genesis phase. In this case, the NextEpochDescriptor relative to epoch 1 is shared within the second block, as outlined in section 6.1.3 . 6.1.1. Epoch Randomness The randomness in the NextEpochDescriptor randomness is computed as: randomness = BLAKE2(32, CONCAT(randomness_accumulator, BYTES(next_epoch.index))); Here, randomness_accumulator refers to a 32-byte OCTET_STRING stored on-chain and computed through a process that incorporates verifiable random elements from all previously imported blocks. The exact procedure is described in section 6.7 . 6.1.2. Protocol Configuration The ProtocolConfiguration primarily influences certain checks carried out during tickets validation. It is defined as: ProtocolConfiguration ::= SEQUENCE { attempts_number: U32, redundancy_factor: U32 } Where: attempts_number: maximum number of tickets that each authority for the next epoch is allowed to submit. redundancy_factor: expected ratio between epoch's slots and the cumulative number of tickets which can be submitted by the set of epoch validators. The attempts_number influences the anonymity of block producers. As all published tickets have a public attempt number less than attempts_number, all the tickets which share the attempt number value must belong to different block producers, which reduces anonymity late as we approach the epoch tail. Bigger values guarantee more anonymity but also more computation. Details about how exactly these parameters drives the ticket validity probability can be found in section 6.2.2 . ProtocolConfiguration values can be adjusted via a dedicated on-chain call which should have origin set to Root. Any proposed changes to ProtocolConfiguration that are submitted in epoch K will be included in the NextEpochDescriptor at the start of epoch K+1 and will come into effect in epoch K+2. 6.1.3. Startup Parameters Some of the initial parameters for the first epoch, Epoch #0, are set through the genesis configuration, which is defined as: GenesisConfig ::= SEQUENCE { authorities: SEQUENCE_OF BandersnatchPublicKey, configuration: ProtocolConfiguration, } The on-chain randomness accumulator is initialized only after the genesis block is produced. It starts with the hash of the genesis block: randomness_accumulator = genesis_hash Since block #0 is generated locally by each node as part of the genesis process, the first block that a validator explicitly produces for Epoch #0 is block #1. Therefore, block #1 is required to contain the NextEpochDescriptor for the following epoch, Epoch #1. The NextEpochDescriptor for Epoch #1: randomness: computed using the randomness_accumulator established post-genesis, as mentioned above. authorities: the same as those specified in the genesis configuration. configuration: not set (i.e., None), implying the reuse of the one found in the genesis configuration.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.1. Epoch's First Block","id":"47","title":"6.1. Epoch's First Block"},"470":{"body":"Polkadot runtime implementors Polkadot node implementors Validator operators","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Stakeholders","id":"470","title":"Stakeholders"},"471":{"body":"We are first going to explain the proof format being used: type Proof = (Signature, Signature, ..); The proof being a SCALE encoded tuple over all signatures of each private session key signing the owner. The actual type of each signature depends on the corresponding session key cryptographic algorithm. The order of the signatures in the proof is the same as the order of the session keys in the SessionKeys type. The version of the SessionKeys needs to be bumped to 1 to reflect the changes to the signature of SessionKeys_generate_session_keys: pub struct OpaqueGeneratedSessionKeys { pub keys: Vec, pub proof: Vec,\n} fn SessionKeys_generate_session_keys(owner: Vec, seed: Option>) -> OpaqueGeneratedSessionKeys; The default calling convention for runtime apis is applied, meaning the parameters passed as SCALE encoded array and the length of the encoded array. The return value being the SCALE encoded return value as u64 (array_ptr | length << 32). So, the actual exported function signature looks like: fn SessionKeys_generate_session_keys(array: *const u8, len: usize) -> u64; The on chain logic for setting the SessionKeys needs to be changed as well. It already gets the proof passed as Vec. This proof needs to be decoded to the actual Proof type as explained above. The proof and the SCALE encoded account_id of the sender are used to verify the ownership of the SessionKeys.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Explanation","id":"471","title":"Explanation"},"472":{"body":"Validator operators need to pass the their account id when rotating their session keys in a node. This will require updating some high level docs and making users familiar with the slightly changed ergonomics.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Drawbacks","id":"472","title":"Drawbacks"},"473":{"body":"Testing of the new changes is quite easy as it only requires passing an appropriate owner for the current testing context. The changes to the proof generation and verification got audited to ensure they are correct.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Testing, Security, and Privacy","id":"473","title":"Testing, Security, and Privacy"},"474":{"body":"","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Performance, Ergonomics, and Compatibility","id":"474","title":"Performance, Ergonomics, and Compatibility"},"475":{"body":"Does not have any impact on the overall performance, only setting SessionKeys will require more weight.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Performance","id":"475","title":"Performance"},"476":{"body":"If the proposal alters exposed interfaces to developers or end-users, which types of usage patterns have been optimized for?","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Ergonomics","id":"476","title":"Ergonomics"},"477":{"body":"Introduces a new version of the SessionKeys runtime api. Thus, nodes should be updated before a runtime is enacted that contains these changes otherwise they will fail to generate session keys.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Compatibility","id":"477","title":"Compatibility"},"478":{"body":"None.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Prior Art and References","id":"478","title":"Prior Art and References"},"479":{"body":"None.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Unresolved Questions","id":"479","title":"Unresolved Questions"},"48":{"body":"After the beginning of a new epoch N, each validator associated to the next epoch (N+1) constructs a set of tickets which may be eligible ( 6.2.2 ) to be submitted on-chain. These tickets aim to secure ownership of one or more slots in the upcoming epoch N+1. Each validator is allowed to submit a maximum number of tickets, as specified by the attempts_number field in the ProtocolConfiguration for the next epoch. The ideal timing for a validator to start creating the tickets is subject to strategy. A recommended approach is to initiate tickets creation once the block containing the NextEpochDescriptor is either probabilistically or, preferably, deterministically finalized. This timing is suggested to prevent to waste resources on tickets that might become obsolete if a different chain branch is finally chosen as the best one by the distributed system. However, validators are also advised to avoid submitting tickets too late, as tickets submitted during the second half of the epoch must be discarded. 6.2.1. Ticket Identifier Value Each ticket has an associated 128-bit unique identifier defined as: TicketId ::= U128; The value of the TicketId is determined by the output of the Bandersnatch VRF with the following input: ticket_id_vrf_input = vrf_input_from_items( BYTES(\"sassafras-ticket-v1.0\"), [ next_epoch.randomness, BYTES(next_epoch.index), BYTES(attempt_index) ] ); ticket_id_vrf_pre_output = vrf_pre_output(AUTHORITY_SECRET_KEY, ticket_id_vrf_input); ticket_bytes = vrf_bytes(16, ticket_id_vrf_input, ticket_id_vrf_pre_output); ticket_id = U128(ticket_bytes); Where: next_epoch.randomness: randomness associated to the target epoch. next_epoch.index: index of the target epoch as a U64. attempt_index: value going from 0 to attempts_number as a U32. 6.2.2. Tickets Threshold A TicketId value is valid if its value is less than the ticket threshold: T = (r·s)/(a·v) Where: v: epoch's authorities (aka validators) number s: epoch's slots number r: redundancy factor a: attempts number T: ticket threshold value (0 ≤ T ≤ 1) 6.2.2.1 Formula Derivation In an epoch with s slots, the goal is to achieve an expected number of tickets for block production equal to r·s. It's crucial to ensure that the probability of having fewer than s winning tickets is very low, even in scenarios where up to 1/3 of the authorities might be offline. To accomplish this, we first define the winning probability of a single ticket as T = (r·s)/(a·v). Let n be the actual number of participating validators, where v·2/3 ≤ n ≤ v. These n validators each make a attempts, for a total of a·n attempts. Let X be the random variable associated to the number of winning tickets, then its expected value is: E[X] = T·a·n = (r·s·n)/v By setting r = 2, we get s·4/3 ≤ E[X] ≤ s·2 Using Bernestein's inequality we get Pr[X < s] ≤ e^(-s/21). For instance, with s = 600 this results in Pr[X < s] < 4·10⁻¹³. Consequently, this approach offers considerable tolerance for offline nodes and ensures that all slots are likely to be filled with tickets. For more details about threshold formula please refer to the probabilities and parameters paragraph in the Web3 foundation description of the protocol. 6.2.3. Ticket Body Every candidate ticket identifier has an associated body, defined as: TicketBody ::= SEQUENCE { attempt_index: U32, erased_pub: Ed25519PublicKey, revealed_pub: Ed25519PublicKey } Where: attempt_index: attempt index used to generate the associated TicketId. erased_pub: Ed25519 ephemeral public key which gets erased as soon as the ticket is claimed. This key can be used to encrypt data for the validator. revealed_pub: Ed25519 ephemeral public key which gets exposed as soon as the ticket is claimed. The process of generating an erased key pair is intentionally left undefined, allowing the implementor the freedom to choose the most suitable strategy. Revealed key pair is generated using the bytes produced by the VRF with input parameters equal to those employed in TicketId generation, only the label is different. revealed_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-revealed-v1.0\"), data: [ next_epoch.randomness, BYTES(next_epoch.index), BYTES(attempt_index) ] ); revealed_vrf_pre_output = vrf_pre_output(AUTHORITY_SECRET_KEY, revealed_vrf_input); revealed_seed = vrf_bytes(32, revealed_vrf_input, revealed_vrf_pre_output); revealed_pub = ed25519_secret_from_seed(revealed_seed).public(); Where: next_epoch.randomness: randomness associated to the target epoch. next_epoch.index: index of the target epoch as a U64. attempt_index: value going from 0 to attempts_number as a U32. The ephemeral public keys are also used for claiming the tickets on block production. Refer to section 6.5 for details. 6.2.4. Ring Signature Production TicketBody must be signed using the Bandersnatch ring VRF flavor ( 5.4.2 ). sign_data = vrf_signature_data( transcript_label: BYTES(\"sassafras-ticket-body-v1.0\"), transcript_data: [ SCALE(ticket_body) ], inputs: [ ticket_id_vrf_input ] ) ring_signature = ring_vrf_sign(AUTHORITY_SECRET_KEY, RING_PROVER_KEY, sign_data) RING_PROVER_KEY object is constructed using the set of public keys which belong to the target epoch's authorities and the zk-SNARK context parameters (for more details refer to the bandersnatch_vrfs reference implementation). The body and the ring signature are combined in the TicketEnvelope structure: TicketEnvelope ::= SEQUENCE { ticket_body: TicketBody, ring_signature: RingVrfSignature } All the envelopes corresponding to valid tickets can be submitted on-chain via a dedicated on-chain call (extrinsic).","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.2. Creation and Submission of Candidate Tickets","id":"48","title":"6.2. Creation and Submission of Candidate Tickets"},"480":{"body":"Substrate implementation of the RFC .","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Future Directions and Related Material","id":"480","title":"Future Directions and Related Material"},"481":{"body":"(source) Table of Contents RFC-0054: Remove the concept of \"heap pages\" from the client Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-11-24 Description Remove the concept of heap pages from the client and move it to the runtime. Authors Pierre Krieger","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » RFC-0054: Remove the concept of \"heap pages\" from the client","id":"481","title":"RFC-0054: Remove the concept of \"heap pages\" from the client"},"482":{"body":"Rather than enforce a limit to the total memory consumption on the client side by loading the value at :heappages, enforce that limit on the runtime side.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Summary","id":"482","title":"Summary"},"483":{"body":"From the early days of Substrate up until recently, the runtime was present in two forms: the wasm runtime (wasm bytecode passed through an interpreter) and the native runtime (native code directly run by the client). Since the wasm runtime has a lower amount of available memory (4 GiB maximum) compared to the native runtime, and in order to ensure sure that the wasm and native runtimes always produce the same outcome, it was necessary to clamp the amount of memory available to both runtimes to the same value. In order to achieve this, a special storage key (a \"well-known\" key) :heappages was introduced and represents the number of \"wasm pages\" (one page equals 64kiB) of memory that are available to the memory allocator of the runtimes. If this storage key is absent, it defaults to 2048, which is 128 MiB. The native runtime has since then been disappeared, but the concept of \"heap pages\" still exists. This RFC proposes a simplification to the design of Polkadot by removing the concept of \"heap pages\" as is currently known, and proposes alternative ways to achieve the goal of limiting the amount of memory available.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Motivation","id":"483","title":"Motivation"},"484":{"body":"Client implementers and low-level runtime developers.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Stakeholders","id":"484","title":"Stakeholders"},"485":{"body":"This RFC proposes the following changes to the client: The client no longer considers :heappages as special. The memory allocator of the runtime is no longer bounded by the value of :heappages. With these changes, the memory available to the runtime is now only bounded by the available memory space (4 GiB), and optionally by the maximum amount of memory specified in the Wasm binary (see https://webassembly.github.io/spec/core/bikeshed/#memories%E2%91%A0). In Rust, the latter can be controlled during compilation with the flag -Clink-arg=--max-memory=.... Since the client-side change is strictly more tolerant than before, we can perform the change immediately after the runtime has been updated, and without having to worry about backwards compatibility. This RFC proposes three alternative paths (different chains might choose to follow different paths): Path A: add back the same memory limit to the runtime, like so: At initialization, the runtime loads the value of :heappages from the storage (using ext_storage_get or similar), and sets a global variable to the decoded value. The runtime tracks the total amount of memory that it has allocated using its instance of #[global_allocator] (https://github.com/paritytech/polkadot-sdk/blob/e3242d2c1e2018395c218357046cc88caaed78f3/substrate/primitives/io/src/lib.rs#L1748-L1762). This tracking should also be added around the host functions that perform allocations. If an allocation is attempted that would go over the value in the global variable, the memory allocation fails. Path B: define the memory limit using the -Clink-arg=--max-memory=... flag. Path C: don't add anything to the runtime. This is effectively the same as setting the memory limit to ~4 GiB (compared to the current default limit of 128 MiB). This solution is viable only because we're compiling for 32bits wasm rather than for example 64bits wasm. If we ever compile for 64bits wasm, this would need to be revisited. Each parachain can choose the option that they prefer, but the author of this RFC strongly suggests either option C or B.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Explanation","id":"485","title":"Explanation"},"486":{"body":"In case of path A, there is one situation where the behaviour pre-RFC is not equivalent to the one post-RFC: when a host function that performs an allocation (for example ext_storage_get) is called, without this RFC this allocation might fail due to reaching the maximum heap pages, while after this RFC this will always succeed. This is most likely not a problem, as storage values aren't supposed to be larger than a few megabytes at the very maximum. In the unfortunate event where the runtime runs out of memory, path B would make it more difficult to relax the memory limit, as we would need to re-upload the entire Wasm, compared to updating only :heappages in path A or before this RFC. In the case where the runtime runs out of memory only in the specific event where the Wasm runtime is modified, this could brick the chain. However, this situation is no different than the thousands of other ways that a bug in the runtime can brick a chain, and there's no reason to be particularily worried about this situation in particular.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Drawbacks","id":"486","title":"Drawbacks"},"487":{"body":"This RFC would reduce the chance of a consensus issue between clients. The :heappages are a rather obscure feature, and it is not clear what happens in some corner cases such as the value being too large (error? clamp?) or malformed. This RFC would completely erase these questions.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Testing, Security, and Privacy","id":"487","title":"Testing, Security, and Privacy"},"488":{"body":"","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Performance, Ergonomics, and Compatibility","id":"488","title":"Performance, Ergonomics, and Compatibility"},"489":{"body":"In case of path A, it is unclear how performances would be affected. Path A consists in moving client-side operations to the runtime without changing these operations, and as such performance differences are expected to be minimal. Overall, we're talking about one addition/subtraction per malloc and per free, so this is more than likely completely negligible. In case of path B and C, the performance gain would be a net positive, as this RFC strictly removes things.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Performance","id":"489","title":"Performance"},"49":{"body":"All the actions in the steps described by this paragraph are executed by on-chain code. Validation rules: Tickets submissions must occur within a block part of the first half of the epoch. Ring signature is verified using the on-chain RING_VERIFIER_KEY. Ticket identifier is locally (re)computed from the VrfPreOutput contained in the RingVrfSignature and its value is checked to be less than the tickets' threshold. Valid tickets bodies are all persisted on-chain.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.3. Validation of candidate tickets","id":"49","title":"6.3. Validation of candidate tickets"},"490":{"body":"This RFC would isolate the client and runtime more from each other, making it a bit easier to reason about the client or the runtime in isolation.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Ergonomics","id":"490","title":"Ergonomics"},"491":{"body":"Not a breaking change. The runtime-side changes can be applied immediately (without even having to wait for changes in the client), then as soon as the runtime is updated, the client can be updated without any transition period. One can even consider updating the client before the runtime, as it corresponds to path C.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Compatibility","id":"491","title":"Compatibility"},"492":{"body":"None.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Prior Art and References","id":"492","title":"Prior Art and References"},"493":{"body":"None.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Unresolved Questions","id":"493","title":"Unresolved Questions"},"494":{"body":"This RFC follows the same path as https://github.com/polkadot-fellows/RFCs/pull/4 by scoping everything related to memory allocations to the runtime.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Future Directions and Related Material","id":"494","title":"Future Directions and Related Material"},"495":{"body":"(source) Table of Contents RFC-0059: Add a discovery mechanism for nodes based on their capabilities Summary Motivation Stakeholders Explanation Capabilities DHT provider registration Secondary DHTs Head of the chain providers Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-12-18 Description Nodes having certain capabilities register themselves in the DHT to be discoverable Authors Pierre Krieger","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » RFC-0059: Add a discovery mechanism for nodes based on their capabilities","id":"495","title":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities"},"496":{"body":"This RFC proposes to make the mechanism of RFC #8 more generic by introducing the concept of \"capabilities\". Implementations can implement certain \"capabilities\", such as serving old block headers or being a parachain bootnode. The discovery mechanism of RFC #8 is extended to be able to discover nodes of specific capabilities.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Summary","id":"496","title":"Summary"},"497":{"body":"The Polkadot peer-to-peer network is made of nodes. Not all these nodes are equal. Some nodes store only the headers of recently blocks, some nodes store all the block headers and bodies since the genesis, some nodes store the storage of all blocks since the genesis, and so on. It is currently not possible to know ahead of time (without connecting to it and asking) which nodes have which data available, and it is not easily possible to build a list of nodes that have a specific piece of data available. If you want to download for example the header of block 500, you have to connect to a randomly-chosen node, ask it for block 500, and if it says that it doesn't have the block, disconnect and try another randomly-chosen node. In certain situations such as downloading the storage of old blocks, nodes that have the information are relatively rare, and finding through trial and error a node that has the data can take a long time. This RFC attempts to solve this problem by giving the possibility to build a list of nodes that are capable of serving specific data.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Motivation","id":"497","title":"Motivation"},"498":{"body":"Low-level client developers. People interested in accessing the archive of the chain.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Stakeholders","id":"498","title":"Stakeholders"},"499":{"body":"Reading RFC #8 first might help with comprehension, as this RFC is very similar. Please keep in mind while reading that everything below applies for both relay chains and parachains, except mentioned otherwise.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Explanation","id":"499","title":"Explanation"},"5":{"body":"NFT Creators : Primary beneficiaries of the proposed change, particularly those who found the current deposit requirements prohibitive. NFT Platforms : As the facilitator of artists' relations, NFT Marketplaces has a vested interest in onboarding new users and making the platform more accessible. dApp Developers : Making the blockspace more accessible will encourage developers to create and build unique dApps in the Polkadot ecosystem. Polkadot Community : Stands to benefit from an influx of artists, creators and diverse NFT collections, enhancing the overall ecosystem. Previous discussions have been held within the Polkadot Forum community and with artists expressing their concerns about the deposit amounts. Link .","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Stakeholders","id":"5","title":"Stakeholders"},"50":{"body":"Before the beginning of the next epoch, the on-chain list of tickets must be associated with the next epoch's slots such that there must be at most one ticket per slot. The assignment process happens in the second half of the submission epoch and follows these steps: Sorting: The complete list of tickets is sorted based on their TicketId value, with smaller values coming first. Trimming: In scenarios where there are more tickets than available slots, the list is trimmed to fit the epoch's slots by removing the larger value. Assignment: Tickets are assigned to the epoch's slots following an outside-in strategy. 6.4.1. Outside-In Assignment Given an ordered sequence of tickets [t0, t1, t2, ..., tk] to be assigned to n slots, where n ≥ k, the tickets are allocated according to the following strategy: slot-index : [ 0, 1, 2, ............ , n ] tickets : [ t1, t3, t5, ... , t4, t2, t0 ] Here slot-index is a relative value computed as: slot-index = absolute_slot - epoch_start_slot The association between each ticket and a slot is recorded on-chain and thus is public. What remains confidential is the identity of the ticket's author, and consequently, who possesses the authority to claim the corresponding slot. This information is known only to the author of the ticket. In case the number of available tickets is less than the number of epoch slots, some orphan slots in the middle of the epoch will remain unbounded to any ticket. For claiming strategy refer to 6.5.2 .","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.4. Ticket-Slot Binding","id":"50","title":"6.4. Ticket-Slot Binding"},"500":{"body":"This RFC defines a list of so-called capabilities : Head of chain provider . An implementation with this capability must be able to serve to other nodes block headers, block bodies, justifications, calls proofs, and storage proofs of \"recent\" (see below) blocks, and, for relay chains, to serve to other nodes warp sync proofs where the starting block is a session change block and must participate in Grandpa and Beefy gossip. History provider . An implementation with this capability must be able to serve to other nodes block headers and block bodies of any block since the genesis, and must be able to serve to other nodes justifications of any session change block since the genesis up until and including their currently finalized block. Archive provider . This capability is a superset of History provider . In addition to the requirements of History provider , an implementation with this capability must be able to serve call proofs and storage proof requests of any block since the genesis up until and including their currently finalized block. Parachain bootnode (only for relay chains). An implementation with this capability must be able to serve the network request described in RFC 8. In the context of the head of chain provider , the word \"recent\" means: any not-finalized-yet block that is equal to or an ancestor of a block that it has announced through a block announce, and any finalized block whose height is superior to its current finalized block minus 16 . This does not include blocks that have been pruned because they're not a descendant of its current finalized block. In other words, blocks that aren't a descendant of the current finalized block can be thrown away. A gap of blocks is required due to race conditions: when a node finalizes a block, it takes some time for its peers to be made aware of this, during which they might send requests concerning older blocks. The exact gap is arbitrary. Substrate is currently by default a head of chain provider provider. After it has finished warp syncing, it downloads the list of old blocks, after which it becomes a history provider . If Substrate is instead configured as an archive node, then it downloads the state of all blocks since the genesis, after which it becomes an archive provider , history provider , and head of chain provider . If blocks pruning is enabled and the chain is a relay chain, then Substrate unfortunately doesn't implement any of these capabilities, not even head of chain provider . This is considered as a bug that should be fixed, see https://github.com/paritytech/polkadot-sdk/issues/2733 .","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Capabilities","id":"500","title":"Capabilities"},"501":{"body":"This RFC heavily relies on the functionalities of the Kademlia DHT already in use by Polkadot. You can find a link to the specification here . Implementations that have the history provider capability should register themselves as providers under the key sha256(concat(\"history\", randomness)). Implementations that have the archive provider capability should register themselves as providers under the key sha256(concat(\"archive\", randomness)). Implementations that have the parachain bootnode capability should register themselves as provider under the key sha256(concat(scale_compact(para_id), randomness)), as described in RFC 8. \"Register themselves as providers\" consists in sending ADD_PROVIDER requests to nodes close to the key, as described in the Content provider advertisement section of the specification. The value of randomness can be found in the randomness field when calling the BabeApi_currentEpoch function. In order to avoid downtimes when the key changes, nodes should also register themselves as a secondary key that uses a value of randomness equal to the randomness field when calling BabeApi_nextEpoch. Implementers should be aware that their implementation of Kademlia might already hash the key before XOR'ing it. The key is not meant to be hashed twice. Implementations must not register themselves if they don't fulfill the capability yet . For example, a node configured to be an archive node but that is still building its archive state in the background must register itself only after it has finished building its archive.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » DHT provider registration","id":"501","title":"DHT provider registration"},"502":{"body":"Implementations that have the history provider capability must also participate in a secondary DHT that comprises only of nodes with that capability. The protocol name of that secondary DHT must be //kad/history. Similarly, implementations that have the archive provider capability must also participate in a secondary DHT that comprises only of nodes with that capability and whose protocol name is //kad/archive. Just like implementations must not register themselves if they don't fulfill their capability yet, they must also not participate in the secondary DHT if they don't fulfill their capability yet.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Secondary DHTs","id":"502","title":"Secondary DHTs"},"503":{"body":"Implementations that have the head of the chain provider capability do not register themselves as providers, but instead are the nodes that participate in the main DHT. In other words, they are the nodes that serve requests of the //kad protocol. Any implementation that isn't a head of the chain provider (read: light clients) must not participate in the main DHT. This is already presently the case. Implementations must not participate in the main DHT if they don't fulfill the capability yet. For example, a node that is still in the process of warp syncing must not participate in the main DHT. However, assuming that warp syncing doesn't last more than a few seconds, it is acceptable to ignore this requirement in order to avoid complicating implementations too much.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Head of the chain providers","id":"503","title":"Head of the chain providers"},"504":{"body":"None that I can see.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Drawbacks","id":"504","title":"Drawbacks"},"505":{"body":"The content of this section is basically the same as the one in RFC 8. This mechanism doesn't add or remove any security by itself, as it relies on existing mechanisms. Due to the way Kademlia works, it would become the responsibility of the 20 Polkadot nodes whose sha256(peer_id) is closest to the key (described in the explanations section) to store the list of nodes that have specific capabilities. Furthermore, when a large number of providers are registered, only the providers closest to the key are kept, up to a certain implementation-defined limit. For this reason, an attacker can abuse this mechanism by randomly generating libp2p PeerIds until they find the 20 entries closest to the key representing the target capability. They are then in control of the list of nodes with that capability. While doing this can in no way be actually harmful, it could lead to eclipse attacks. Because the key changes periodically and isn't predictable, and assuming that the Polkadot DHT is sufficiently large, it is not realistic for an attack like this to be maintained in the long term.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Testing, Security, and Privacy","id":"505","title":"Testing, Security, and Privacy"},"506":{"body":"","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Performance, Ergonomics, and Compatibility","id":"506","title":"Performance, Ergonomics, and Compatibility"},"507":{"body":"The DHT mechanism generally has a low overhead, especially given that publishing providers is done only every 24 hours. Doing a Kademlia iterative query then sending a provider record shouldn't take more than around 50 kiB in total of bandwidth for the parachain bootnode. Assuming 1000 nodes with a specific capability, the 20 Polkadot full nodes corresponding to that capability will each receive a sudden spike of a few megabytes of networking traffic when the key rotates. Again, this is relatively negligible. If this becomes a problem, one can add a random delay before a node registers itself to be the provider of the key corresponding to BabeApi_next_epoch. Maybe the biggest uncertainty is the traffic that the 20 Polkadot full nodes will receive from light clients that desire knowing the nodes with a capability. If this every becomes a problem, this value of 20 is an arbitrary constant that can be increased for more redundancy.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Performance","id":"507","title":"Performance"},"508":{"body":"Irrelevant.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Ergonomics","id":"508","title":"Ergonomics"},"509":{"body":"Irrelevant.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Compatibility","id":"509","title":"Compatibility"},"51":{"body":"With tickets bound to epoch slots, every validator acquires information about the slots for which they are supposed to produce a block. The procedure for slot claiming depends on whether a given slot has an associated ticket according to the on-chain state. If a slot is associated with a ticket, the primary authoring method is used. Conversely, the protocol resorts to the secondary method as a fallback. 6.5.1. Primary Method Let ticket_body be the TicketBody that has been committed to the on-chain state, curr_epoch denote an object containing information about the current epoch, and slot represent the slot number (absolute). Follows the construction of VrfSignatureData: randomness_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-randomness-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(slot) ] ); revealed_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-revealed-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(ticket_body.attempt_index) ] ); sign_data = vrf_signature_data( transcript_label: BYTES(\"sassafras-claim-v1.0\"), transcript_data: [ SCALE(ticket_body) ], inputs: [ randomness_vrf_input, revealed_vrf_input ] ); 6.5.1.1. Ephemeral Key Claim Fiat-Shamir transform is used to obtain a 32-byte challenge associated with the VrfSignData transcript. Validators employ the secret key associated with erased_pub, which has been committed in the TicketBody, to sign the challenge. challenge = sign_data.transcript.challenge(); erased_signature = ed25519_sign(ERASED_SECRET_KEY, challenge); As ticket's ownership can be claimed by reconstructing the revealed_pub entry of the committed TicketBody, this step is considered optional. Is this step really necessary?\n- Isn't better to keep it simple if this step doesn't offer any extra security?\n- We already have a strong method to claim ticket ownership using the vrf output\n- What if a validator provides both the proofs? More weight for the branch (i.e. used to decide what is the best branch by validators)? E.g. - primary method + ed25519 erased signature => score 2 - primary method => score 1 - fallback method => score 0 6.5.2. Secondary Method By noting that the authorities registered on-chain are kept in an ordered list, the index of the authority which has the privilege to claim an orphan slot is: index_bytes = BLAKE2(4, CONCAT(epoch_randomness, BYTES(slot))); index = U32(index_bytes) mod authorities_number; Given randomness_vrf_input constructed as shown for the primary method ( 6.5.1 ), the VrfSignatureData is constructed as: sign_data = vrf_signature_data( transcript_label: BYTES(\"sassafras-claim-v1.0\"), transcript_data: [ ], inputs: [ randomness_vrf_input ] ) 6.5.3. Slot Claim Object The SlotClaim structure is used to contain all the necessary information to assess ownership of a slot. SlotClaim ::= SEQUENCE { authority_index: U32, slot: U64, signature: VrfSignature, erased_signature: Ed25519Signature OPTIONAL } The claim is constructed as follows: signature = vrf_sign(AUTHORITY_SECRET_KEY, sign_data); claim = SlotClaim { authority_index, slot, signature, erased_signature } Where: authority_index: index of the block author in the on-chain authorities list. slot: slot number (absolute, not relative to the epoch start) signature: signature relative to the sign_data constructed via the primary 6.5.1 or secondary ( 6.5.2 ) method. erased_signature: optional signature providing an additional proof of ticket ownership ( 6.5.1.1 ). The signature includes one or two VrfPreOutputs. The first is always present and is used to generate per-block randomness to feed the randomness accumulator ( 6.7 ). The second is included if the slot is bound to a ticket. This is relevant to claim ticket ownership ( 6.6.1 ). The claim object is SCALE encoded and sent in the block's header digest log.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.5. Slot Claim Production","id":"51","title":"6.5. Slot Claim Production"},"510":{"body":"Unknown.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Prior Art and References","id":"510","title":"Prior Art and References"},"511":{"body":"While it fundamentally doesn't change much to this RFC, using BabeApi_currentEpoch and BabeApi_nextEpoch might be inappropriate. I'm not familiar enough with good practices within the runtime to have an opinion here. Should it be an entirely new pallet?","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Unresolved Questions","id":"511","title":"Unresolved Questions"},"512":{"body":"This RFC would make it possible to reliably discover archive nodes, which would make it possible to reliably send archive node requests, something that isn't currently possible. This could solve the problem of finding archive RPC node providers by migrating archive-related request to using the native peer-to-peer protocol rather than JSON-RPC. If we ever decide to break backwards compatibility, we could divide the \"history\" and \"archive\" capabilities in two, between nodes capable of serving older blocks and nodes capable of serving newer blocks. We could even add to the peer-to-peer network nodes that are only capable of serving older blocks (by reading from a database) but do not participate in the head of the chain, and that just exist for historical purposes.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Future Directions and Related Material","id":"512","title":"Future Directions and Related Material"},"52":{"body":"The signature within the SlotClaim is verified using a VrfSignData constructed as specified in 6.5 . public_key = authorities[claim.authority_index]; result = vrf_verify(public_key, sign_data, claim.signature); assert(result == true); With: authorities: list of authorities for the epoch, as recorded on-chain. sign_data: data that has been signed, constructed as specified in 6.5 . If signature verification is successful, the validation process then diverges based on whether the slot is associated with a ticket according to the on-chain state. For slots tied to a ticket, the primary verification method is employed. Otherwise, the secondary method is utilized.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.6. Slot Claim Verification","id":"52","title":"6.6. Slot Claim Verification"},"53":{"body":"This method verifies ticket ownership using the second VrfPreOutput from the SlotClaim signature The process involves comparing the revealed_pub key from the committed TicketBody with a reconstructed key using the VrfPreOutput and the expected VrfInput. A mismatch indicates an illegitimate claim. revealed_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-revealed-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(ticket_body.attempt_index) ] ); reveled_vrf_pre_output = claim.signature.pre_outputs[1]; revealed_seed = vrf_bytes(32, revealed_vrf_input, revealed_vrf_pre_output); revealed_pub = ed25519_secret_from_seed(revealed_seed).public(); assert(revealed_pub == ticket_body.revealed_pub); 6.6.1.1. Ephemeral Key Signature Check If the erased_signature is present in SlotClaim, the erased_pub within the committed TicketBody key is used to verify it. The signed challenge is generated as outlined in section 6.5.1.1 . challenge = sign_data.transcript.challenge(); result = ed25519_verify(ticket_body.erased_pub, challenge, claim.erased_signature); assert(result == true); 6.6.2. Secondary Method If the slot doesn't have any associated ticket then the validator index contained in the claim should match the one given by the rule outlined in section 6.5.2 .","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.6.1. Primary Method","id":"53","title":"6.6.1. Primary Method"},"54":{"body":"The first VrfPreOutput which ships within the block's SlotClaim signature is mandatory and must be used as entropy source for the randomness which gets accumulated on-chain after block transactions execution. Given claim the instance of SlotClaim found within the block header, and randomness_accumulator the current value for the randomness accumulator, the randomness_accumulator value is updated as follows: randomness_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-randomness-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(slot) ] ); randomness_vrf_pre_output = claim.signature.pre_outputs[0]; randomness = vrf_bytes(32, randomness_vrf_input, randomness_vrf_pre_output); randomness_accumulator = BLAKE2(32, CONCAT(randomness_accumulator, randomness)); The randomness_accumulator never resets and is a continuously evolving value. It primarily serves as a basis for calculating the randomness associated to the epochs as outlined on section 6.1 , but custom usages from the user are not excluded.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.7. Randomness Accumulator","id":"54","title":"6.7. Randomness Accumulator"},"55":{"body":"None","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 7. Drawbacks","id":"55","title":"7. Drawbacks"},"56":{"body":"It is critical that implementations of this RFC undergo thorough testing on test networks. A security audit may be desirable to ensure the implementation does not introduce unwanted side effects.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 8. Testing, Security, and Privacy","id":"56","title":"8. Testing, Security, and Privacy"},"57":{"body":"","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9. Performance, Ergonomics, and Compatibility","id":"57","title":"9. Performance, Ergonomics, and Compatibility"},"58":{"body":"Adopting Sassafras consensus marks a significant improvement in reducing the frequency of short-lived forks. Forks are eliminated by design. Forks may only result from network disruptions or protocol attacks. In such cases, the choice of which fork to follow upon recovery is clear-cut, with only one valid option.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9.1. Performance","id":"58","title":"9.1. Performance"},"59":{"body":"No specific considerations.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9.2. Ergonomics","id":"59","title":"9.2. Ergonomics"},"6":{"body":"This RFC proposes a revision of the deposit constants in the nfts pallet on the Polkadot Asset Hub. The new deposit amounts would be determined by a standard deposit formula. This RFC suggests modifying deposit constants defined in the nfts pallet on the Polkadot Asset Hub to require a lower deposit. The reduced deposit amount should be determined by the deposit adjusted by the pricing mechanism (arbitrary number/another pricing function).","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Explanation","id":"6","title":"Explanation"},"60":{"body":"The adoption of Sassafras affects the native client and thus can't be introduced just via a runtime upgrade. A deployment strategy should be carefully engineered for live networks. This subject is left open for a dedicated RFC.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9.3. Compatibility","id":"60","title":"9.3. Compatibility"},"61":{"body":"Web3 Foundation research page Sassafras research paper Ring-VRF research paper Sassafras reference implementation tracking issue Sassafras reference implementation main PR Bandersnatch VRFS reference implementation","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 10. Prior Art and References","id":"61","title":"10. Prior Art and References"},"62":{"body":"None","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 11. Unresolved Questions","id":"62","title":"11. Unresolved Questions"},"63":{"body":"While this RFC lays the groundwork and outlines the core aspects of the protocol, several crucial topics remain to be addressed in future RFCs. These include:","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12. Future Directions and Related Material","id":"63","title":"12. Future Directions and Related Material"},"64":{"body":"Outbound Interfaces : Interfaces that the host environment provides to the on-chain code, typically known as Host Functions . Unrecorded Inbound Interfaces . Interfaces that the on-chain code provides to the host code, typically known as Runtime APIs . Transactional Inbound Interfaces . Interfaces that the on-chain code provides to the world to alter the chain state, typically known as Transactions (or extrinsics in the Polkadot ecosystem)","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.1. Interactions with On-Chain Code","id":"64","title":"12.1. Interactions with On-Chain Code"},"65":{"body":"Protocol Migration . Exploring how this protocol can seamlessly replace an already operational instance of another protocol. Future RFCs should focus on deployment strategies to facilitate a smooth transition.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.2. Deployment Strategies","id":"65","title":"12.2. Deployment Strategies"},"66":{"body":"Procedure : Determining the procedure for the zk-SNARK SRS (Structured Reference String) initialization. Future RFCs should provide insights into whether this process should include an ad-hoc initialization ceremony or if we can reuse an SRS from another ecosystem (e.g. Zcash or Ethereum). Sharing with Para-chains : Considering the complexity of the process, we must understand whether the SRS is shared with system para-chains or maintained independently.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.3. ZK-SNARK SRS Initialization","id":"66","title":"12.3. ZK-SNARK SRS Initialization"},"67":{"body":"Mixnet Integration : Submitting tickets directly can pose a risk of potential deanonymization through traffic analysis. Subsequent RFCs should investigate the potential for incorporating Mixnet protocol or other privacy-enhancing mechanisms to address this concern.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.4. Anonymous Submission of Tickets.","id":"67","title":"12.4. Anonymous Submission of Tickets."},"68":{"body":"(source) Table of Contents RFC-34: XCM Absolute Location Account Derivation Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Start Date 05 October 2023 Description XCM Absolute Location Account Derivation Authors Gabriel Facco de Arruda","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » RFC-34: XCM Absolute Location Account Derivation","id":"68","title":"RFC-34: XCM Absolute Location Account Derivation"},"69":{"body":"This RFC proposes changes that enable the use of absolute locations in AccountId derivations, which allows protocols built using XCM to have static account derivations in any runtime, regardless of its position in the family hierarchy.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Summary","id":"69","title":"Summary"},"7":{"body":"Current deposit requirements are as follows Looking at the current code structure the currently implemented we can find that the pricing re-uses the logic of how Uniques are defined: parameter_types! { // re-use the Uniques deposits pub const NftsCollectionDeposit: Balance = UniquesCollectionDeposit::get(); pub const NftsItemDeposit: Balance = UniquesItemDeposit::get(); pub const NftsMetadataDepositBase: Balance = UniquesMetadataDepositBase::get(); pub const NftsAttributeDepositBase: Balance = UniquesAttributeDepositBase::get(); pub const NftsDepositPerByte: Balance = UniquesDepositPerByte::get();\n} In the existing setup, the Uniques are defined with specific deposit values for different elements: parameter_types! { pub const UniquesCollectionDeposit: Balance = UNITS / 10; // 1 / 10 UNIT deposit to create a collection pub const UniquesItemDeposit: Balance = UNITS / 1_000; // 1 / 1000 UNIT deposit to mint an item pub const UniquesMetadataDepositBase: Balance = deposit(1, 129); pub const UniquesAttributeDepositBase: Balance = deposit(1, 0); pub const UniquesDepositPerByte: Balance = deposit(0, 1);\n} As we can see in the code definition above the current code does not use the deposit funtion when the collection in the following instances: UniquesCollectionDeposit and UniquesItemDeposit.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Current code structure","id":"7","title":"Current code structure"},"70":{"body":"These changes would allow protocol builders to leverage absolute locations to maintain the exact same derived account address across all networks in the ecosystem, thus enhancing user experience. One such protocol, that is the original motivation for this proposal, is InvArch's Saturn Multisig, which gives users a unifying multisig and DAO experience across all XCM connected chains.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Motivation","id":"70","title":"Motivation"},"71":{"body":"Ecosystem developers","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Stakeholders","id":"71","title":"Stakeholders"},"72":{"body":"This proposal aims to make it possible to derive accounts for absolute locations, enabling protocols that require the ability to maintain the same derived account in any runtime. This is done by deriving accounts from the hash of described absolute locations, which are static across different destinations. The same location can be represented in relative form and absolute form like so: // Relative location (from own perspective)\n{ parents: 0, interior: Here\n} // Relative location (from perspective of parent)\n{ parents: 0, interior: [Parachain(1000)]\n} // Relative location (from perspective of sibling)\n{ parents: 1, interior: [Parachain(1000)]\n} // Absolute location\n[GlobalConsensus(Kusama), Parachain(1000)] Using DescribeFamily, the above relative locations would be described like so: // Relative location (from own perspective)\n// Not possible. // Relative location (from perspective of parent)\n(b\"ChildChain\", Compact::::from(*index)).encode() // Relative location (from perspective of sibling)\n(b\"SiblingChain\", Compact::::from(*index)).encode() The proposed description for absolute location would follow the same pattern, like so: ( b\"GlobalConsensus\", network_id, b\"Parachain\", Compact::::from(para_id), tail\n).encode() This proposal requires the modification of two XCM types defined in the xcm-builder crate: The WithComputedOrigin barrier and the DescribeFamily MultiLocation descriptor. WithComputedOrigin The WtihComputedOrigin barrier serves as a wrapper around other barriers, consuming origin modification instructions and applying them to the message origin before passing to the inner barriers. One of the origin modifying instructions is UniversalOrigin, which serves the purpose of signaling that the origin should be a Universal Origin that represents the location as an absolute path prefixed by the GlobalConsensus junction. In it's current state the barrier transforms locations with the UniversalOrigin instruction into relative locations, so the proposed changes aim to make it return absolute locations instead. DescribeFamily The DescribeFamily location descriptor is part of the HashedDescription MultiLocation hashing system and exists to describe locations in an easy format for encoding and hashing, so that an AccountId can be derived from this MultiLocation. This implementation contains a match statement that does not match against absolute locations, so changes to it involve matching against absolute locations and providing appropriate descriptions for hashing.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Explanation","id":"72","title":"Explanation"},"73":{"body":"No drawbacks have been identified with this proposal.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Drawbacks","id":"73","title":"Drawbacks"},"74":{"body":"Tests can be done using simple unit tests, as this is not a change to XCM itself but rather to types defined in xcm-builder. Security considerations should be taken with the implementation to make sure no unwanted behavior is introduced. This proposal does not introduce any privacy considerations.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Testing, Security, and Privacy","id":"74","title":"Testing, Security, and Privacy"},"75":{"body":"","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Performance, Ergonomics, and Compatibility","id":"75","title":"Performance, Ergonomics, and Compatibility"},"76":{"body":"Depending on the final implementation, this proposal should not introduce much overhead to performance.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Performance","id":"76","title":"Performance"},"77":{"body":"The ergonomics of this proposal depend on the final implementation details.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Ergonomics","id":"77","title":"Ergonomics"},"78":{"body":"Backwards compatibility should remain unchanged, although that depend on the final implementation.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Compatibility","id":"78","title":"Compatibility"},"79":{"body":"DescirbeFamily type: https://github.com/paritytech/polkadot-sdk/blob/master/polkadot/xcm/xcm-builder/src/location_conversion.rs#L122 WithComputedOrigin type: https://github.com/paritytech/polkadot-sdk/blob/master/polkadot/xcm/xcm-builder/src/barriers.rs#L153","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Prior Art and References","id":"79","title":"Prior Art and References"},"8":{"body":"This proposed modification adjusts the deposits to use the deposit function instead of using an arbitrary number. parameter_types! { pub const NftsCollectionDeposit: Balance = deposit(1, 130); pub const NftsItemDeposit: Balance = deposit(1, 164); pub const NftsMetadataDepositBase: Balance = deposit(1, 129); pub const NftsAttributeDepositBase: Balance = deposit(1, 0); pub const NftsDepositPerByte: Balance = deposit(0, 1);\n} Calculations viewed bellow were calculated by using the following repository rfc-pricing . Polkadot | Name | Current price implementation | Proposed Modified by using the new deposit function | |---------------------------|----------------------------------|-------------------------| | collectionDeposit | 10 DOT | 0.20064 DOT | | itemDeposit | 0.01 DOT | 0.20081 DOT | | metadataDepositBase | 0.20129 DOT | 0.20076 DOT | | attributeDepositBase | 0.2 DOT | 0.2 DOT | Similarly the prices for Kusama ecosystem were calculated as: Kusama: | Name | Current price implementation | Proposed Price in KSM | |---------------------------|----------------------------------|---------------------------| | collectionDeposit | 0.1 KSM | 0.006688 KSM | | itemDeposit | 0.001 KSM | 0.000167 KSM | | metadataDepositBase | 0.006709666617 KSM | 0.0006709666617 KSM | | attributeDepositBase | 0.00666666666 KSM | 0.000666666666 KSM |","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Proposed Modification Using the Deposit Function","id":"8","title":"Proposed Modification Using the Deposit Function"},"80":{"body":"Implementation details and overall code is still up to discussion.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Unresolved Questions","id":"80","title":"Unresolved Questions"},"81":{"body":"(source) Table of Contents RFC-0042: Add System version that replaces StateVersion on RuntimeVersion Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 25th October 2023 Description Add System Version and remove State Version Authors Vedhavyas Singareddi","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » RFC-0042: Add System version that replaces StateVersion on RuntimeVersion","id":"81","title":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion"},"82":{"body":"At the moment, we have system_version field on RuntimeVersion that derives which state version is used for the Storage. We have a use case where we want extrinsics root is derived using StateVersion::V1. Without defining a new field under RuntimeVersion, we would like to propose adding system_version that can be used to derive both storage and extrinsic state version.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Summary","id":"82","title":"Summary"},"83":{"body":"Since the extrinsic state version is always StateVersion::V0, deriving extrinsic root requires full extrinsic data. This would be problematic when we need to verify the extrinsics root if the extrinsic sizes are bigger. This problem is further explored in https://github.com/polkadot-fellows/RFCs/issues/19 For Subspace project, we have an enshrined rollups called Domain with optimistic verification and Fraud proofs are used to detect malicious behavior. One of the Fraud proof variant is to derive Domain block extrinsic root on Subspace's consensus chain. Since StateVersion::V0 requires full extrinsic data, we are forced to pass all the extrinsics through the Fraud proof. One of the main challenge here is some extrinsics could be big enough that this variant of Fraud proof may not be included in the Consensus block due to Block's weight restriction. If the extrinsic root is derived using StateVersion::V1, then we do not need to pass the full extrinsic data but rather at maximum, 32 byte of extrinsic data.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Motivation","id":"83","title":"Motivation"},"84":{"body":"Technical Fellowship, in its role of maintaining system runtimes.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Stakeholders","id":"84","title":"Stakeholders"},"85":{"body":"In order to use project specific StateVersion for extrinsic roots, we proposed an implementation that introduced parameter to frame_system::Config but that unfortunately did not feel correct. So we would like to propose adding this change to the RuntimeVersion object. The system version, if introduced, will be used to derive both storage and extrinsic state version. If system version is 0, then both Storage and Extrinsic State version would use V0. If system version is 1, then Storage State version would use V1 and Extrinsic State version would use V0. If system version is 2, then both Storage and Extrinsic State version would use V1. If implemented, the new RuntimeVersion definition would look something similar to /// Runtime version (Rococo).\n#[sp_version::runtime_version]\npub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!(\"rococo\"), impl_name: create_runtime_str!(\"parity-rococo-v2.0\"), authoring_version: 0, spec_version: 10020, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 22, system_version: 1, };","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Explanation","id":"85","title":"Explanation"},"86":{"body":"There should be no drawbacks as it would replace state_version with same behavior but documentation should be updated so that chains know which system_version to use.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Drawbacks","id":"86","title":"Drawbacks"},"87":{"body":"AFAIK, should not have any impact on the security or privacy.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Testing, Security, and Privacy","id":"87","title":"Testing, Security, and Privacy"},"88":{"body":"These changes should be compatible for existing chains if they use state_version value for system_verision.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Performance, Ergonomics, and Compatibility","id":"88","title":"Performance, Ergonomics, and Compatibility"},"89":{"body":"I do not believe there is any performance hit with this change.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Performance","id":"89","title":"Performance"},"9":{"body":"In an effort to further lower barriers to entry and foster greater inclusivity, we propose additional modifications to the pricing structure. These proposed reductions are based on a collaborative and calculated approach, involving the consensus of leading NFT creators within the Polkadot and Kusama Asset Hub communities. The adjustments to deposit amounts are not made arbitrarily. Instead, they are the result of detailed discussions and analyses conducted with prominent NFT creators. Proposed Code Adjustments parameter_types! { pub const NftsCollectionDeposit: Balance = deposit(1, 130); pub const NftsItemDeposit: Balance = deposit(1, 164) / 40; pub const NftsMetadataDepositBase: Balance = deposit(1, 129) / 10; pub const NftsAttributeDepositBase: Balance = deposit(1, 0) / 10; pub const NftsDepositPerByte: Balance = deposit(0, 1);\n} Prices and Proposed Prices on Polkadot Asset Hub: Polkadot | Name | Current price implementation | Proposed Prices | |---------------------------|----------------------------------|---------------------| | collectionDeposit | 10 DOT | 0.20064 DOT | | itemDeposit | 0.01 DOT | 0.005 DOT | | metadataDepositBase | 0.20129 DOT | 0.002 DOT | | attributeDepositBase | 0.2 DOT | 0.002 DOT | Kusama | Name | Current price implementation | Proposed Price in KSM | |---------------------------|----------------------------------|---------------------------| | collectionDeposit | 0.1 KSM | 0.006688 KSM | | itemDeposit | 0.001 KSM | 0.000167 KSM | | metadataDepositBase | 0.006709666617 KSM | 0.0006709666617 KSM | | attributeDepositBase | 0.00666666666 KSM | 0.000666666666 KSM |","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Enhanced Approach to Further Lower Barriers for Entry","id":"9","title":"Enhanced Approach to Further Lower Barriers for Entry"},"90":{"body":"This does not break any exposed Apis.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Ergonomics","id":"90","title":"Ergonomics"},"91":{"body":"This change should not break any compatibility.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Compatibility","id":"91","title":"Compatibility"},"92":{"body":"We proposed introducing a similar change by introducing a parameter to frame_system::Config but did not feel that is the correct way of introducing this change.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Prior Art and References","id":"92","title":"Prior Art and References"},"93":{"body":"I do not have any specific questions about this change at the moment.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Unresolved Questions","id":"93","title":"Unresolved Questions"},"94":{"body":"IMO, this change is pretty self-contained and there won't be any future work necessary.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Future Directions and Related Material","id":"94","title":"Future Directions and Related Material"},"95":{"body":"(source) Table of Contents RFC-0000: Metadata for offline signers Summary Motivation Background Solution requirements Stakeholders Explanation Definitions General flow Metadata modularization Merging protocol Complete Binary Merkle Tree construction protocol Digest Shortening Transmission Offline verification Chain verification Drawbacks Increased transaction size Transition overhead Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-10-31 Description Add SignedExtension to check Metadata Root Hash Authors Alzymologist Oy, Zondax LLC, Parity Technologies","breadcrumbs":"RFC-0000: Metadata for offline signers » RFC-0000: Metadata for offline signers","id":"95","title":"RFC-0000: Metadata for offline signers"},"96":{"body":"Add a metadata digest value (33-byte constant within fixed spec_version) to Signed Extensions to supplement signer party with proof of correct extrinsic interpretation. The digest value is generated once before release and is well-known and deterministic. The digest mechanism is designed to be modular and flexible. It also supports partial metadata transfer as needed by the signing party's extrinsic decoding mechanism. This considers signing devices potentially limited communication bandwidth and/or memory capacity.","breadcrumbs":"RFC-0000: Metadata for offline signers » Summary","id":"96","title":"Summary"},"97":{"body":"","breadcrumbs":"RFC-0000: Metadata for offline signers » Motivation","id":"97","title":"Motivation"},"98":{"body":"While all blockchain systems support (at least in some sense) offline signing used in air-gapped wallets and lightweight embedded devices, only few allow simultaneously complex upgradeable logic and full message decoding on the cold off-line signer side; Substrate is one of these heartening few, and therefore - we should build on this feature to greatly improve transaction security, and thus in general, network resilience. As a starting point, it is important to recognise that prudence and due care are naturally required. As we build further reliance on this feature we should be very careful to make sure it works correctly every time so as not to create false sense of security. In order to enable decoding that is small and optimized for chain storage transactions, a metadata entity is used, which is not at all small in itself (on the order of half-MB for most networks). This is a dynamic data chunk which completely describes chain interfaces and properties that could be made into a portable scale-encoded string for any given network version and passed along into an off-chain device to familiarize it with latest network updates. Of course, compromising this metadata anywhere in the path could result in differences between what user sees and signs, thus it is essential that we protect it. Therefore, we have 2 problems to be solved: Metadata is large, takes long time to be passed into a cold storage device with memory insufficient for its storage; metadata SHOULD be shortened and transmission SHOULD be optimized. Metadata authenticity SHOULD be ensured. As of now, there is no working solution for (1), as the whole metadata has to be passed to the device. On top of this, the solution for (2) heavily relies on a trusted party managing keys and ensuring metadata is indeed authentic: creating poorly decentralized points of potential failure.","breadcrumbs":"RFC-0000: Metadata for offline signers » Background","id":"98","title":"Background"},"99":{"body":"Include metadata digest into signature Some cryptographically strong digest of metadata MAY be included into signable blob. There SHALL NOT be storage overhead for this blob, nor computational overhead; thus MUST be a constant within a given runtime, deterministically defined by metadata. Metadata information that could be used in signable extrinsic decoding MAY be included in digest, its inclusion MUST be indicated in signed extensions; Digest MUST be deterministic with respect to metadata; Digest MUST be cryptographically strong against pre-image, both first and second; Extra-metadata information necessary for extrinsic decoding and constant within runtime version MUST be included in digest; It SHOULD be possible to quickly withdraw offline signing mechanism without access to cold signing devices; Digest format SHOULD be versioned. Work necessary for proving metadata authenticity MAY be omitted at discretion of signer device design (to support automation tools). Reduce metadata size Metadata should be stripped from parts that are not necessary to parse a signable extrinsic, then it should be separated into a finite set of self-descriptive chunks. Thus, a subset of chunks necessary for signable extrinsic decoding and rendering could be sent, possibly in small portions (ultimately - one at a time), to cold device together with proof. Single chunk with proof payload size SHOULD fit within few kB; Chunks handling mechanism SHOULD support chunks being sent in any order without memory utilization overhead; Unused enum variants MUST be stripped (this has great impact on transmitted metadata size; examples: era enum, enum with all calls for call batching).","breadcrumbs":"RFC-0000: Metadata for offline signers » Solution requirements","id":"99","title":"Solution requirements"}},"length":513,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"0":{"0":{"1":{"6":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"9":{"tf":1.0}}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":6,"docs":{"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"7":{"5":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"5":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"177":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"0":{"0":{"6":{"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"9":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"312":{"tf":1.0}}},"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"5":{"df":1,"docs":{"360":{"tf":1.0}}},"6":{"df":1,"docs":{"444":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"159":{"tf":1.0},"338":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"379":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"249":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"260":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"401":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"412":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"277":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"425":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"438":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"467":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"308":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"481":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"495":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"123":{"tf":1.0}}},"4":{"df":1,"docs":{"338":{"tf":1.0}}},"5":{".":{"0":{"8":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"401":{"tf":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":{"68":{"tf":1.0}}},"6":{"df":2,"docs":{"201":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":4,"docs":{"215":{"tf":1.0},"233":{"tf":1.0},"338":{"tf":1.0},"365":{"tf":1.0}}},"9":{":":{"1":{"3":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}},"b":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":3.3166247903554}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"130":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":3.872983346207417},"208":{"tf":1.0},"314":{"tf":1.7320508075688772},"343":{"tf":4.58257569495584},"355":{"tf":1.0},"356":{"tf":2.23606797749979},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"9":{"tf":1.0}},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":4.795831523312719}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"x":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"1":{"df":1,"docs":{"111":{"tf":1.0}}},"2":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"3":{"d":{"d":{"8":{"0":{"8":{"4":{"d":{"5":{"0":{"d":{"b":{"b":{"b":{"c":{"9":{"6":{"2":{"0":{"6":{"7":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"c":{"3":{"7":{"b":{"6":{"2":{"7":{"8":{"3":{"1":{"d":{"9":{"3":{"3":{"9":{"df":0,"docs":{},"f":{"5":{"a":{"6":{"df":0,"docs":{},"e":{"4":{"2":{"6":{"a":{"3":{"2":{"df":0,"docs":{},"e":{"3":{"0":{"7":{"6":{"3":{"1":{"3":{"d":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"111":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"164":{"tf":1.0},"173":{"tf":1.0},"370":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"27":{"tf":1.0}}},"5":{"df":3,"docs":{"312":{"tf":1.0},"360":{"tf":1.4142135623730951},"370":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"297":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"8":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"209":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":8,"docs":{"174":{"tf":1.0},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"360":{"tf":2.0},"507":{"tf":1.0},"7":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"156":{"tf":1.0},"168":{"tf":1.0},"194":{"tf":3.872983346207417},"209":{"tf":1.0},"343":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"168":{"tf":1.0},"194":{"tf":2.23606797749979},"209":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"1":{",":{"6":{"df":1,"docs":{"369":{"tf":1.0}}},"7":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"194":{"tf":2.0}},"u":{"3":{"2":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"314":{"tf":1.0},"324":{"tf":1.0},"481":{"tf":1.0},"62":{"tf":1.0}}},"2":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"66":{"tf":1.0}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.0}}},"8":{"df":6,"docs":{"129":{"tf":1.4142135623730951},"190":{"tf":1.0},"194":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0}}},"9":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":5,"docs":{"173":{"tf":1.0},"23":{"tf":1.0},"414":{"tf":1.0},"495":{"tf":1.0},"63":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":1,"docs":{"467":{"tf":1.0}}},"4":{"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"160":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"406":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"238":{"tf":1.0}}}}},"5":{"0":{"0":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":1,"docs":{"194":{"tf":3.4641016151377544}},"u":{"3":{"2":{"df":1,"docs":{"194":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"2":{"df":1,"docs":{"194":{"tf":1.0}}},"df":5,"docs":{"194":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"308":{"tf":1.0},"429":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":4,"docs":{"194":{"tf":3.4641016151377544},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"500":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}}},"8":{",":{"3":{"3":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"173":{"tf":1.0},"495":{"tf":1.0}}},"9":{".":{"0":{"7":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"379":{"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":1,"docs":{"14":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"365":{"tf":1.0}}},":":{"1":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":52,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"156":{"tf":1.0},"161":{"tf":1.0},"181":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"25":{"tf":1.0},"262":{"tf":1.0},"292":{"tf":1.0},"312":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":2.23606797749979},"343":{"tf":5.656854249492381},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"360":{"tf":3.1622776601683795},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":1.4142135623730951},"391":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"47":{"tf":2.23606797749979},"471":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":0,"docs":{},"v":{"df":1,"docs":{"429":{"tf":1.0}}}}},"2":{",":{"8":{"9":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"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":2,"docs":{"162":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"df":5,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"312":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"29":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"30":{"tf":1.0}}},"5":{"df":1,"docs":{"312":{"tf":2.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":2.0},"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.7320508075688772}},"u":{"3":{"2":{"df":1,"docs":{"194":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"2":{"df":2,"docs":{"278":{"tf":1.0},"437":{"tf":1.0}}},"3":{"df":30,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"384":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":3,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"483":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":2.0},"288":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772}}},"2":{",":{"5":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{",":{"8":{"3":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"184":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"384":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"481":{"tf":1.0},"507":{"tf":1.0}}},"5":{"6":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":1,"docs":{"260":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"7":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"144":{"tf":1.0},"314":{"tf":1.0}}},"8":{"df":1,"docs":{"193":{"tf":1.0}}},"9":{"6":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"128":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"23":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"343":{"tf":3.4641016151377544},"356":{"tf":1.7320508075688772},"360":{"tf":2.23606797749979},"369":{"tf":2.0},"391":{"tf":1.0},"409":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"3":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"32":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"33":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"34":{"tf":1.0}}},"a":{"df":1,"docs":{"143":{"tf":1.0}}},"b":{"df":1,"docs":{"143":{"tf":1.0}}},"c":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"181":{"tf":1.0},"193":{"tf":1.0},"324":{"tf":1.0},"356":{"tf":1.0},"360":{"tf":2.0},"406":{"tf":1.0},"438":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"485":{"tf":1.0}}}}},"df":10,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"162":{"tf":1.0},"194":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}},"3":{"3":{"8":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}}},"4":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"194":{"tf":1.0}}},"8":{"df":1,"docs":{"343":{"tf":1.0}}},"df":25,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.0},"125":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"276":{"tf":1.0},"31":{"tf":1.0},"314":{"tf":1.4142135623730951},"343":{"tf":2.449489742783178},"351":{"tf":1.0},"360":{"tf":1.0},"369":{"tf":2.0},"391":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0}}},"4":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"36":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"37":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.0}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.0}}},"5":{"df":2,"docs":{"23":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"14":{"tf":1.0}}},"5":{"df":3,"docs":{"193":{"tf":1.0},"356":{"tf":1.0},"360":{"tf":2.0}}},"8":{",":{"6":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":2.0},"423":{"tf":1.7320508075688772}}},"9":{",":{"2":{"1":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"191":{"tf":1.0},"194":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"276":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":2.449489742783178},"35":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"429":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.4142135623730951}},"·":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"42":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"45":{"tf":1.0}}},"2":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"497":{"tf":1.4142135623730951}}},"df":6,"docs":{"129":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"194":{"tf":2.0},"243":{"tf":1.0},"507":{"tf":1.0}}},"3":{",":{"3":{"3":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{",":{"6":{"0":{"0":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"207":{"tf":1.0},"23":{"tf":1.0},"266":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.4142135623730951},"385":{"tf":1.0},"41":{"tf":1.0}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"48":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"49":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"50":{"tf":1.0}}},"5":{".":{"1":{".":{"1":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"3":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}},"2":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"52":{"tf":1.0}}},"7":{"df":4,"docs":{"23":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"343":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"33":{"tf":1.0},"442":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"483":{"tf":1.0}}},"df":0,"docs":{}}}},"5":{",":{"3":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{",":{"6":{"6":{"7":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"191":{"tf":1.0},"23":{"tf":1.0},"369":{"tf":1.4142135623730951},"409":{"tf":1.0},"448":{"tf":1.0},"46":{"tf":1.0}}},"7":{"7":{",":{"0":{"0":{"0":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"164":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"23":{"tf":1.0},"385":{"tf":1.0},"406":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"8":{"0":{",":{"0":{"0":{"0":{"df":3,"docs":{"194":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":1.0},"190":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"1":{",":{"8":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"102":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"207":{"tf":1.0},"23":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0}}},"9":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"59":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"168":{"tf":1.0}}},"1":{"b":{"1":{"7":{"1":{"b":{"b":{"1":{"5":{"8":{"df":0,"docs":{},"e":{"2":{"d":{"3":{"8":{"4":{"8":{"df":0,"docs":{},"f":{"a":{"2":{"3":{"a":{"9":{"df":0,"docs":{},"f":{"1":{"c":{"2":{"5":{"1":{"8":{"2":{"df":0,"docs":{},"f":{"b":{"8":{"df":0,"docs":{},"e":{"2":{"0":{"3":{"1":{"3":{"b":{"2":{"c":{"1":{"df":0,"docs":{},"e":{"b":{"4":{"9":{"2":{"1":{"9":{"d":{"a":{"7":{"a":{"7":{"0":{"c":{"df":0,"docs":{},"e":{"9":{"0":{"c":{"3":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"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":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"9":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"57":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}},"_":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"149":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"(":{"1":{"df":1,"docs":{"357":{"tf":1.0}}},"df":0,"docs":{},"x":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{".":{"a":{"df":1,"docs":{"290":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"109":{"tf":1.0},"185":{"tf":1.7320508075688772},"189":{"tf":1.0},"297":{"tf":1.0},"316":{"tf":1.0},"72":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}}},"v":{"df":12,"docs":{"107":{"tf":1.0},"139":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"407":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"483":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"391":{"tf":1.0},"51":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":3.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"426":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"164":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"505":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"134":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.4142135623730951},"343":{"tf":3.0},"344":{"tf":1.0},"347":{"tf":1.0},"363":{"tf":1.0},"407":{"tf":1.0},"503":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":2.0},"161":{"tf":1.0},"164":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"241":{"tf":1.0},"294":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.0},"41":{"tf":1.0},"440":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"350":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"r":{"d":{"df":10,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"146":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"220":{"tf":1.0},"254":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"182":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":2.8284271247461903},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.4142135623730951},"429":{"tf":2.0},"440":{"tf":1.7320508075688772},"454":{"tf":1.0},"468":{"tf":1.4142135623730951},"472":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772}},"i":{"d":{"df":6,"docs":{"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":2,"docs":{"381":{"tf":1.0},"383":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"208":{"tf":1.0},"23":{"tf":1.0},"383":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.7320508075688772}}}}},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":14,"docs":{"194":{"tf":1.0},"221":{"tf":1.0},"239":{"tf":1.0},"261":{"tf":1.0},"360":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"442":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"217":{"tf":1.0},"316":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"254":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"196":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"266":{"tf":1.0},"406":{"tf":1.0},"49":{"tf":1.0}}}},"v":{"df":8,"docs":{"163":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":1.0},"24":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"383":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"12":{"tf":1.0},"146":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"239":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.4142135623730951},"3":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.0},"45":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"48":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"387":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"207":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"403":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"468":{"tf":1.0},"485":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.0},"81":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"162":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"220":{"tf":1.0},"344":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.4142135623730951},"500":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"111":{"tf":1.0}}}}}}}},"df":6,"docs":{"133":{"tf":1.0},"14":{"tf":1.0},"190":{"tf":1.4142135623730951},"378":{"tf":1.0},"410":{"tf":1.0},"437":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.0},"262":{"tf":1.0},"350":{"tf":1.0},"403":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":18,"docs":{"114":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"191":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"429":{"tf":1.0},"485":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"176":{"tf":1.0},"196":{"tf":1.0},"281":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"403":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"189":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"350":{"tf":1.0},"4":{"tf":1.0},"406":{"tf":2.23606797749979},"451":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"31":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"369":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"13":{"tf":1.0},"33":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"135":{"tf":1.0},"14":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.0},"291":{"tf":1.0},"403":{"tf":1.0},"415":{"tf":1.4142135623730951},"420":{"tf":1.0},"434":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.0},"489":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1":{"tf":1.0},"406":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"367":{"tf":1.0},"383":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"243":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"455":{"tf":1.0},"507":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"407":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"181":{"tf":1.7320508075688772},"196":{"tf":1.0},"202":{"tf":1.0},"296":{"tf":1.0},"34":{"tf":1.0},"451":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"254":{"tf":1.0},"312":{"tf":1.0},"429":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"440":{"tf":1.0},"497":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":17,"docs":{"162":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"22":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"367":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"a":{"df":2,"docs":{"190":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{}},"l":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":6,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"128":{"tf":2.0},"146":{"tf":1.0},"199":{"tf":1.4142135623730951},"471":{"tf":1.0}}}}}}}}},"i":{"c":{"df":4,"docs":{"194":{"tf":4.242640687119285},"349":{"tf":1.0},"426":{"tf":2.0},"429":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"383":{"tf":1.0}}}},"n":{"df":1,"docs":{"123":{"tf":1.0}}},"v":{"df":1,"docs":{"269":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"389":{"tf":1.0},"399":{"tf":1.0}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":46,"docs":{"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":2.8284271247461903},"149":{"tf":2.449489742783178},"150":{"tf":3.1622776601683795},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"168":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":2.0},"194":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.449489742783178},"206":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"288":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"302":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"340":{"tf":3.7416573867739413},"343":{"tf":3.4641016151377544},"348":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.7320508075688772},"406":{"tf":1.7320508075688772},"407":{"tf":1.0},"409":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":2.23606797749979},"486":{"tf":1.4142135623730951},"494":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":54,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"146":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"204":{"tf":2.23606797749979},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"328":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"369":{"tf":1.0},"389":{"tf":1.4142135623730951},"396":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":2.23606797749979},"406":{"tf":1.0},"426":{"tf":1.7320508075688772},"429":{"tf":2.0},"445":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"3":{"tf":1.0},"406":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"426":{"tf":1.0},"429":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":23,"docs":{"128":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"196":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"326":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"399":{"tf":1.0},"406":{"tf":1.0},"451":{"tf":1.0},"471":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"191":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"207":{"tf":1.0},"303":{"tf":1.0},"421":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":12,"docs":{"181":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":1.7320508075688772},"369":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"163":{"tf":1.0},"27":{"tf":1.0},"298":{"tf":1.0},"313":{"tf":1.0},"408":{"tf":1.0},"78":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":25,"docs":{"104":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"217":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"343":{"tf":2.8284271247461903},"352":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"26":{"tf":1.0},"343":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"165":{"tf":1.0},"325":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"14":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"343":{"tf":1.7320508075688772},"371":{"tf":1.0},"373":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"406":{"tf":1.0},"407":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}},"u":{"df":1,"docs":{"182":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}},"i":{"df":2,"docs":{"3":{"tf":1.0},"67":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"403":{"tf":1.0},"407":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"134":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"304":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"195":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"235":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"12":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"168":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"217":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"296":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.0},"408":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"497":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"369":{"tf":1.0},"371":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"164":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.7320508075688772},"457":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"122":{"tf":1.0},"185":{"tf":1.7320508075688772},"194":{"tf":1.0},"266":{"tf":1.0},"343":{"tf":2.449489742783178},"369":{"tf":1.0},"430":{"tf":1.0},"485":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"343":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"#":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":20,"docs":{"143":{"tf":1.4142135623730951},"191":{"tf":1.0},"198":{"tf":1.0},"220":{"tf":1.0},"294":{"tf":1.4142135623730951},"304":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.4142135623730951},"384":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"389":{"tf":1.0},"391":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"471":{"tf":1.0},"477":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":2,"docs":{"185":{"tf":1.0},"220":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"173":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"121":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}},"r":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":11,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.23606797749979},"168":{"tf":2.0},"173":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0}}},"df":14,"docs":{"211":{"tf":1.0},"237":{"tf":1.0},"268":{"tf":1.0},"300":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"34":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"407":{"tf":1.0},"43":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"457":{"tf":1.0},"473":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":4,"docs":{"143":{"tf":1.7320508075688772},"253":{"tf":1.0},"451":{"tf":1.0},"455":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"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":12,"docs":{"109":{"tf":1.0},"194":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"3":{"tf":1.0},"407":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"162":{"tf":2.0},"164":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"288":{"tf":1.0},"295":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"498":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.0},"502":{"tf":1.0},"512":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"403":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":1,"docs":{"485":{"tf":1.4142135623730951}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"407":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"383":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"208":{"tf":1.0},"357":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":2.0},"403":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"297":{"tf":1.0},"350":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"409":{"tf":1.0},"47":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"14":{"tf":1.0},"192":{"tf":1.0},"202":{"tf":1.0},"243":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"444":{"tf":1.0},"485":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":3,"docs":{"125":{"tf":1.0},"33":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}},"u":{"d":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":56,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"492":{"tf":1.0},"495":{"tf":1.0},"510":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":4,"docs":{"240":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"497":{"tf":1.4142135623730951}}},"n":{".":{"1":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"195":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"406":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"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":2,"docs":{"128":{"tf":1.0},"152":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"411":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"163":{"tf":1.0},"168":{"tf":1.0}}}}}}}}},"df":24,"docs":{"1":{"tf":1.7320508075688772},"14":{"tf":2.0},"160":{"tf":2.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"169":{"tf":2.6457513110645907},"180":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"295":{"tf":2.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.0},"3":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"'":{"df":2,"docs":{"164":{"tf":1.0},"168":{"tf":1.0}}},"df":15,"docs":{"12":{"tf":1.0},"160":{"tf":2.6457513110645907},"161":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":2.449489742783178},"165":{"tf":2.0},"166":{"tf":2.23606797749979},"168":{"tf":2.23606797749979},"169":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"169":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"194":{"tf":1.7320508075688772},"207":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":16,"docs":{"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"131":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.0},"190":{"tf":2.449489742783178},"191":{"tf":3.1622776601683795},"194":{"tf":3.1622776601683795},"202":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178},"24":{"tf":1.0},"343":{"tf":1.0},"50":{"tf":2.23606797749979}},"e":{"d":{"(":{"a":{"df":1,"docs":{"194":{"tf":2.0}}},"b":{"df":1,"docs":{"194":{"tf":2.449489742783178}}},"c":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"456":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":23,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"48":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":14,"docs":{"134":{"tf":1.0},"143":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"406":{"tf":1.0},"440":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"217":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772}}}}},"r":{"df":2,"docs":{"269":{"tf":1.0},"383":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"169":{"tf":2.6457513110645907},"173":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"216":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"217":{"tf":1.0},"341":{"tf":1.0},"427":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"485":{"tf":1.0},"497":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"47":{"tf":2.0},"48":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.0},"172":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"2":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"184":{"tf":2.0},"189":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}}},"df":11,"docs":{"110":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"387":{"tf":1.0},"459":{"tf":1.0},"473":{"tf":1.0},"56":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"277":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"412":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":48,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"30":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.7320508075688772},"481":{"tf":1.0},"485":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"26":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"194":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"421":{"tf":1.7320508075688772},"453":{"tf":1.0}}}},"df":4,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"135":{"tf":1.0},"99":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":35,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"168":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"294":{"tf":1.0},"343":{"tf":1.4142135623730951},"380":{"tf":1.0},"387":{"tf":1.0},"406":{"tf":1.4142135623730951},"410":{"tf":1.0},"455":{"tf":1.0},"483":{"tf":2.0},"485":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"238":{"tf":1.4142135623730951},"343":{"tf":1.0},"359":{"tf":1.0},"48":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":8,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"343":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}},"y":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"143":{"tf":2.0},"189":{"tf":1.0},"207":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"391":{"tf":1.0},"485":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"203":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"325":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"340":{"tf":1.0},"485":{"tf":1.0},"512":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":2,"docs":{"220":{"tf":1.4142135623730951},"292":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"185":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"162":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":2.23606797749979},"207":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":3.0},"306":{"tf":1.0},"307":{"tf":1.0},"367":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.0},"444":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"9":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":5,"docs":{"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"61":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"243":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"507":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"408":{"tf":1.0},"72":{"tf":2.23606797749979},"9":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"5":{"8":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":43,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"24":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"3":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"495":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"360":{"tf":1.4142135623730951},"383":{"tf":1.0},"406":{"tf":1.0}}}}}},"i":{"c":{"df":6,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772},"362":{"tf":1.0},"505":{"tf":1.0}}},"df":6,"docs":{"189":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"408":{"tf":1.0},"440":{"tf":1.0},"54":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"142":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"129":{"tf":1.4142135623730951},"169":{"tf":1.0},"194":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"298":{"tf":1.0},"307":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"427":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.4142135623730951}}}}},"df":36,"docs":{"104":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.0},"194":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"220":{"tf":1.0},"240":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"295":{"tf":1.0},"344":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"369":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"398":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"471":{"tf":1.7320508075688772},"487":{"tf":1.0},"496":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"500":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":31,"docs":{"115":{"tf":1.0},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.0},"370":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"43":{"tf":1.0},"451":{"tf":1.0},"477":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":1,"docs":{"383":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"133":{"tf":1.4142135623730951},"143":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"193":{"tf":1.0},"194":{"tf":5.5677643628300215},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"293":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"369":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"369":{"tf":1.4142135623730951},"74":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":3.1622776601683795},"486":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"150":{"tf":1.0},"184":{"tf":1.0},"235":{"tf":1.0},"326":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":11,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.4142135623730951},"178":{"tf":1.0},"237":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"132":{"tf":1.4142135623730951},"343":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}},"w":{"df":13,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.0},"190":{"tf":1.4142135623730951},"314":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"415":{"tf":1.0},"454":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"195":{"tf":1.0},"225":{"tf":1.0},"340":{"tf":1.0},"347":{"tf":1.0},"440":{"tf":1.4142135623730951},"444":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}},"df":5,"docs":{"146":{"tf":1.0},"235":{"tf":1.0},"281":{"tf":1.4142135623730951},"403":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":14,"docs":{"14":{"tf":1.0},"146":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"253":{"tf":1.0},"268":{"tf":1.0},"29":{"tf":1.0},"383":{"tf":2.449489742783178},"401":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":1.7320508075688772},"408":{"tf":1.0},"429":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"165":{"tf":1.0},"298":{"tf":1.0},"340":{"tf":1.0},"381":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"122":{"tf":1.0},"164":{"tf":1.0},"235":{"tf":1.4142135623730951},"357":{"tf":1.0},"399":{"tf":1.0},"450":{"tf":1.0},"51":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"123":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"26":{"tf":1.0},"312":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.4142135623730951},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"512":{"tf":1.0},"98":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"168":{"tf":1.0},"185":{"tf":1.4142135623730951},"200":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"184":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.23606797749979}}}}},"df":3,"docs":{"184":{"tf":1.4142135623730951},"406":{"tf":2.0},"407":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":5,"docs":{"414":{"tf":2.0},"416":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"83":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"151":{"tf":1.0},"47":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"485":{"tf":1.0},"95":{"tf":1.0}}}}},"d":{"df":4,"docs":{"193":{"tf":1.0},"23":{"tf":1.4142135623730951},"38":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"102":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"194":{"tf":3.0},"32":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.7320508075688772},"369":{"tf":1.0},"373":{"tf":1.0},"442":{"tf":1.0},"48":{"tf":1.0},"490":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"190":{"tf":1.4142135623730951},"194":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"(":{"3":{"2":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}},"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":2,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"122":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"176":{"tf":1.0},"18":{"tf":1.4142135623730951}}}},"b":{"df":8,"docs":{"161":{"tf":1.0},"164":{"tf":2.6457513110645907},"166":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"99":{"tf":1.4142135623730951}},"s":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"'":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"384":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"392":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"384":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"14":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":66,"docs":{"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"146":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"182":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":3.1622776601683795},"193":{"tf":2.23606797749979},"194":{"tf":3.1622776601683795},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"348":{"tf":1.0},"367":{"tf":2.0},"369":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":2.449489742783178},"387":{"tf":1.0},"389":{"tf":2.0},"39":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.7320508075688772},"403":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":2.0},"442":{"tf":2.0},"444":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"47":{"tf":3.7416573867739413},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":2.6457513110645907},"500":{"tf":5.196152422706632},"51":{"tf":1.7320508075688772},"512":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"399":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":6,"docs":{"168":{"tf":1.0},"200":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"296":{"tf":1.0},"351":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"b":{"df":4,"docs":{"194":{"tf":3.0},"349":{"tf":1.0},"426":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"239":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"217":{"tf":1.4142135623730951},"220":{"tf":2.6457513110645907},"221":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"369":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":2.6457513110645907},"241":{"tf":2.23606797749979},"243":{"tf":1.4142135623730951},"496":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"122":{"tf":1.0}},"h":{"df":29,"docs":{"111":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"204":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"51":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"296":{"tf":1.0},"340":{"tf":1.0}}}}},"df":8,"docs":{"194":{"tf":1.7320508075688772},"369":{"tf":1.0},"371":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"485":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"132":{"tf":1.4142135623730951},"369":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":13,"docs":{"114":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"296":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.4142135623730951},"421":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"491":{"tf":1.0},"512":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"486":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"297":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"253":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"380":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"205":{"tf":1.0}}}},"df":2,"docs":{"351":{"tf":1.0},"353":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"340":{"tf":2.449489742783178},"343":{"tf":5.5677643628300215},"347":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"486":{"tf":1.0},"500":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"182":{"tf":1.4142135623730951},"200":{"tf":1.0},"220":{"tf":1.4142135623730951},"262":{"tf":1.0},"400":{"tf":1.0},"403":{"tf":1.4142135623730951},"410":{"tf":1.0},"497":{"tf":1.4142135623730951},"5":{"tf":1.0},"501":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"5":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"2":{"2":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"179":{"tf":1.0},"393":{"tf":1.0},"434":{"tf":1.0},"440":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"400":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"193":{"tf":3.1622776601683795},"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}},"df":18,"docs":{"189":{"tf":3.0},"190":{"tf":3.4641016151377544},"191":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.23606797749979},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"132":{"tf":1.0},"281":{"tf":1.0},"385":{"tf":1.0},"471":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"387":{"tf":1.0},"466":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"379":{"tf":1.7320508075688772},"380":{"tf":1.4142135623730951},"383":{"tf":2.8284271247461903}}}},"y":{"df":2,"docs":{"171":{"tf":1.0},"185":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"383":{"tf":1.0},"406":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"483":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"238":{"tf":1.0},"239":{"tf":2.0},"328":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"340":{"tf":1.0},"343":{"tf":4.47213595499958},"369":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"454":{"tf":1.0},"466":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"s":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"51":{"tf":1.0},"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":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"241":{"tf":1.0},"243":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"110":{"tf":1.4142135623730951},"294":{"tf":1.0},"406":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":46,"docs":{"102":{"tf":1.7320508075688772},"131":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"194":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.7320508075688772},"266":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"325":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":2.449489742783178},"347":{"tf":1.4142135623730951},"367":{"tf":1.0},"391":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"445":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":2,"docs":{"191":{"tf":1.0},"453":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"191":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"132":{"tf":1.0},"343":{"tf":1.0},"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"298":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":3.7416573867739413},"220":{"tf":2.6457513110645907},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"23":{"tf":2.0},"292":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":17,"docs":{"109":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.4142135623730951},"185":{"tf":1.0},"495":{"tf":2.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"500":{"tf":2.8284271247461903},"501":{"tf":2.0},"502":{"tf":2.449489742783178},"503":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"512":{"tf":2.0}}}},"c":{"df":6,"docs":{"251":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"164":{"tf":1.0},"189":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"182":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"182":{"tf":1.0},"186":{"tf":1.0},"351":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"115":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0},"371":{"tf":1.0},"98":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"101":{"tf":1.0},"156":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"281":{"tf":1.0},"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":45,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"43":{"tf":1.0},"449":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"47":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"50":{"tf":1.0},"503":{"tf":1.0},"58":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"168":{"tf":1.4142135623730951},"367":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"400":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0},"485":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"133":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"392":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"217":{"tf":2.0},"218":{"tf":1.0},"220":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"269":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"168":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"190":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"403":{"tf":1.0},"47":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"505":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"403":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"179":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"18":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0}}},"df":129,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":2.23606797749979},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":2.0},"186":{"tf":1.0},"189":{"tf":4.47213595499958},"190":{"tf":2.6457513110645907},"191":{"tf":2.449489742783178},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"200":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":3.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"235":{"tf":3.1622776601683795},"237":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":2.0},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":2.0},"294":{"tf":2.0},"295":{"tf":2.8284271247461903},"296":{"tf":2.449489742783178},"297":{"tf":3.1622776601683795},"298":{"tf":2.0},"299":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"351":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":1.7320508075688772},"371":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.4142135623730951},"427":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.7320508075688772},"469":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"471":{"tf":1.0},"48":{"tf":2.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"495":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":3.0},"503":{"tf":1.7320508075688772},"51":{"tf":2.0},"512":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":2.23606797749979},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0},"350":{"tf":1.0},"407":{"tf":1.0},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"83":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"190":{"tf":1.0},"487":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":106,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"161":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"326":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":1.0},"371":{"tf":1.0},"385":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"389":{"tf":1.0},"391":{"tf":1.0},"399":{"tf":1.0},"403":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"416":{"tf":2.0},"417":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"457":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"477":{"tf":1.0},"485":{"tf":2.0},"489":{"tf":1.0},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"220":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"205":{"tf":1.0},"207":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"412":{"tf":1.0},"425":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"194":{"tf":1.7320508075688772},"426":{"tf":1.7320508075688772},"429":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":16,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":2.23606797749979},"367":{"tf":1.0},"393":{"tf":1.4142135623730951},"43":{"tf":1.0},"451":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"457":{"tf":2.0},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"260":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"343":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"369":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"369":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"369":{"tf":2.449489742783178}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"12":{"tf":1.0},"207":{"tf":1.0},"316":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"149":{"tf":1.0},"179":{"tf":1.0},"314":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"238":{"tf":1.0},"295":{"tf":1.0},"357":{"tf":1.0},"406":{"tf":1.0},"48":{"tf":1.0},"497":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"132":{"tf":2.0}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":19,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"131":{"tf":2.0},"132":{"tf":4.47213595499958},"133":{"tf":2.0},"142":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.7320508075688772}}}}}}}}}}}}},"i":{"df":1,"docs":{"280":{"tf":1.0}},"r":{"c":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{},"s":{"[":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"164":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"455":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":3.605551275463989},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"483":{"tf":1.0},"487":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"31":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"164":{"tf":1.0},"172":{"tf":1.0}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"146":{"tf":1.0},"376":{"tf":1.0}}},"r":{"df":12,"docs":{"178":{"tf":1.0},"196":{"tf":1.0},"251":{"tf":1.0},"345":{"tf":1.0},"383":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"427":{"tf":1.0},"457":{"tf":1.0},"487":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"414":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":33,"docs":{"133":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"156":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"248":{"tf":1.0},"303":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"371":{"tf":1.0},"373":{"tf":1.0},"441":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.7320508075688772},"487":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"498":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"60":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"485":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"132":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"169":{"tf":1.0},"312":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.4142135623730951},"403":{"tf":1.4142135623730951},"501":{"tf":1.0}},"r":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"241":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"395":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"32":{"tf":1.0}}},"df":41,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":2.23606797749979},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"23":{"tf":1.4142135623730951},"255":{"tf":1.0},"282":{"tf":1.0},"326":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"345":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"370":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"450":{"tf":1.7320508075688772},"451":{"tf":2.0},"453":{"tf":1.4142135623730951},"454":{"tf":2.449489742783178},"455":{"tf":2.449489742783178},"456":{"tf":1.0},"457":{"tf":2.23606797749979},"458":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":2.23606797749979},"7":{"tf":2.0},"80":{"tf":1.0},"9":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"293":{"tf":1.4142135623730951},"450":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"l":{"d":{"df":10,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":19,"docs":{"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"217":{"tf":3.872983346207417},"218":{"tf":2.0},"220":{"tf":3.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":27,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":2.449489742783178},"251":{"tf":2.449489742783178},"253":{"tf":2.0},"254":{"tf":2.6457513110645907},"255":{"tf":1.0},"257":{"tf":2.449489742783178},"269":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"3":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"262":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"254":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.4142135623730951},"391":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"133":{"tf":1.0},"406":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"t":{"df":6,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"189":{"tf":1.0},"253":{"tf":1.4142135623730951},"310":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"168":{"tf":1.0},"290":{"tf":1.4142135623730951},"343":{"tf":1.0},"367":{"tf":1.0},"403":{"tf":1.0},"427":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":13,"docs":{"109":{"tf":1.4142135623730951},"164":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"253":{"tf":1.0},"3":{"tf":1.0},"383":{"tf":1.0},"424":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":3,"docs":{"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"<":{"df":0,"docs":{},"u":{"3":{"2":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"*":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{")":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"328":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":12,"docs":{"173":{"tf":1.0},"190":{"tf":1.0},"280":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"409":{"tf":1.0},"453":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"168":{"tf":1.0},"367":{"tf":1.0}}}}}}},"t":{"df":85,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"136":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":2.0},"181":{"tf":1.0},"196":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"242":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"273":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.4142135623730951},"301":{"tf":1.0},"304":{"tf":1.0},"308":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.4142135623730951},"340":{"tf":1.0},"365":{"tf":1.4142135623730951},"372":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.4142135623730951},"394":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.4142135623730951},"432":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"443":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.4142135623730951},"451":{"tf":1.0},"460":{"tf":1.0},"463":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"474":{"tf":1.0},"477":{"tf":1.0},"481":{"tf":1.4142135623730951},"485":{"tf":1.0},"488":{"tf":1.0},"491":{"tf":1.0},"495":{"tf":1.4142135623730951},"506":{"tf":1.0},"509":{"tf":1.0},"512":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}},"t":{"df":3,"docs":{"217":{"tf":1.4142135623730951},"226":{"tf":1.0},"431":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"146":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.4142135623730951},"172":{"tf":1.0},"343":{"tf":2.0},"485":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":2,"docs":{"290":{"tf":1.0},"386":{"tf":1.0}}}}}},"t":{"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"130":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"326":{"tf":1.0},"440":{"tf":1.0},"457":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"x":{"df":12,"docs":{"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"297":{"tf":1.4142135623730951},"34":{"tf":1.0},"403":{"tf":1.4142135623730951},"407":{"tf":1.0},"429":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"393":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"134":{"tf":1.0},"297":{"tf":1.7320508075688772},"329":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"503":{"tf":1.0}}},"df":1,"docs":{"237":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"168":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.0},"295":{"tf":1.4142135623730951}}},"s":{"df":3,"docs":{"162":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"25":{"tf":1.0},"499":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"502":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"131":{"tf":1.0},"165":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":2.0},"50":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"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":{"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":1,"docs":{"328":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"128":{"tf":1.7320508075688772},"191":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0}}}}},"v":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"440":{"tf":1.0},"481":{"tf":1.7320508075688772},"483":{"tf":1.4142135623730951},"496":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"237":{"tf":1.0},"270":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"383":{"tf":1.0},"459":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"11":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"362":{"tf":1.0},"500":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"135":{"tf":1.0},"197":{"tf":1.4142135623730951},"406":{"tf":1.0},"444":{"tf":1.0},"459":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}},"i":{"d":{"df":2,"docs":{"298":{"tf":1.0},"351":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"169":{"tf":1.0},"454":{"tf":1.4142135623730951},"457":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":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":15,"docs":{"133":{"tf":1.0},"194":{"tf":1.0},"208":{"tf":1.0},"251":{"tf":1.4142135623730951},"295":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":1.0},"360":{"tf":1.0},"414":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"47":{"tf":3.0},"500":{"tf":1.0},"501":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"416":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":1.0},"414":{"tf":2.449489742783178},"416":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":2.0},"420":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":2.23606797749979},"43":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"235":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"325":{"tf":1.0},"497":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"133":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"487":{"tf":1.0},"58":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"235":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"225":{"tf":1.0},"360":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":24,"docs":{"10":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"143":{"tf":1.0},"159":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"310":{"tf":1.0},"344":{"tf":1.4142135623730951},"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"383":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"449":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"429":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"239":{"tf":1.4142135623730951},"279":{"tf":1.0},"296":{"tf":1.0},"31":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"243":{"tf":1.0},"3":{"tf":1.0},"344":{"tf":1.0},"454":{"tf":1.4142135623730951},"507":{"tf":1.0},"6":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"471":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"298":{"tf":1.0}},"t":{"df":4,"docs":{"299":{"tf":1.0},"356":{"tf":1.0},"37":{"tf":1.0},"440":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"163":{"tf":1.0},"254":{"tf":1.0},"343":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":12,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"280":{"tf":1.0},"351":{"tf":1.0},"403":{"tf":1.0},"440":{"tf":1.0},"72":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"403":{"tf":1.0},"482":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"209":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":3.1622776601683795},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"47":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":12,"docs":{"124":{"tf":1.0},"146":{"tf":1.0},"164":{"tf":1.4142135623730951},"189":{"tf":1.0},"282":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":1,"docs":{"351":{"tf":1.0}}}}},"u":{"df":8,"docs":{"22":{"tf":1.0},"222":{"tf":1.0},"280":{"tf":1.0},"310":{"tf":1.0},"340":{"tf":1.0},"368":{"tf":1.4142135623730951},"406":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"160":{"tf":3.1622776601683795},"161":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":2.23606797749979},"166":{"tf":2.0},"168":{"tf":3.4641016151377544},"169":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":2.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"403":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"204":{"tf":1.0},"30":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"194":{"tf":1.7320508075688772},"23":{"tf":1.0},"30":{"tf":1.0},"312":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"241":{"tf":1.0},"279":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":2.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"469":{"tf":1.0},"485":{"tf":1.0},"505":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"237":{"tf":1.0},"348":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}},"t":{"df":4,"docs":{"23":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"471":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"437":{"tf":1.0},"51":{"tf":1.0}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"146":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"292":{"tf":1.0},"425":{"tf":1.7320508075688772},"426":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"429":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}}}}},"n":{"c":{"df":2,"docs":{"147":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"343":{"tf":2.0},"347":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"189":{"tf":1.0},"194":{"tf":1.4142135623730951}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"384":{"tf":1.0},"385":{"tf":1.0},"389":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"131":{"tf":2.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}},"df":41,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":2.6457513110645907},"164":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":2.0},"189":{"tf":3.3166247903554},"190":{"tf":3.1622776601683795},"191":{"tf":4.123105625617661},"192":{"tf":1.7320508075688772},"193":{"tf":3.0},"194":{"tf":5.656854249492381},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"296":{"tf":2.449489742783178},"299":{"tf":1.0},"350":{"tf":2.0},"356":{"tf":2.0},"357":{"tf":2.23606797749979},"359":{"tf":2.23606797749979},"360":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"403":{"tf":1.4142135623730951},"406":{"tf":3.0},"407":{"tf":1.0},"447":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"131":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":2.0},"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"134":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"191":{"tf":1.0},"194":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"165":{"tf":1.0}}},"df":8,"docs":{"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"173":{"tf":1.0},"180":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"193":{"tf":2.449489742783178},"357":{"tf":1.0},"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":40,"docs":{"181":{"tf":2.23606797749979},"182":{"tf":1.0},"189":{"tf":6.244997998398398},"190":{"tf":4.58257569495584},"191":{"tf":4.0},"192":{"tf":3.3166247903554},"193":{"tf":3.1622776601683795},"194":{"tf":2.8284271247461903},"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":2.6457513110645907},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"212":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"379":{"tf":1.7320508075688772},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"383":{"tf":3.4641016151377544},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":2.0},"406":{"tf":2.6457513110645907},"407":{"tf":1.7320508075688772},"408":{"tf":1.4142135623730951},"409":{"tf":1.7320508075688772},"451":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"487":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"115":{"tf":1.0},"360":{"tf":1.0},"440":{"tf":1.0},"459":{"tf":1.0},"473":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"152":{"tf":1.0},"294":{"tf":1.0},"444":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"403":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"132":{"tf":1.0},"191":{"tf":1.4142135623730951},"217":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"12":{"tf":1.0},"173":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"314":{"tf":1.0},"329":{"tf":1.0},"347":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"450":{"tf":2.0},"451":{"tf":1.0},"454":{"tf":1.0},"466":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"343":{"tf":3.3166247903554},"347":{"tf":1.4142135623730951},"406":{"tf":1.0}},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"309":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"456":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"190":{"tf":1.0},"223":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"371":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"281":{"tf":1.0},"72":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"281":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"129":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"29":{"tf":1.0},"343":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"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":{}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"189":{"tf":2.6457513110645907},"191":{"tf":1.7320508075688772},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"217":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":8,"docs":{"133":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"174":{"tf":1.0},"25":{"tf":1.0},"392":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.6457513110645907},"292":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"192":{"tf":1.4142135623730951},"383":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"471":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}},"u":{"df":2,"docs":{"189":{"tf":1.0},"240":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"102":{"tf":1.0},"13":{"tf":1.7320508075688772},"22":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":67,"docs":{"1":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"194":{"tf":2.0},"2":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"280":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.4142135623730951},"391":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":2.449489742783178},"51":{"tf":1.0},"512":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":2.23606797749979},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"s":{"df":1,"docs":{"407":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":7,"docs":{"190":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"406":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"154":{"tf":1.0},"164":{"tf":1.0},"54":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"133":{"tf":1.0},"58":{"tf":1.0}}}}},"d":{"a":{"df":4,"docs":{"164":{"tf":1.7320508075688772},"166":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"400":{"tf":1.0}}},"df":4,"docs":{"310":{"tf":1.0},"312":{"tf":2.449489742783178},"313":{"tf":1.7320508075688772},"314":{"tf":1.0}}},"o":{"df":1,"docs":{"70":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"434":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"512":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":31,"docs":{"124":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":2.0},"132":{"tf":1.7320508075688772},"137":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"18":{"tf":1.0},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"239":{"tf":1.0},"266":{"tf":1.0},"297":{"tf":1.0},"32":{"tf":1.4142135623730951},"343":{"tf":4.795831523312719},"347":{"tf":1.0},"391":{"tf":1.0},"42":{"tf":2.23606797749979},"421":{"tf":1.4142135623730951},"44":{"tf":2.0},"455":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.4142135623730951},"497":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":2.0},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"190":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":6,"docs":{"164":{"tf":1.4142135623730951},"184":{"tf":1.0},"193":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"483":{"tf":1.0}}}},"df":2,"docs":{"194":{"tf":1.4142135623730951},"357":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"194":{"tf":1.0},"343":{"tf":2.0},"386":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"269":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"d":{"df":8,"docs":{"131":{"tf":1.0},"151":{"tf":1.0},"251":{"tf":1.0},"269":{"tf":1.4142135623730951},"381":{"tf":1.0},"440":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"122":{"tf":1.0},"150":{"tf":1.0}}}},"o":{"d":{"df":14,"docs":{"102":{"tf":2.0},"108":{"tf":1.7320508075688772},"122":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"187":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"471":{"tf":1.0},"485":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"137":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":2.0},"199":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"340":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"162":{"tf":1.0},"189":{"tf":1.4142135623730951},"194":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.4142135623730951},"310":{"tf":1.0},"325":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"156":{"tf":1.4142135623730951},"241":{"tf":1.0},"262":{"tf":1.0},"369":{"tf":2.23606797749979},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"+":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"163":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"163":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0}}}}}},"df":2,"docs":{"163":{"tf":2.0},"168":{"tf":1.0}},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"193":{"tf":1.7320508075688772},"208":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"32":{"tf":1.4142135623730951},"325":{"tf":1.0},"355":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"485":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"7":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"11":{"tf":1.0},"243":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"429":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"429":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":8,"docs":{"425":{"tf":1.7320508075688772},"426":{"tf":3.1622776601683795},"427":{"tf":2.23606797749979},"429":{"tf":4.898979485566356},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"437":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"186":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"458":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"170":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"360":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"450":{"tf":2.0},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772},"457":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"297":{"tf":1.0},"39":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772}}}}},"t":{"df":4,"docs":{"190":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"131":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"27":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"450":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"0":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"1":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":2.0}}},"df":0,"docs":{}},"df":33,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"164":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"266":{"tf":1.0},"297":{"tf":1.7320508075688772},"3":{"tf":2.6457513110645907},"4":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.3166247903554},"455":{"tf":1.0},"457":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":2.6457513110645907},"7":{"tf":2.449489742783178},"8":{"tf":2.0},"9":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":7,"docs":{"133":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"378":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"192":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"440":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"266":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"458":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":10,"docs":{"4":{"tf":1.0},"429":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":2.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"85":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"190":{"tf":1.0},"369":{"tf":1.7320508075688772},"406":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":26,"docs":{"107":{"tf":1.0},"131":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.7320508075688772},"292":{"tf":1.0},"301":{"tf":1.0},"343":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"505":{"tf":1.0},"72":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"467":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":2.0},"103":{"tf":1.0},"107":{"tf":1.0},"47":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":24,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"24":{"tf":1.0},"269":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"35":{"tf":1.0},"401":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"483":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":16,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"223":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"406":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"208":{"tf":1.0},"72":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.4142135623730951},"181":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.4142135623730951},"281":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"164":{"tf":1.0},"262":{"tf":1.0},"343":{"tf":1.0},"371":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"185":{"tf":1.0},"212":{"tf":1.0},"239":{"tf":1.4142135623730951},"269":{"tf":1.0},"340":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":2.0},"454":{"tf":1.0},"48":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":2,"docs":{"152":{"tf":1.0},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":44,"docs":{"120":{"tf":1.4142135623730951},"126":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"177":{"tf":1.7320508075688772},"187":{"tf":1.0},"205":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"251":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"30":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"327":{"tf":1.0},"351":{"tf":1.0},"387":{"tf":1.0},"396":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"421":{"tf":1.0},"445":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"352":{"tf":1.0}}}},"c":{"df":6,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"t":{"df":13,"docs":{"233":{"tf":2.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"241":{"tf":1.0},"243":{"tf":1.0},"495":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"502":{"tf":2.23606797749979},"503":{"tf":2.0},"505":{"tf":1.0},"507":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"369":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"104":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"164":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"297":{"tf":1.0},"345":{"tf":1.4142135623730951},"486":{"tf":1.0}},"i":{"df":3,"docs":{"262":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"111":{"tf":2.449489742783178},"113":{"tf":1.0},"47":{"tf":1.4142135623730951},"51":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":2.6457513110645907}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"m":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":50,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.0},"337":{"tf":1.0},"365":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"400":{"tf":1.0},"412":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"512":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"171":{"tf":1.0},"280":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.0},"390":{"tf":1.0},"421":{"tf":1.4142135623730951},"483":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"149":{"tf":1.0},"156":{"tf":1.4142135623730951},"241":{"tf":1.0},"442":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"407":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"429":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"483":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"106":{"tf":1.0},"190":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"369":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}},"v":{"df":5,"docs":{"234":{"tf":1.0},"240":{"tf":1.0},"262":{"tf":1.0},"496":{"tf":1.0},"512":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"495":{"tf":1.0}},"i":{"df":6,"docs":{"234":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"403":{"tf":1.0},"407":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"134":{"tf":1.0},"159":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"369":{"tf":1.0},"381":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"423":{"tf":1.4142135623730951},"437":{"tf":1.0},"447":{"tf":1.0},"464":{"tf":1.0},"5":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"241":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"191":{"tf":3.0},"262":{"tf":1.0},"266":{"tf":1.0},"294":{"tf":1.0},"447":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"132":{"tf":1.0},"134":{"tf":1.7320508075688772},"143":{"tf":2.6457513110645907},"451":{"tf":1.0},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"290":{"tf":1.0},"35":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"191":{"tf":1.0},"234":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"403":{"tf":1.0},"407":{"tf":1.0},"52":{"tf":1.0}}},"s":{"df":2,"docs":{"3":{"tf":1.0},"5":{"tf":1.0}}},"t":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"190":{"tf":1.0},"35":{"tf":1.0},"367":{"tf":1.0},"512":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"187":{"tf":1.0},"404":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"189":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"410":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"472":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"34":{"tf":1.0}}},"df":12,"docs":{"109":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"253":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"343":{"tf":1.0},"402":{"tf":1.0},"45":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":9,"docs":{"162":{"tf":1.0},"191":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"262":{"tf":1.0},"340":{"tf":1.0},"391":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"135":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"343":{"tf":2.6457513110645907},"369":{"tf":2.0},"370":{"tf":1.0},"406":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"466":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"511":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"235":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"194":{"tf":1.0},"236":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"485":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"110":{"tf":1.0},"122":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"293":{"tf":1.0},"315":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.4142135623730951},"507":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":36,"docs":{"11":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.7320508075688772},"207":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"3":{"tf":1.7320508075688772},"313":{"tf":1.0},"316":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"8":{"tf":2.8284271247461903},"9":{"tf":2.8284271247461903}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"193":{"tf":1.0},"360":{"tf":1.0}},"i":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":8,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"241":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"189":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"293":{"tf":1.0},"501":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"357":{"tf":1.4142135623730951},"406":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":59,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0},"349":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.0},"392":{"tf":1.0},"401":{"tf":1.0},"409":{"tf":1.0},"412":{"tf":1.0},"417":{"tf":1.4142135623730951},"425":{"tf":1.0},"430":{"tf":1.4142135623730951},"448":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.0},"495":{"tf":1.0},"504":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"437":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"297":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}},"n":{"df":1,"docs":{"402":{"tf":1.0}}},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"132":{"tf":1.0},"298":{"tf":1.0},"307":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"113":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"241":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"367":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"190":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.4142135623730951},"454":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"296":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":2.0},"407":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":15,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"3":{"tf":1.0},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"407":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":9,"docs":{"163":{"tf":1.4142135623730951},"164":{"tf":2.0},"189":{"tf":1.0},"220":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"303":{"tf":1.0},"407":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0}}}},"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":42,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":2.6457513110645907},"207":{"tf":1.0},"217":{"tf":1.7320508075688772},"24":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"310":{"tf":1.0},"325":{"tf":1.7320508075688772},"326":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"42":{"tf":1.0},"427":{"tf":1.0},"454":{"tf":1.0},"47":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"48":{"tf":2.0},"485":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"163":{"tf":1.0},"200":{"tf":1.0},"371":{"tf":1.0},"406":{"tf":1.4142135623730951},"483":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"162":{"tf":1.0}},"i":{"df":5,"docs":{"132":{"tf":1.0},"143":{"tf":1.4142135623730951},"262":{"tf":1.0},"473":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"159":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"407":{"tf":1.0},"490":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"239":{"tf":1.0},"280":{"tf":1.0},"371":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"497":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"505":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":12,"docs":{"14":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"229":{"tf":1.0},"3":{"tf":1.0},"381":{"tf":1.0},"409":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":26,"docs":{"118":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"166":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"434":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"48":{"tf":1.0},"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":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.0}},"g":{"df":1,"docs":{"193":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"409":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"168":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":2.8284271247461903},"193":{"tf":1.0},"194":{"tf":1.0},"270":{"tf":1.0},"383":{"tf":1.4142135623730951},"403":{"tf":1.0},"450":{"tf":1.4142135623730951},"47":{"tf":1.0},"485":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"193":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":15,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"296":{"tf":1.0},"340":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"427":{"tf":1.0},"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"164":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"217":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"343":{"tf":1.0},"403":{"tf":1.0},"47":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"58":{"tf":1.0}}}}}}},"m":{"b":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"47":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"297":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"163":{"tf":1.0},"407":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":4,"docs":{"43":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"429":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"194":{"tf":2.0},"343":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"122":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"139":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"161":{"tf":1.0},"164":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"179":{"tf":1.0},"189":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.4142135623730951},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"500":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"133":{"tf":1.4142135623730951},"190":{"tf":1.0},"202":{"tf":1.0},"477":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":19,"docs":{"102":{"tf":2.0},"104":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"32":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":2.0},"33":{"tf":1.7320508075688772},"343":{"tf":2.0},"47":{"tf":1.4142135623730951},"471":{"tf":2.23606797749979},"51":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"277":{"tf":2.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.7320508075688772},"280":{"tf":2.0},"281":{"tf":2.449489742783178},"282":{"tf":1.7320508075688772},"285":{"tf":1.0},"287":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"281":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"24":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"3":{"tf":1.0},"369":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"106":{"tf":1.4142135623730951},"128":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":2.6457513110645907},"193":{"tf":2.449489742783178},"194":{"tf":4.898979485566356},"326":{"tf":1.0},"358":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"427":{"tf":1.0},"476":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"296":{"tf":1.0},"383":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"238":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"110":{"tf":1.0},"269":{"tf":1.0},"324":{"tf":1.4142135623730951},"334":{"tf":1.0},"391":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"407":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"173":{"tf":1.0},"187":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.0},"404":{"tf":1.0},"60":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"19":{"tf":1.0},"22":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"129":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"218":{"tf":1.0},"247":{"tf":1.0},"427":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"511":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":48,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.7320508075688772},"223":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"397":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"459":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":15,"docs":{"125":{"tf":1.0},"191":{"tf":2.0},"241":{"tf":1.0},"247":{"tf":1.0},"298":{"tf":1.4142135623730951},"343":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"406":{"tf":1.0},"429":{"tf":1.0},"455":{"tf":1.4142135623730951},"486":{"tf":1.0},"511":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"415":{"tf":1.0},"98":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.4142135623730951},"2":{"tf":1.0},"241":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.4142135623730951},"408":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"102":{"tf":1.0},"104":{"tf":2.6457513110645907},"132":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":1.0},"369":{"tf":1.0},"385":{"tf":1.0},"389":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"149":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":3,"docs":{"164":{"tf":1.0},"189":{"tf":1.0},"202":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"'":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":4.123105625617661},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":23,"docs":{"132":{"tf":1.0},"191":{"tf":3.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"240":{"tf":1.0},"325":{"tf":1.0},"343":{"tf":2.0},"347":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"407":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"191":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"369":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"486":{"tf":1.0}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"294":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":2,"docs":{"297":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"51":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"51":{"tf":2.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"123":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"137":{"tf":1.0}}}}}},"c":{"2":{"0":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"7":{"2":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":78,"docs":{"1":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.4142135623730951},"153":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"242":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.4142135623730951},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"318":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.0},"365":{"tf":1.4142135623730951},"372":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.4142135623730951},"394":{"tf":1.0},"396":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.4142135623730951},"432":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"443":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.4142135623730951},"460":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"472":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.4142135623730951},"488":{"tf":1.0},"490":{"tf":1.0},"495":{"tf":1.4142135623730951},"506":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"133":{"tf":1.0},"150":{"tf":1.0},"343":{"tf":4.242640687119285},"487":{"tf":1.0},"497":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"407":{"tf":1.0},"450":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"243":{"tf":1.0},"294":{"tf":1.0},"34":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.0},"433":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"169":{"tf":1.0},"18":{"tf":1.0},"293":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"406":{"tf":1.0},"408":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"t":{"c":{"df":5,"docs":{"235":{"tf":1.0},"298":{"tf":1.0},"369":{"tf":1.0},"423":{"tf":1.0},"434":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"164":{"tf":1.0}}},"df":5,"docs":{"164":{"tf":1.4142135623730951},"166":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"66":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"353":{"tf":1.0}}}}},"n":{"df":14,"docs":{"130":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"307":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.6457513110645907},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.4142135623730951},"48":{"tf":1.0},"491":{"tf":1.4142135623730951},"500":{"tf":1.0},"512":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"125":{"tf":1.0}}}},"t":{"df":4,"docs":{"143":{"tf":1.0},"296":{"tf":1.0},"429":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951}},"u":{"df":5,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"217":{"tf":1.4142135623730951},"387":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"494":{"tf":1.0},"499":{"tf":1.0}}}}}}},"m":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":2.23606797749979},"169":{"tf":2.23606797749979},"171":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"295":{"tf":1.0},"54":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"351":{"tf":1.0},"367":{"tf":1.0},"400":{"tf":1.0},"440":{"tf":1.0},"47":{"tf":1.0},"500":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":36,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"220":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"269":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.4142135623730951},"349":{"tf":1.0},"360":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"406":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"163":{"tf":1.0},"191":{"tf":1.0},"32":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"367":{"tf":1.7320508075688772},"414":{"tf":1.0},"499":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"343":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"290":{"tf":1.4142135623730951},"343":{"tf":3.7416573867739413},"386":{"tf":1.7320508075688772},"393":{"tf":1.0},"398":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"156":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"403":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":47,"docs":{"150":{"tf":1.7320508075688772},"164":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"227":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"365":{"tf":1.0},"367":{"tf":2.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"376":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.7320508075688772},"450":{"tf":1.0},"483":{"tf":1.0},"505":{"tf":1.0},"512":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"328":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"395":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"489":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"182":{"tf":1.0},"186":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"192":{"tf":1.0},"217":{"tf":1.0},"262":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"114":{"tf":1.0},"163":{"tf":1.0},"19":{"tf":1.0},"272":{"tf":1.0},"293":{"tf":1.0},"397":{"tf":1.0},"429":{"tf":1.0},"70":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"408":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"189":{"tf":1.0},"191":{"tf":1.0},"268":{"tf":1.0}},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"190":{"tf":1.0},"310":{"tf":1.0},"328":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"n":{"df":67,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.4142135623730951},"160":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"188":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"288":{"tf":1.0},"292":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.0},"365":{"tf":1.0},"369":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"495":{"tf":1.0},"499":{"tf":1.0},"505":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"133":{"tf":1.0},"208":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"32":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"21":{"tf":1.0},"291":{"tf":1.0},"41":{"tf":1.0},"450":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":1,"docs":{"409":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"12":{"tf":1.0},"357":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"146":{"tf":1.0},"149":{"tf":3.0},"150":{"tf":1.4142135623730951},"471":{"tf":1.0}}}},"s":{"df":13,"docs":{"164":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"301":{"tf":1.0},"344":{"tf":1.0},"403":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"454":{"tf":1.0},"476":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"343":{"tf":1.7320508075688772},"410":{"tf":1.0},"415":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"340":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"*":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"4":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"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":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"340":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"347":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"347":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"164":{"tf":1.0},"234":{"tf":1.0},"408":{"tf":1.0},"496":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"107":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":1.0},"169":{"tf":1.0},"274":{"tf":1.0},"396":{"tf":1.0},"410":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"131":{"tf":1.0},"146":{"tf":1.0},"197":{"tf":1.0},"281":{"tf":1.0},"383":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"328":{"tf":1.0}}}},"df":8,"docs":{"122":{"tf":1.0},"235":{"tf":1.4142135623730951},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"433":{"tf":1.0},"468":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"164":{"tf":1.0},"168":{"tf":1.0},"359":{"tf":1.4142135623730951},"408":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.7320508075688772},"133":{"tf":1.0},"166":{"tf":1.0},"389":{"tf":1.4142135623730951},"429":{"tf":1.0},"440":{"tf":1.7320508075688772},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.4641016151377544},"85":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":2.0}},"i":{"c":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"389":{"tf":1.7320508075688772},"399":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"f":{"+":{"1":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"217":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"186":{"tf":1.4142135623730951},"191":{"tf":1.0},"27":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"217":{"tf":1.0},"297":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":12,"docs":{"193":{"tf":2.6457513110645907},"207":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"477":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":3.1622776601683795},"98":{"tf":1.0}}}}},"r":{"df":4,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"402":{"tf":1.4142135623730951},"407":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"129":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.4142135623730951},"193":{"tf":1.0},"355":{"tf":1.0}}},"s":{"df":3,"docs":{"104":{"tf":1.0},"369":{"tf":2.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"163":{"tf":1.0},"247":{"tf":1.0},"472":{"tf":1.0},"511":{"tf":1.0},"98":{"tf":1.0}}}},"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":4,"docs":{"164":{"tf":1.0},"185":{"tf":1.0},"296":{"tf":1.0},"383":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"186":{"tf":1.0},"296":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"292":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"347":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"125":{"tf":1.0},"391":{"tf":1.0}}}}}}},"df":1,"docs":{"357":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"411":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"240":{"tf":1.0},"370":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":2.0},"139":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"196":{"tf":1.0},"298":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"406":{"tf":1.0},"487":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"192":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"253":{"tf":1.0},"427":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}},"df":2,"docs":{"383":{"tf":1.0},"427":{"tf":1.0}},"l":{"df":4,"docs":{"431":{"tf":1.0},"437":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"162":{"tf":1.0},"164":{"tf":1.0},"205":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"0":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"9":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"4":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"df":1,"docs":{"251":{"tf":1.0}}},"df":27,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":2.0},"254":{"tf":2.0},"258":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"314":{"tf":1.0},"322":{"tf":1.0},"404":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"84":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"132":{"tf":1.0},"383":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"14":{"tf":1.0},"243":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"427":{"tf":1.0},"486":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"104":{"tf":1.4142135623730951},"119":{"tf":1.0},"132":{"tf":1.0},"191":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951},"207":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"32":{"tf":1.0},"369":{"tf":2.0},"48":{"tf":1.0},"501":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"387":{"tf":1.0}}},"l":{"df":4,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.4142135623730951},"48":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"190":{"tf":2.0},"191":{"tf":3.605551275463989},"197":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"48":{"tf":1.4142135623730951},"500":{"tf":2.8284271247461903},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"282":{"tf":1.0}},"i":{"df":3,"docs":{"13":{"tf":1.0},"3":{"tf":1.0},"450":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":16,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"512":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"133":{"tf":1.0},"403":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"343":{"tf":1.0},"407":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}},"t":{"df":2,"docs":{"185":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":28,"docs":{"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"194":{"tf":2.23606797749979},"208":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"297":{"tf":1.4142135623730951},"343":{"tf":1.0},"391":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":2.23606797749979},"471":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"156":{"tf":1.0},"190":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"343":{"tf":2.449489742783178},"50":{"tf":1.0},"99":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"221":{"tf":1.0},"35":{"tf":1.0}}}},"x":{"df":10,"docs":{"131":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"220":{"tf":2.0},"32":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"500":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"369":{"tf":1.0},"485":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"328":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"193":{"tf":1.0},"295":{"tf":1.0},"403":{"tf":1.0},"416":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"296":{"tf":1.0}},"p":{"df":1,"docs":{"357":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"103":{"tf":1.0},"383":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":10,"docs":{"131":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"442":{"tf":1.0},"45":{"tf":2.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"312":{"tf":1.0},"65":{"tf":1.0}},"s":{"df":2,"docs":{"26":{"tf":1.0},"458":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":40,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"162":{"tf":1.0},"169":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"253":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"33":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.0},"383":{"tf":1.4142135623730951},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951},"494":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"389":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"185":{"tf":1.0},"328":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":2.449489742783178},"406":{"tf":1.0},"83":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"430":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"239":{"tf":1.4142135623730951},"240":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"143":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"58":{"tf":2.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}},"t":{"df":14,"docs":{"109":{"tf":1.0},"189":{"tf":1.0},"239":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}}}},"df":16,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"367":{"tf":1.0},"455":{"tf":1.0},"483":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"407":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"193":{"tf":1.0},"48":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"14":{"tf":1.0},"229":{"tf":1.0},"258":{"tf":1.0},"364":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"326":{"tf":1.0},"410":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"197":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0},"61":{"tf":1.0}}}},"df":10,"docs":{"238":{"tf":1.0},"240":{"tf":1.0},"32":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"45":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"501":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"207":{"tf":1.4142135623730951}}}}}},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"164":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"189":{"tf":1.4142135623730951},"401":{"tf":1.0},"403":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":4,"docs":{"164":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"83":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":7,"docs":{"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"266":{"tf":1.0},"297":{"tf":1.0},"340":{"tf":1.7320508075688772},"437":{"tf":1.0},"489":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"427":{"tf":1.0},"454":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"383":{"tf":1.0},"454":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"190":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"146":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"269":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0}}}}},"l":{"df":15,"docs":{"104":{"tf":1.0},"191":{"tf":1.7320508075688772},"204":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"243":{"tf":2.23606797749979},"310":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"33":{"tf":1.0},"367":{"tf":2.23606797749979},"406":{"tf":1.0},"507":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":5,"docs":{"122":{"tf":1.0},"146":{"tf":1.0},"190":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"149":{"tf":3.0},"343":{"tf":7.0},"344":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},"df":74,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":2.23606797749979},"123":{"tf":1.0},"131":{"tf":2.6457513110645907},"133":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"149":{"tf":2.23606797749979},"150":{"tf":1.7320508075688772},"164":{"tf":2.0},"181":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.4142135623730951},"257":{"tf":1.0},"288":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":2.23606797749979},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"3":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":2.0},"343":{"tf":7.280109889280518},"344":{"tf":2.23606797749979},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":2.0},"356":{"tf":1.4142135623730951},"357":{"tf":2.23606797749979},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"389":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":2.0},"429":{"tf":1.0},"43":{"tf":2.449489742783178},"438":{"tf":1.7320508075688772},"439":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":2.23606797749979},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"45":{"tf":2.23606797749979},"468":{"tf":1.0},"471":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.4142135623730951},"6":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"247":{"tf":1.0},"511":{"tf":1.0}}}}}}},"df":9,"docs":{"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"407":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"189":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.0},"383":{"tf":1.0},"401":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.4142135623730951},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"186":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"340":{"tf":1.0},"505":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":70,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"240":{"tf":1.0},"248":{"tf":1.4142135623730951},"260":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.0},"396":{"tf":1.0},"400":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"412":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"452":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"512":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"g":{"a":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":2,"docs":{"165":{"tf":1.0},"168":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"369":{"tf":1.0},"489":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"216":{"tf":1.0},"407":{"tf":1.0}}}},"p":{"df":2,"docs":{"500":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"181":{"tf":1.0},"201":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"437":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"379":{"tf":1.0},"401":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":43,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.4142135623730951},"253":{"tf":1.0},"257":{"tf":1.7320508075688772},"262":{"tf":1.0},"276":{"tf":1.0},"290":{"tf":1.0},"30":{"tf":1.0},"312":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"380":{"tf":1.0},"383":{"tf":1.0},"42":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"47":{"tf":1.0},"473":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":2.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":10,"docs":{"235":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"269":{"tf":1.7320508075688772},"293":{"tf":1.4142135623730951},"297":{"tf":1.0},"47":{"tf":2.8284271247461903},"497":{"tf":1.4142135623730951},"500":{"tf":2.0},"502":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"239":{"tf":1.0},"240":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"454":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"134":{"tf":1.0},"143":{"tf":2.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"457":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"b":{"df":3,"docs":{"343":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"235":{"tf":1.0},"253":{"tf":1.0},"466":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"298":{"tf":1.0},"328":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.0},"367":{"tf":1.0},"497":{"tf":1.0},"70":{"tf":1.0}},"n":{"df":30,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"132":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.7320508075688772},"207":{"tf":1.0},"217":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":2.8284271247461903},"347":{"tf":1.4142135623730951},"352":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"485":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"149":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"194":{"tf":1.0},"261":{"tf":1.0},"310":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0}}}},"df":10,"docs":{"132":{"tf":1.0},"168":{"tf":1.0},"200":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"340":{"tf":1.0},"437":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"485":{"tf":1.0}},"e":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"o":{"d":{"df":9,"docs":{"217":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"292":{"tf":1.0},"340":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.0},"511":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"325":{"tf":1.0},"500":{"tf":1.0}}}}}},"v":{"1":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"350":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"168":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"297":{"tf":3.0},"298":{"tf":2.23606797749979},"306":{"tf":1.0},"307":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"451":{"tf":1.0}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"a":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"133":{"tf":1.0},"406":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"437":{"tf":1.4142135623730951},"459":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"191":{"tf":1.0},"207":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"427":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":13,"docs":{"129":{"tf":1.0},"197":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"290":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"298":{"tf":1.0},"367":{"tf":1.0}}}},"w":{"df":2,"docs":{"164":{"tf":1.0},"352":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"173":{"tf":1.0},"350":{"tf":1.0},"360":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"189":{"tf":1.0},"217":{"tf":1.0},"290":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"230":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"410":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"194":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":2,"docs":{"217":{"tf":1.0},"297":{"tf":1.0}}},"v":{"df":1,"docs":{"137":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"133":{"tf":1.0},"282":{"tf":1.0},"314":{"tf":1.0}},"l":{"df":10,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"297":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"373":{"tf":1.0},"407":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"163":{"tf":1.0},"386":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"440":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"505":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}},"i":{"df":1,"docs":{"401":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"502":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"502":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"132":{"tf":1.0},"143":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"33":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":2.23606797749979},"44":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"47":{"tf":1.0},"501":{"tf":1.4142135623730951},"72":{"tf":2.0},"95":{"tf":1.0}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":22,"docs":{"132":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"370":{"tf":1.0},"407":{"tf":1.0},"429":{"tf":1.4142135623730951},"456":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"495":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"266":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"495":{"tf":1.0},"500":{"tf":2.23606797749979},"503":{"tf":1.7320508075688772},"512":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"343":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"343":{"tf":2.23606797749979},"496":{"tf":1.0},"497":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":5,"docs":{"149":{"tf":1.0},"340":{"tf":1.4142135623730951},"481":{"tf":1.7320508075688772},"483":{"tf":1.4142135623730951},"486":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"487":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"238":{"tf":1.0},"346":{"tf":1.0},"501":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"l":{"d":{"df":3,"docs":{"192":{"tf":1.0},"297":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":11,"docs":{"146":{"tf":1.0},"192":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"410":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":2.0}}}}}},"n":{"c":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"143":{"tf":1.0}}},"df":25,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.7320508075688772},"397":{"tf":1.0},"400":{"tf":1.0},"403":{"tf":1.0},"409":{"tf":1.0},"417":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"455":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"326":{"tf":1.0},"328":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":12,"docs":{"164":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"310":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.0},"41":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"472":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"355":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"458":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"220":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"217":{"tf":1.0},"409":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"434":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"397":{"tf":1.0},"512":{"tf":1.0}},"i":{"df":5,"docs":{"164":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.0},"502":{"tf":1.0},"512":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"130":{"tf":1.0},"150":{"tf":1.7320508075688772},"166":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"125":{"tf":1.0},"166":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"298":{"tf":1.0},"353":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.4142135623730951},"404":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"424":{"tf":1.0},"437":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}},"df":23,"docs":{"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"150":{"tf":1.0},"185":{"tf":1.0},"338":{"tf":2.23606797749979},"339":{"tf":1.4142135623730951},"340":{"tf":3.0},"343":{"tf":4.898979485566356},"344":{"tf":2.23606797749979},"347":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"369":{"tf":1.0},"438":{"tf":1.7320508075688772},"439":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.7320508075688772},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"243":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":2.23606797749979},"416":{"tf":2.449489742783178},"423":{"tf":2.0},"507":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"343":{"tf":1.7320508075688772}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"3":{"7":{"7":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"4":{"7":{"5":{"8":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"8":{"5":{"df":2,"docs":{"274":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"3":{"9":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"133":{"tf":1.0},"464":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"494":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"3":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"0":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"368":{"tf":1.0}}},"6":{"df":1,"docs":{"343":{"tf":1.0}}},"7":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"/":{"#":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"9":{"1":{"%":{"a":{"0":{"df":1,"docs":{"485":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"6":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"q":{"?":{"df":0,"docs":{},"t":{"=":{"5":{"2":{"6":{"df":1,"docs":{"437":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":15,"docs":{"1":{"tf":1.7320508075688772},"14":{"tf":2.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"180":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"396":{"tf":1.0},"409":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"i":{"'":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"247":{"tf":1.0},"511":{"tf":1.0}}}},".":{"df":8,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"343":{"tf":1.4142135623730951},"371":{"tf":1.0}}}},"3":{"2":{"df":2,"docs":{"149":{"tf":2.8284271247461903},"343":{"tf":9.273618495495704}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"343":{"tf":8.246211251235321},"344":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":10,"docs":{"104":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"343":{"tf":1.4142135623730951},"369":{"tf":1.0},"454":{"tf":1.4142135623730951},"468":{"tf":1.0},"472":{"tf":1.0}},"e":{"a":{"df":5,"docs":{"13":{"tf":1.0},"340":{"tf":1.0},"410":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0}},"l":{"df":8,"docs":{"185":{"tf":1.0},"193":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"24":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"297":{"tf":2.6457513110645907},"298":{"tf":1.0},"307":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.1622776601683795},"39":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":16,"docs":{"102":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"194":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.0},"286":{"tf":1.0},"343":{"tf":2.23606797749979},"42":{"tf":1.0},"431":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"111":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"132":{"tf":1.0},"151":{"tf":1.0},"369":{"tf":1.0},"503":{"tf":1.0}}}}}},"i":{"df":3,"docs":{"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0}},"i":{"df":3,"docs":{"312":{"tf":2.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"407":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"359":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"195":{"tf":1.0}}}}},"o":{"df":1,"docs":{"94":{"tf":1.0}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":23,"docs":{"100":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.7320508075688772},"154":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"347":{"tf":1.4142135623730951},"408":{"tf":1.0},"440":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"459":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":89,"docs":{"0":{"tf":1.0},"100":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"295":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"42":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"430":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.4142135623730951},"500":{"tf":2.23606797749979},"501":{"tf":2.449489742783178},"502":{"tf":1.7320508075688772},"503":{"tf":2.0},"505":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"470":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}}}}},"i":{"c":{"df":2,"docs":{"14":{"tf":1.0},"373":{"tf":1.0}}},"df":2,"docs":{"184":{"tf":1.0},"47":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"152":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"453":{"tf":1.0}}}}}}},"df":22,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":2.0},"155":{"tf":1.0},"180":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"303":{"tf":1.0},"369":{"tf":1.4142135623730951},"381":{"tf":1.0},"383":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"47":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"168":{"tf":1.0}},"s":{"df":4,"docs":{"130":{"tf":1.0},"185":{"tf":1.0},"326":{"tf":1.0},"370":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"272":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.0},"58":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"407":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"247":{"tf":1.0},"511":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"220":{"tf":1.0},"310":{"tf":1.0},"383":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"192":{"tf":1.0},"406":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":2.0},"163":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"191":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"230":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"268":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"426":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"500":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":2.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":6,"docs":{"111":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"309":{"tf":1.0},"383":{"tf":1.7320508075688772}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"383":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":43,"docs":{"113":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.0},"243":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.7320508075688772},"383":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"409":{"tf":1.0},"414":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"454":{"tf":1.0},"466":{"tf":1.4142135623730951},"507":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"194":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.4142135623730951},"343":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"143":{"tf":1.0},"163":{"tf":1.0},"322":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"192":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.4142135623730951},"47":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":3.605551275463989},"143":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"207":{"tf":1.0},"434":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"i":{"c":{"df":17,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"240":{"tf":1.0},"254":{"tf":1.7320508075688772},"326":{"tf":1.0},"343":{"tf":3.605551275463989},"369":{"tf":1.0},"383":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":14,"docs":{"104":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.7320508075688772},"2":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"328":{"tf":1.0},"369":{"tf":1.0},"407":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}},"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":2,"docs":{"340":{"tf":1.0},"409":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":1.4142135623730951},"369":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"220":{"tf":1.0},"383":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"383":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"381":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":3,"docs":{"104":{"tf":1.0},"287":{"tf":1.0},"297":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"143":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"194":{"tf":1.7320508075688772},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"297":{"tf":1.0},"456":{"tf":1.0},"497":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"200":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"347":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":2.0},"392":{"tf":1.0},"398":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"389":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":2.0},"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.0},"455":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"485":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}},"k":{"!":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"160":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"165":{"tf":2.449489742783178},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"185":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":2.449489742783178},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":2.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"144":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"66":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"150":{"tf":1.4142135623730951},"257":{"tf":1.0},"26":{"tf":1.0},"406":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"181":{"tf":1.0},"189":{"tf":4.0},"190":{"tf":2.0},"191":{"tf":2.449489742783178},"192":{"tf":2.449489742783178},"193":{"tf":2.8284271247461903},"194":{"tf":2.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"194":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"194":{"tf":2.449489742783178}}}}}}}},"t":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.0},"240":{"tf":1.0},"313":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.3166247903554},"383":{"tf":1.0},"399":{"tf":1.0},"407":{"tf":1.4142135623730951},"454":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"189":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"294":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"383":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"442":{"tf":1.0}},"r":{"df":12,"docs":{"149":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"27":{"tf":1.0},"300":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"n":{"d":{"df":6,"docs":{"193":{"tf":1.4142135623730951},"25":{"tf":1.0},"276":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"128":{"tf":1.0},"41":{"tf":1.0}}},"t":{"df":1,"docs":{"407":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"164":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"401":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"415":{"tf":1.7320508075688772},"498":{"tf":1.0},"5":{"tf":1.0}}}}},"f":{"a":{"c":{"df":25,"docs":{"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.449489742783178},"206":{"tf":1.0},"212":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"344":{"tf":1.0},"396":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.0},"476":{"tf":1.0},"64":{"tf":2.449489742783178},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"391":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}},"l":{"a":{"c":{"df":3,"docs":{"190":{"tf":2.0},"191":{"tf":1.0},"194":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"190":{"tf":2.0},"191":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.7320508075688772},"193":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"345":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"32":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"185":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"483":{"tf":1.0},"96":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"186":{"tf":1.0},"454":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":33,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"329":{"tf":1.4142135623730951},"34":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":2.0},"383":{"tf":1.0},"385":{"tf":1.4142135623730951},"403":{"tf":2.0},"438":{"tf":1.4142135623730951},"453":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"477":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"t":{"df":8,"docs":{"0":{"tf":1.0},"23":{"tf":1.4142135623730951},"250":{"tf":1.0},"293":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"262":{"tf":1.4142135623730951},"269":{"tf":1.0},"343":{"tf":2.23606797749979},"369":{"tf":1.4142135623730951},"400":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"357":{"tf":1.0},"383":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"185":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"390":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":11,"docs":{"122":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"401":{"tf":1.0},"449":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"217":{"tf":1.0},"220":{"tf":2.449489742783178},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":9,"docs":{"244":{"tf":1.0},"245":{"tf":1.0},"330":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"374":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"241":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"457":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"295":{"tf":1.0},"337":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}},"df":0,"docs":{}}},"df":22,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"262":{"tf":1.4142135623730951},"266":{"tf":1.0},"297":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"383":{"tf":1.0},"398":{"tf":1.0},"429":{"tf":1.0},"447":{"tf":1.0},"466":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"t":{"'":{"df":16,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"297":{"tf":1.0},"370":{"tf":1.4142135623730951},"383":{"tf":1.7320508075688772},"403":{"tf":1.0},"41":{"tf":1.0},"453":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":11,"docs":{"191":{"tf":1.7320508075688772},"209":{"tf":1.0},"3":{"tf":1.0},"326":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"366":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":2.0},"42":{"tf":2.449489742783178},"440":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"r":{"df":3,"docs":{"185":{"tf":1.0},"243":{"tf":1.0},"507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":16,"docs":{"184":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"407":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"df":3,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0}}},"x":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}}},"z":{"df":1,"docs":{"370":{"tf":1.0}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"278":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"230":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"215":{"tf":1.0},"249":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"220":{"tf":1.0},"253":{"tf":1.0},"281":{"tf":1.0},"314":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"n":{"a":{"df":2,"docs":{"379":{"tf":1.0},"401":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"121":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"512":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"193":{"tf":1.4142135623730951},"369":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"201":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"349":{"tf":1.0},"384":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"150":{"tf":1.0},"500":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}}},"k":{"+":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"238":{"tf":1.7320508075688772},"241":{"tf":1.0},"243":{"tf":1.0},"501":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":3,"docs":{"129":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"132":{"tf":1.0},"152":{"tf":1.0},"194":{"tf":1.0},"281":{"tf":1.0},"369":{"tf":1.0},"445":{"tf":1.4142135623730951},"499":{"tf":1.0},"51":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"143":{"tf":1.0},"176":{"tf":1.0},"241":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"343":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"343":{"tf":3.605551275463989}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":32,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.7320508075688772},"238":{"tf":2.449489742783178},"241":{"tf":2.0},"243":{"tf":1.4142135623730951},"262":{"tf":1.0},"343":{"tf":5.916079783099616},"367":{"tf":2.8284271247461903},"369":{"tf":4.47213595499958},"371":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":2.0},"472":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":2.6457513110645907},"483":{"tf":1.7320508075688772},"501":{"tf":2.8284271247461903},"505":{"tf":2.0},"507":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"53":{"tf":2.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}},"b":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"243":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"149":{"tf":1.0},"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"132":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"179":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"132":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"206":{"tf":1.0},"241":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"343":{"tf":2.0},"35":{"tf":1.0},"407":{"tf":1.0},"45":{"tf":1.0},"483":{"tf":1.4142135623730951},"50":{"tf":1.0},"64":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"233":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"365":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"m":{"df":5,"docs":{"169":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":3.0},"9":{"tf":3.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"a":{"'":{"df":2,"docs":{"297":{"tf":1.0},"298":{"tf":1.0}}},"df":19,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"174":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"239":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":2.8284271247461903},"3":{"tf":1.0},"307":{"tf":1.0},"367":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"ö":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"467":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"1":{"7":{"6":{"2":{"df":1,"docs":{"485":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"164":{"tf":1.0}}},"2":{"df":1,"docs":{"179":{"tf":1.0}}},"3":{"4":{"0":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"5":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"c":{"1":{"5":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"173":{"tf":1.0},"220":{"tf":1.0},"262":{"tf":1.0},"343":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"146":{"tf":1.4142135623730951},"155":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":17,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"168":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"216":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"297":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"404":{"tf":1.0},"450":{"tf":1.0},"487":{"tf":1.0},"505":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"109":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"298":{"tf":1.0},"343":{"tf":1.4142135623730951},"409":{"tf":1.0},"427":{"tf":1.4142135623730951},"486":{"tf":1.0},"50":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"390":{"tf":1.0},"391":{"tf":1.7320508075688772},"393":{"tf":1.0},"395":{"tf":1.0},"399":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"df":13,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"369":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"455":{"tf":1.0},"503":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}},"n":{"c":{"df":2,"docs":{"193":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":9,"docs":{"134":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.0},"407":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"421":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"293":{"tf":1.0}}},"df":4,"docs":{"106":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"485":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"129":{"tf":1.0},"195":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"123":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"357":{"tf":1.0}},"e":{"a":{"d":{"df":18,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"235":{"tf":1.0},"359":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":1.4142135623730951},"440":{"tf":1.0},"458":{"tf":1.0},"505":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"193":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"190":{"tf":1.7320508075688772},"193":{"tf":2.23606797749979},"199":{"tf":1.0},"403":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":4,"docs":{"102":{"tf":1.0},"106":{"tf":2.0},"108":{"tf":1.0},"109":{"tf":1.0}}},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}},"s":{"df":14,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"262":{"tf":2.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"408":{"tf":2.449489742783178}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"189":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0}}}},"b":{"1":{"2":{"8":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"328":{"tf":1.0}}},"2":{"df":1,"docs":{"328":{"tf":1.0}}},"3":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"415":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"357":{"tf":1.0}}},"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"190":{"tf":1.0},"25":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.7320508075688772},"359":{"tf":1.4142135623730951},"406":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"60":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":2.0},"152":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"294":{"tf":1.0}}},"df":1,"docs":{"471":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":8,"docs":{"128":{"tf":1.0},"190":{"tf":1.0},"239":{"tf":1.7320508075688772},"325":{"tf":1.0},"328":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"357":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"185":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"209":{"tf":1.7320508075688772},"217":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"297":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"357":{"tf":1.0}}},"df":2,"docs":{"357":{"tf":1.0},"383":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"194":{"tf":1.4142135623730951},"198":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"327":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"472":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"130":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"359":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":3,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":1,"docs":{"406":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"235":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"303":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":2.23606797749979},"373":{"tf":1.0},"441":{"tf":1.0},"455":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":1.0}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"217":{"tf":1.0},"254":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":31,"docs":{"129":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":2.8284271247461903},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"225":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"257":{"tf":1.0},"298":{"tf":1.0},"343":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"373":{"tf":1.0},"440":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.0},"505":{"tf":1.0},"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"164":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"df":6,"docs":{"357":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"98":{"tf":1.0}}},"k":{"df":9,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"501":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"149":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"254":{"tf":1.0},"292":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":2.23606797749979},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"47":{"tf":1.0},"497":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":7,"docs":{"131":{"tf":1.0},"224":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"303":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951}}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":5,"docs":{"133":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"482":{"tf":1.0},"485":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":10,"docs":{"120":{"tf":1.0},"223":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"343":{"tf":3.1622776601683795},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":4.47213595499958}}}},"df":0,"docs":{},"k":{"df":12,"docs":{"184":{"tf":1.0},"260":{"tf":1.7320508075688772},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"267":{"tf":3.1622776601683795},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"276":{"tf":1.0},"297":{"tf":2.0},"391":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":3,"docs":{"133":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}},"i":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":24,"docs":{"146":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.0},"257":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"400":{"tf":1.4142135623730951},"429":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"468":{"tf":1.4142135623730951},"471":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":23,"docs":{"108":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"217":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.0},"343":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"497":{"tf":1.0},"505":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"208":{"tf":1.0},"262":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"344":{"tf":1.4142135623730951},"371":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"485":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"423":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"414":{"tf":1.0},"471":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"150":{"tf":1.0}}}}},"p":{"df":1,"docs":{"328":{"tf":1.0}}},"s":{"df":2,"docs":{"237":{"tf":1.0},"456":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"429":{"tf":1.0}}},"t":{"df":1,"docs":{"185":{"tf":1.0}}}},"t":{"df":1,"docs":{"237":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"df":13,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"165":{"tf":1.0},"194":{"tf":1.4142135623730951},"204":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"327":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1":{"tf":1.7320508075688772},"14":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"450":{"tf":1.0},"483":{"tf":1.0},"6":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"184":{"tf":1.0},"290":{"tf":1.0},"343":{"tf":3.4641016151377544},"440":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":14,"docs":{"128":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.0},"341":{"tf":1.0},"427":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"115":{"tf":1.0},"125":{"tf":1.0},"187":{"tf":1.0},"369":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0},"503":{"tf":2.0},"61":{"tf":1.0},"83":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"282":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":25,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.4142135623730951},"2":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"297":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"375":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"235":{"tf":1.7320508075688772},"255":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"387":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"168":{"tf":1.4142135623730951},"180":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0},"408":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":62,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"151":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"310":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":2.23606797749979},"371":{"tf":1.0},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.0},"440":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"466":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"371":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.4142135623730951},"185":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.7320508075688772},"225":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":2.23606797749979},"263":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"251":{"tf":1.0},"253":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.0},"237":{"tf":1.0},"328":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":24,"docs":{"100":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.7320508075688772},"165":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.4142135623730951},"369":{"tf":1.0},"403":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"253":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":2.0},"201":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"391":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"<":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":10,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"133":{"tf":2.6457513110645907},"162":{"tf":1.0},"169":{"tf":2.0},"174":{"tf":1.0},"194":{"tf":1.4142135623730951},"24":{"tf":1.0},"35":{"tf":1.0},"457":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}}}}},"k":{"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"14":{"tf":1.0},"185":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"402":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"402":{"tf":1.0},"406":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}},"df":25,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"401":{"tf":2.23606797749979},"402":{"tf":1.7320508075688772},"403":{"tf":3.1622776601683795},"406":{"tf":3.605551275463989},"407":{"tf":2.6457513110645907},"408":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"190":{"tf":2.0},"191":{"tf":3.872983346207417},"194":{"tf":6.6332495807108}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"164":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.0},"337":{"tf":1.0},"365":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.0},"400":{"tf":1.0},"412":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"512":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"x":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"357":{"tf":1.0},"407":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"290":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":20,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"239":{"tf":1.0},"314":{"tf":1.4142135623730951},"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"403":{"tf":1.0},"406":{"tf":2.0},"407":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}},"y":{"b":{"df":5,"docs":{"151":{"tf":1.0},"155":{"tf":1.0},"243":{"tf":1.0},"270":{"tf":1.0},"507":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":3.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"98":{"tf":1.0}},"m":{"df":2,"docs":{"384":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":25,"docs":{"131":{"tf":1.0},"146":{"tf":1.0},"164":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"455":{"tf":1.4142135623730951},"471":{"tf":1.0},"500":{"tf":1.0}},"t":{"df":3,"docs":{"238":{"tf":1.0},"313":{"tf":1.0},"501":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"347":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":43,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.4142135623730951},"14":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":2.8284271247461903},"243":{"tf":1.0},"260":{"tf":1.7320508075688772},"261":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"310":{"tf":1.0},"351":{"tf":1.4142135623730951},"376":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"401":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"507":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"217":{"tf":1.0},"313":{"tf":1.0},"407":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"243":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"253":{"tf":2.449489742783178},"254":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.4142135623730951},"340":{"tf":1.7320508075688772},"343":{"tf":4.898979485566356},"371":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":2.23606797749979},"485":{"tf":3.3166247903554},"486":{"tf":1.7320508075688772},"494":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"47":{"tf":1.0},"499":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}}},"g":{"df":8,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"250":{"tf":1.0},"398":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"k":{"df":0,"docs":{},"l":{"df":11,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"164":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"110":{"tf":1.0},"143":{"tf":1.0},"178":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":2.449489742783178},"207":{"tf":2.449489742783178},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"239":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":2.6457513110645907},"72":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":2.8284271247461903},"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":2.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"2":{"tf":1.0},"3":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.6457513110645907},"99":{"tf":3.1622776601683795}},"v":{"1":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":2,"docs":{"114":{"tf":1.0},"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":1,"docs":{"310":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"182":{"tf":1.4142135623730951},"23":{"tf":1.0},"343":{"tf":1.4142135623730951},"38":{"tf":1.0},"51":{"tf":3.1622776601683795},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"i":{"b":{"df":4,"docs":{"369":{"tf":1.0},"370":{"tf":2.23606797749979},"483":{"tf":1.0},"485":{"tf":1.0}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"168":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"196":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.7320508075688772},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.0},"296":{"tf":1.7320508075688772},"297":{"tf":2.8284271247461903},"298":{"tf":2.0},"384":{"tf":1.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"391":{"tf":2.23606797749979},"396":{"tf":1.0},"398":{"tf":1.0},"453":{"tf":1.0},"512":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":2.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"499":{"tf":1.0}}},"df":1,"docs":{"414":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"186":{"tf":1.0},"288":{"tf":1.4142135623730951},"395":{"tf":1.0},"399":{"tf":1.0},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"288":{"tf":1.0},"290":{"tf":1.0},"296":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"1":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"416":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}},"u":{"df":1,"docs":{"500":{"tf":1.0}},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"407":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":5,"docs":{"130":{"tf":1.0},"165":{"tf":1.0},"194":{"tf":1.0},"224":{"tf":1.0},"369":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"349":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":1.0},"134":{"tf":1.0},"18":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":2,"docs":{"454":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":2,"docs":{"391":{"tf":1.0},"399":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"11":{"tf":1.0}}},"df":34,"docs":{"1":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.4142135623730951},"200":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":2.0},"352":{"tf":1.0},"355":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":2.0},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"440":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":2.6457513110645907},"451":{"tf":1.4142135623730951},"453":{"tf":1.7320508075688772},"454":{"tf":1.7320508075688772},"457":{"tf":1.0},"462":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1":{"tf":1.0},"257":{"tf":1.0},"412":{"tf":1.7320508075688772},"425":{"tf":1.7320508075688772},"426":{"tf":1.0},"454":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":16,"docs":{"130":{"tf":1.0},"14":{"tf":1.4142135623730951},"223":{"tf":1.0},"235":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"334":{"tf":1.4142135623730951},"343":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":1.0},"486":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"150":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"398":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.0},"240":{"tf":1.0},"455":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"164":{"tf":1.0},"18":{"tf":1.0},"195":{"tf":1.0},"440":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"173":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.0},"296":{"tf":1.0},"408":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"309":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"163":{"tf":1.0},"169":{"tf":1.7320508075688772},"173":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":67,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"185":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"2":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.4142135623730951},"276":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"326":{"tf":1.0},"329":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"359":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"369":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"396":{"tf":1.0},"399":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.0},"408":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.4142135623730951},"450":{"tf":2.0},"47":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"117":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":68,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.4142135623730951},"401":{"tf":1.0},"403":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"481":{"tf":1.0},"483":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":17,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"157":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"340":{"tf":1.0},"400":{"tf":1.4142135623730951},"408":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"343":{"tf":2.449489742783178}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"14":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"293":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":1.0},"409":{"tf":1.0},"45":{"tf":1.0},"503":{"tf":1.0},"511":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":9,"docs":{"146":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"190":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.4142135623730951},"386":{"tf":1.0},"429":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"326":{"tf":1.0}}}},"i":{"df":3,"docs":{"190":{"tf":1.0},"193":{"tf":1.0},"406":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"297":{"tf":1.0}}}},"df":1,"docs":{"44":{"tf":1.0}}}}},"n":{"+":{"1":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"/":{"3":{"df":3,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0}}},"8":{"df":1,"docs":{"33":{"tf":1.0}}},"a":{"df":8,"docs":{"317":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"393":{"tf":1.4142135623730951},"422":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0}}},"df":0,"docs":{}},"=":{"3":{"df":0,"docs":{},"f":{"+":{"df":0,"docs":{},"k":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"3":{"df":2,"docs":{"128":{"tf":1.0},"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"125":{"tf":1.0},"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"125":{"tf":1.0},"143":{"tf":1.0},"340":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"149":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":1.0},"295":{"tf":1.0},"343":{"tf":2.23606797749979},"344":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.4142135623730951},"399":{"tf":1.7320508075688772},"502":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"13":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"483":{"tf":2.23606797749979},"512":{"tf":1.0},"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"165":{"tf":1.0},"172":{"tf":1.0},"383":{"tf":1.4142135623730951},"406":{"tf":1.0},"98":{"tf":1.0}}}}},"y":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"129":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":2.23606797749979},"357":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"165":{"tf":1.0},"189":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"137":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"216":{"tf":1.0},"26":{"tf":1.0},"289":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"407":{"tf":1.0},"454":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.4142135623730951},"94":{"tf":1.0},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"190":{"tf":1.0},"326":{"tf":1.0}}}}}}},"df":3,"docs":{"280":{"tf":1.0},"359":{"tf":1.0},"367":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"406":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":69,"docs":{"11":{"tf":1.4142135623730951},"125":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"217":{"tf":1.7320508075688772},"226":{"tf":1.0},"235":{"tf":2.0},"240":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"290":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"296":{"tf":2.0},"297":{"tf":2.23606797749979},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.7320508075688772},"344":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.4142135623730951},"359":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"411":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"446":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"440":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"178":{"tf":1.0},"243":{"tf":1.0},"347":{"tf":1.0},"489":{"tf":1.0},"507":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"426":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951}}}},"t":{"df":4,"docs":{"197":{"tf":1.0},"383":{"tf":1.0},"430":{"tf":1.0},"489":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"255":{"tf":1.0},"293":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":59,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"2":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":2.0},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":2.0},"254":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.4142135623730951},"326":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":2.0},"369":{"tf":2.23606797749979},"371":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":2.6457513110645907},"429":{"tf":1.7320508075688772},"437":{"tf":1.0},"459":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":2.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"149":{"tf":1.0},"190":{"tf":1.0},"268":{"tf":1.4142135623730951},"274":{"tf":1.0},"343":{"tf":2.0},"54":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"193":{"tf":1.7320508075688772},"358":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":79,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":2.23606797749979},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":2.23606797749979},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":2.23606797749979},"251":{"tf":1.7320508075688772},"255":{"tf":1.0},"257":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":3.4641016151377544},"344":{"tf":1.4142135623730951},"346":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"454":{"tf":2.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"469":{"tf":1.0},"473":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"511":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"512":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"235":{"tf":1.0},"343":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"132":{"tf":1.0},"156":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"30":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":2.8284271247461903},"406":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"163":{"tf":1.4142135623730951},"194":{"tf":1.0},"2":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"5":{"tf":2.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"369":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"292":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":50,"docs":{"102":{"tf":3.1622776601683795},"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"109":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":2.8284271247461903},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"243":{"tf":2.23606797749979},"297":{"tf":1.4142135623730951},"343":{"tf":1.0},"367":{"tf":2.6457513110645907},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"397":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"447":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":1.7320508075688772},"496":{"tf":1.0},"497":{"tf":3.4641016151377544},"500":{"tf":2.449489742783178},"501":{"tf":2.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772},"507":{"tf":2.23606797749979},"512":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"176":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0}}}}},"n":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"146":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"217":{"tf":1.0},"235":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"343":{"tf":2.23606797749979},"406":{"tf":1.0}},"e":{"df":30,"docs":{"150":{"tf":1.4142135623730951},"158":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"231":{"tf":1.0},"246":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"286":{"tf":1.0},"323":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"343":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"504":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"240":{"tf":1.0}}}}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"145":{"tf":1.0},"150":{"tf":1.0},"207":{"tf":1.0},"399":{"tf":1.0}}}},"df":1,"docs":{"11":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"297":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":40,"docs":{"114":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.7320508075688772},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"371":{"tf":1.0},"383":{"tf":1.0},"392":{"tf":1.0},"406":{"tf":1.4142135623730951},"41":{"tf":1.0},"414":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.0},"457":{"tf":1.0},"466":{"tf":1.0},"51":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}}}}}}}},"i":{"c":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"194":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":7,"docs":{"194":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"328":{"tf":2.8284271247461903},"329":{"tf":1.4142135623730951},"334":{"tf":1.0}},"i":{"df":2,"docs":{"204":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"v":{"a":{"df":2,"docs":{"421":{"tf":1.0},"434":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"b":{"df":5,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"308":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"146":{"tf":1.0},"164":{"tf":1.4142135623730951},"328":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"375":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0},"485":{"tf":1.0},"98":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"296":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"193":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":50,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.7320508075688772},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"204":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.3166247903554},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"359":{"tf":1.4142135623730951},"366":{"tf":1.0},"369":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"440":{"tf":1.0},"454":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":2.6457513110645907},"483":{"tf":1.0},"50":{"tf":1.4142135623730951},"505":{"tf":1.0},"51":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}},"}":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"d":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"161":{"tf":1.0},"2":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"406":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"487":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"143":{"tf":1.0},"369":{"tf":1.0},"407":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"240":{"tf":1.0},"343":{"tf":1.4142135623730951},"347":{"tf":1.0},"367":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":4,"docs":{"151":{"tf":1.4142135623730951},"154":{"tf":1.0},"220":{"tf":1.0},"340":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}},"i":{"df":2,"docs":{"134":{"tf":1.0},"143":{"tf":2.23606797749979}}}},"r":{"df":7,"docs":{"190":{"tf":1.0},"290":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.4142135623730951},"434":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"33":{"tf":3.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.449489742783178},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"33":{"tf":1.7320508075688772},"42":{"tf":1.0}}}},"o":{"b":{"df":4,"docs":{"425":{"tf":1.0},"438":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":4,"docs":{"309":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"146":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"409":{"tf":1.0},"423":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"294":{"tf":1.0},"297":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":20,"docs":{"13":{"tf":1.0},"154":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"29":{"tf":1.0},"290":{"tf":1.7320508075688772},"3":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"48":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":2.8284271247461903}}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"193":{"tf":2.449489742783178},"357":{"tf":1.4142135623730951},"358":{"tf":1.7320508075688772},"360":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"146":{"tf":1.0},"191":{"tf":1.7320508075688772},"207":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"133":{"tf":1.4142135623730951},"348":{"tf":1.0},"375":{"tf":1.0},"500":{"tf":1.0},"512":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"384":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"262":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":20,"docs":{"125":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"152":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"194":{"tf":1.0},"251":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"347":{"tf":1.0},"367":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":68,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.7320508075688772},"243":{"tf":1.0},"257":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"280":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"310":{"tf":1.0},"312":{"tf":1.0},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":1.0},"334":{"tf":1.0},"343":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.4142135623730951},"455":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"186":{"tf":1.0},"194":{"tf":1.0},"235":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"389":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"369":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"185":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"440":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"164":{"tf":1.7320508075688772},"174":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.4142135623730951},"208":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"325":{"tf":1.0},"437":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"16":{"tf":1.0},"293":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0}}}}}},"r":{"df":21,"docs":{"14":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.0},"191":{"tf":2.449489742783178},"193":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"35":{"tf":1.0},"383":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"247":{"tf":1.0},"369":{"tf":1.0},"511":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"307":{"tf":1.0},"406":{"tf":1.0},"453":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":15,"docs":{"118":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.0},"421":{"tf":1.0},"476":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"142":{"tf":1.0}},"t":{"df":2,"docs":{"164":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"194":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"110":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.0},"173":{"tf":1.0},"239":{"tf":1.0},"369":{"tf":2.449489742783178},"381":{"tf":1.0},"383":{"tf":1.4142135623730951},"393":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.4142135623730951},"455":{"tf":1.0},"47":{"tf":1.4142135623730951},"485":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":45,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.7320508075688772},"143":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"268":{"tf":1.0},"279":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.8284271247461903},"35":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"400":{"tf":1.0},"403":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.4142135623730951},"456":{"tf":1.0},"471":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"252":{"tf":1.0},"253":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"162":{"tf":1.0},"191":{"tf":3.1622776601683795},"220":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"297":{"tf":1.0},"326":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"454":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"239":{"tf":1.0},"257":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"102":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"190":{"tf":1.0},"262":{"tf":1.0},"360":{"tf":1.0},"391":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"499":{"tf":1.0},"52":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"383":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"22":{"tf":1.0},"483":{"tf":1.0}}}}},"df":16,"docs":{"114":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"281":{"tf":1.0},"343":{"tf":8.12403840463596},"348":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"31":{"tf":1.0},"383":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"51":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"122":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"343":{"tf":3.4641016151377544},"397":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"184":{"tf":1.0},"383":{"tf":1.4142135623730951},"430":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"80":{"tf":1.0}}}},"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"407":{"tf":1.0}}},"df":0,"docs":{}}},"df":23,"docs":{"12":{"tf":1.0},"129":{"tf":1.0},"154":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"200":{"tf":1.0},"223":{"tf":1.0},"295":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.4142135623730951},"386":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"485":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"440":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":10,"docs":{"114":{"tf":1.4142135623730951},"130":{"tf":1.0},"243":{"tf":1.0},"262":{"tf":1.0},"395":{"tf":1.0},"407":{"tf":1.0},"507":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"131":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"297":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"466":{"tf":1.0}}},"o":{"a":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"181":{"tf":1.0},"189":{"tf":1.0},"349":{"tf":1.0},"355":{"tf":1.0},"41":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"189":{"tf":2.0},"190":{"tf":1.7320508075688772},"191":{"tf":2.8284271247461903},"194":{"tf":4.69041575982343},"39":{"tf":1.0},"403":{"tf":1.0},"43":{"tf":1.0},"468":{"tf":1.4142135623730951},"471":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":14,"docs":{"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"467":{"tf":1.7320508075688772},"468":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":2.23606797749979},"53":{"tf":1.0}}}}}}}}}},"y":{"df":1,"docs":{"95":{"tf":1.0}}}},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}}},"0":{"df":1,"docs":{"194":{"tf":1.0}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"357":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":1.0}}}},"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":4,"docs":{"481":{"tf":1.7320508075688772},"483":{"tf":2.0},"486":{"tf":1.0},"61":{"tf":1.0}}}},"i":{"d":{"df":13,"docs":{"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"253":{"tf":1.0},"383":{"tf":1.7320508075688772},"448":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.7320508075688772},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"429":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"220":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":35,"docs":{"102":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":2.0},"247":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.7320508075688772},"266":{"tf":1.0},"281":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":2.449489742783178},"3":{"tf":1.0},"304":{"tf":1.0},"313":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"426":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.0},"454":{"tf":1.7320508075688772},"456":{"tf":2.6457513110645907},"457":{"tf":1.0},"511":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"266":{"tf":1.0}}},"(":{"1":{"0":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":82,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":2.6457513110645907},"195":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":2.23606797749979},"237":{"tf":2.0},"238":{"tf":1.7320508075688772},"239":{"tf":2.449489742783178},"240":{"tf":2.23606797749979},"241":{"tf":2.6457513110645907},"243":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"261":{"tf":2.6457513110645907},"262":{"tf":4.58257569495584},"263":{"tf":2.6457513110645907},"264":{"tf":1.4142135623730951},"266":{"tf":4.123105625617661},"267":{"tf":3.3166247903554},"268":{"tf":2.449489742783178},"269":{"tf":3.7416573867739413},"272":{"tf":1.0},"274":{"tf":2.0},"276":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":3.872983346207417},"298":{"tf":2.23606797749979},"303":{"tf":1.4142135623730951},"353":{"tf":1.0},"387":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":2.6457513110645907},"452":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":2.8284271247461903},"455":{"tf":2.8284271247461903},"456":{"tf":1.0},"457":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"485":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"415":{"tf":1.0}}}}},"df":12,"docs":{"133":{"tf":1.0},"194":{"tf":1.4142135623730951},"229":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"30":{"tf":1.0},"448":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":2.0},"457":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"d":{"df":10,"docs":{"164":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"204":{"tf":1.0},"207":{"tf":1.0},"254":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.23606797749979},"457":{"tf":1.4142135623730951},"458":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"129":{"tf":1.0},"177":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"m":{"df":2,"docs":{"149":{"tf":2.449489742783178},"343":{"tf":11.269427669584644}},"e":{"df":0,"docs":{},"t":{"df":21,"docs":{"102":{"tf":1.0},"190":{"tf":1.7320508075688772},"193":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"343":{"tf":3.1622776601683795},"349":{"tf":1.0},"356":{"tf":1.0},"360":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.7320508075688772},"416":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":2.0},"471":{"tf":1.0},"48":{"tf":1.7320508075688772},"85":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":2,"docs":{"131":{"tf":1.0},"182":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"309":{"tf":1.0},"310":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"72":{"tf":2.23606797749979}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"187":{"tf":1.4142135623730951},"404":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":2,"docs":{"129":{"tf":1.0},"143":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"370":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}},"t":{"df":24,"docs":{"102":{"tf":1.7320508075688772},"109":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"156":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.0},"33":{"tf":1.0},"400":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"220":{"tf":1.0},"269":{"tf":2.0},"3":{"tf":1.0},"383":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"429":{"tf":2.0},"437":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.7320508075688772},"503":{"tf":2.0},"512":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"125":{"tf":1.0},"14":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"217":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"429":{"tf":1.7320508075688772},"486":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"486":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"132":{"tf":1.0},"303":{"tf":1.0},"450":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"154":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"t":{"df":4,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"5":{"7":{"6":{"0":{"0":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"111":{"tf":1.0},"143":{"tf":1.0},"191":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"314":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0}}}}},"t":{"df":2,"docs":{"207":{"tf":1.0},"369":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"123":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"251":{"tf":1.0},"380":{"tf":1.0},"485":{"tf":2.23606797749979},"486":{"tf":1.7320508075688772},"489":{"tf":1.7320508075688772},"491":{"tf":1.0},"494":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"383":{"tf":1.0},"421":{"tf":1.0},"445":{"tf":1.0},"476":{"tf":1.0},"72":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"172":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":1,"docs":{"454":{"tf":1.0}}}}}}},"df":7,"docs":{"194":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":2.23606797749979},"451":{"tf":1.0}},"e":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"110":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"194":{"tf":1.0},"316":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"454":{"tf":2.0},"462":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"194":{"tf":1.0},"298":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"129":{"tf":1.0},"234":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0},"325":{"tf":1.0},"367":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"512":{"tf":2.0}},"i":{"d":{"df":5,"docs":{"235":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.0},"343":{"tf":1.4142135623730951},"505":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"13":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"395":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":7,"docs":{"219":{"tf":1.0},"236":{"tf":1.0},"295":{"tf":1.4142135623730951},"307":{"tf":1.0},"314":{"tf":1.0},"369":{"tf":1.0},"498":{"tf":1.0}}}}},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{},"s":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"2":{"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":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"185":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"199":{"tf":1.0},"454":{"tf":1.0}}}},"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":25,"docs":{"125":{"tf":1.0},"131":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"369":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"466":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":96,"docs":{"1":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.7320508075688772},"181":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0},"347":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.7320508075688772},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":2.0},"495":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"298":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":35,"docs":{"18":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"190":{"tf":4.242640687119285},"191":{"tf":2.6457513110645907},"192":{"tf":1.0},"193":{"tf":2.0},"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"241":{"tf":1.0},"294":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":2.23606797749979},"352":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"383":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":3.4641016151377544},"412":{"tf":1.7320508075688772},"413":{"tf":1.0},"414":{"tf":2.449489742783178},"416":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":2.0},"420":{"tf":1.0},"423":{"tf":2.23606797749979},"449":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"491":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"185":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"185":{"tf":1.0},"223":{"tf":1.0},"262":{"tf":1.0},"293":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}},"t":{"df":2,"docs":{"453":{"tf":1.0},"455":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"124":{"tf":1.0},"131":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"216":{"tf":1.0},"403":{"tf":1.0},"409":{"tf":1.0},"72":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"215":{"tf":1.0},"249":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"143":{"tf":1.0},"195":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"200":{"tf":1.0},"497":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"355":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"233":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"365":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"408":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":15,"docs":{"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"198":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"269":{"tf":1.0},"280":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"406":{"tf":1.4142135623730951},"456":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":5,"docs":{"162":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"293":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":3,"docs":{"355":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"14":{"tf":1.0},"164":{"tf":2.0},"168":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":2.0},"5":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"399":{"tf":1.4142135623730951},"48":{"tf":1.0},"499":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"191":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"295":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"14":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"344":{"tf":1.0},"391":{"tf":1.4142135623730951},"401":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.0},"429":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"340":{"tf":1.7320508075688772},"343":{"tf":3.4641016151377544}}}}}}},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"'":{"df":9,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"173":{"tf":1.0},"217":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"383":{"tf":1.0}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":111,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":2.0},"143":{"tf":1.4142135623730951},"154":{"tf":1.0},"160":{"tf":2.449489742783178},"161":{"tf":1.7320508075688772},"162":{"tf":2.6457513110645907},"163":{"tf":2.6457513110645907},"164":{"tf":3.0},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"168":{"tf":2.449489742783178},"169":{"tf":2.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":2.0},"184":{"tf":2.0},"185":{"tf":2.6457513110645907},"186":{"tf":2.449489742783178},"187":{"tf":2.0},"189":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"251":{"tf":2.23606797749979},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"27":{"tf":1.7320508075688772},"281":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":2.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"364":{"tf":1.0},"367":{"tf":1.4142135623730951},"380":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"387":{"tf":1.4142135623730951},"398":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"452":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.4142135623730951},"483":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.7320508075688772},"501":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"421":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"162":{"tf":1.0},"172":{"tf":1.0}}},"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":2,"docs":{"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"178":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"189":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"191":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":2.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"292":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}}}}},"r":{"df":1,"docs":{"151":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"427":{"tf":1.0}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"370":{"tf":1.0},"455":{"tf":1.0},"99":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"125":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"407":{"tf":1.0},"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"217":{"tf":1.0},"343":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"489":{"tf":1.0},"69":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"132":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"50":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":45,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"269":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"294":{"tf":1.0},"297":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"352":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":3.1622776601683795},"369":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"402":{"tf":1.0},"407":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"497":{"tf":1.7320508075688772},"512":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"399":{"tf":1.0}}}}}}}},"df":6,"docs":{"258":{"tf":1.0},"364":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":25,"docs":{"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"18":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":1.0},"360":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"437":{"tf":1.0},"458":{"tf":1.0},"67":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"129":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"189":{"tf":1.0},"225":{"tf":1.4142135623730951},"298":{"tf":1.0},"447":{"tf":1.4142135623730951}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"164":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":2.23606797749979}}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"343":{"tf":1.0}}}},"r":{"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.0},"343":{"tf":1.0},"44":{"tf":1.0},"511":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"297":{"tf":1.0},"310":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"140":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"61":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":2.0}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"189":{"tf":1.0},"343":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}},"s":{"df":1,"docs":{"237":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"150":{"tf":1.4142135623730951}},"t":{"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"241":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.7320508075688772},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}}}}},"df":7,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"451":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.7320508075688772},"486":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"159":{"tf":1.0},"296":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"399":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0}},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"169":{"tf":1.0},"239":{"tf":1.0},"343":{"tf":2.0},"367":{"tf":2.0},"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"130":{"tf":1.0},"137":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"403":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"217":{"tf":1.0},"406":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"348":{"tf":1.0},"384":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"101":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"213":{"tf":1.0},"3":{"tf":1.0},"323":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"407":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"483":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"128":{"tf":1.0},"402":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"326":{"tf":1.0},"328":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"340":{"tf":1.0},"94":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.4142135623730951},"2":{"tf":1.0},"241":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"429":{"tf":1.0},"451":{"tf":1.0},"48":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":13,"docs":{"14":{"tf":1.7320508075688772},"190":{"tf":2.449489742783178},"191":{"tf":1.0},"193":{"tf":2.0},"343":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"5":{"tf":1.0}},"s":{"df":5,"docs":{"191":{"tf":1.0},"269":{"tf":1.0},"343":{"tf":1.0},"401":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}}}}}}}}},"df":35,"docs":{"1":{"tf":1.0},"12":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"168":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":3.605551275463989},"191":{"tf":3.605551275463989},"192":{"tf":1.4142135623730951},"193":{"tf":4.795831523312719},"199":{"tf":2.449489742783178},"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"349":{"tf":2.0},"350":{"tf":2.6457513110645907},"351":{"tf":2.23606797749979},"352":{"tf":2.6457513110645907},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"359":{"tf":3.1622776601683795},"360":{"tf":3.605551275463989},"362":{"tf":1.4142135623730951},"364":{"tf":1.0},"383":{"tf":1.7320508075688772},"4":{"tf":1.0},"402":{"tf":2.23606797749979},"403":{"tf":3.7416573867739413},"406":{"tf":4.123105625617661},"407":{"tf":3.7416573867739413},"409":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":20,"docs":{"18":{"tf":1.0},"187":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"290":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"353":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"217":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"297":{"tf":1.0},"41":{"tf":1.7320508075688772},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":66,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"181":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"467":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"492":{"tf":1.0},"495":{"tf":1.0},"510":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"297":{"tf":1.0},"409":{"tf":1.0}},"i":{"df":4,"docs":{"189":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":53,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"197":{"tf":1.4142135623730951},"201":{"tf":1.0},"211":{"tf":1.4142135623730951},"215":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.4142135623730951},"277":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.0},"393":{"tf":1.4142135623730951},"412":{"tf":1.0},"418":{"tf":1.0},"425":{"tf":1.0},"431":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.4142135623730951},"467":{"tf":1.0},"473":{"tf":1.0},"481":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"192":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"220":{"tf":1.0},"266":{"tf":1.0},"414":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"348":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":20,"docs":{"134":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.4142135623730951},"343":{"tf":1.0},"365":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.4142135623730951},"512":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"128":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"184":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"101":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":1.0},"249":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"343":{"tf":1.4142135623730951},"37":{"tf":1.0},"391":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":12,"docs":{"261":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":7,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"294":{"tf":1.0},"39":{"tf":1.0},"408":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"383":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"146":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"251":{"tf":1.0},"296":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.0},"429":{"tf":1.0}},"m":{"df":2,"docs":{"161":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"310":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"120":{"tf":1.4142135623730951},"186":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"383":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"151":{"tf":1.0},"9":{"tf":1.0}}},"s":{"df":3,"docs":{"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"269":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"253":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.0},"403":{"tf":1.0},"408":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":28,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"132":{"tf":2.6457513110645907},"164":{"tf":2.0},"166":{"tf":2.0},"168":{"tf":1.0},"36":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":2.23606797749979},"37":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":2.0},"442":{"tf":2.23606797749979},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"467":{"tf":1.7320508075688772},"468":{"tf":2.0},"471":{"tf":3.0},"473":{"tf":1.0},"500":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951},"83":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"119":{"tf":1.0},"191":{"tf":1.0},"326":{"tf":1.0},"459":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"189":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"381":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"131":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"349":{"tf":1.0},"359":{"tf":1.0},"440":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.7320508075688772}}}},"s":{"a":{"df":0,"docs":{},"l":{"(":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":115,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"10":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":2.8284271247461903},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"202":{"tf":1.4142135623730951},"207":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":2.0},"22":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"325":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":2.449489742783178},"406":{"tf":1.4142135623730951},"409":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"429":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.0},"476":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"496":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":2.449489742783178},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"429":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"371":{"tf":1.4142135623730951},"407":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"2":{"df":1,"docs":{"239":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"239":{"tf":1.0},"369":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":2,"docs":{"26":{"tf":1.0},"415":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}}},"df":69,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"123":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":2.0},"134":{"tf":1.0},"143":{"tf":1.7320508075688772},"187":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":2.449489742783178},"24":{"tf":1.7320508075688772},"240":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.7320508075688772},"29":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"353":{"tf":1.0},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"369":{"tf":2.449489742783178},"37":{"tf":1.0},"371":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"378":{"tf":1.4142135623730951},"404":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"195":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"367":{"tf":1.4142135623730951},"99":{"tf":1.0}},"n":{"df":4,"docs":{"137":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0}}}},"i":{"d":{"df":71,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":2.0},"243":{"tf":1.7320508075688772},"253":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"343":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"369":{"tf":2.0},"386":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"495":{"tf":1.4142135623730951},"500":{"tf":3.605551275463989},"501":{"tf":2.8284271247461903},"502":{"tf":1.4142135623730951},"503":{"tf":2.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"512":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"406":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"190":{"tf":2.0},"191":{"tf":1.4142135623730951}}}}}}}}},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":8,"docs":{"448":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":2.449489742783178},"457":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"33":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":10,"docs":{"131":{"tf":1.0},"132":{"tf":3.3166247903554},"294":{"tf":1.0},"304":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":8,"docs":{"184":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"343":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"243":{"tf":1.0},"253":{"tf":1.0},"281":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"235":{"tf":1.0},"447":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"189":{"tf":2.0},"190":{"tf":3.605551275463989},"191":{"tf":3.3166247903554},"192":{"tf":2.8284271247461903},"193":{"tf":2.23606797749979},"196":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"455":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":8,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"173":{"tf":1.0},"234":{"tf":1.0},"297":{"tf":1.0},"369":{"tf":1.0},"512":{"tf":1.0},"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"173":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"185":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"391":{"tf":1.0},"410":{"tf":1.0}}}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"457":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"190":{"tf":1.0},"406":{"tf":1.7320508075688772}}}},"z":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"143":{"tf":1.0},"243":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":2.0},"369":{"tf":2.23606797749979},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"507":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"367":{"tf":2.0},"369":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":57,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"21":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.0},"347":{"tf":1.0},"365":{"tf":1.0},"377":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"425":{"tf":1.0},"436":{"tf":1.0},"448":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"511":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"193":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"106":{"tf":2.0},"193":{"tf":1.4142135623730951}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"131":{"tf":1.0},"360":{"tf":1.4142135623730951},"400":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"359":{"tf":1.0},"360":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"473":{"tf":1.0}}}},"o":{"df":2,"docs":{"260":{"tf":1.0},"266":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"226":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"466":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"383":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"129":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":2.23606797749979},"243":{"tf":1.0},"47":{"tf":3.1622776601683795},"48":{"tf":1.7320508075688772},"501":{"tf":2.6457513110645907},"507":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.6457513110645907}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"129":{"tf":1.0},"241":{"tf":1.0},"497":{"tf":1.4142135623730951},"505":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"54":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":2.0},"54":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"54":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"208":{"tf":1.4142135623730951},"343":{"tf":3.7416573867739413},"355":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"308":{"tf":1.0},"313":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"409":{"tf":1.0},"497":{"tf":1.0}}}},"t":{"a":{"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"185":{"tf":1.0},"352":{"tf":1.4142135623730951},"407":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"o":{"df":5,"docs":{"189":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"315":{"tf":1.0},"47":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"150":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"235":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"df":2,"docs":{"343":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"343":{"tf":1.4142135623730951},"352":{"tf":1.0},"406":{"tf":1.0},"486":{"tf":1.0}}},"t":{"df":3,"docs":{"360":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0}}}},"d":{"df":9,"docs":{"164":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"365":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"503":{"tf":1.0},"512":{"tf":1.0}},"i":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"185":{"tf":1.4142135623730951},"362":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"201":{"tf":1.0},"209":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"298":{"tf":1.0},"370":{"tf":1.0},"505":{"tf":1.0}}}},"z":{"df":2,"docs":{"236":{"tf":1.0},"357":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"131":{"tf":1.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":12,"docs":{"132":{"tf":2.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"326":{"tf":1.0},"334":{"tf":1.0},"370":{"tf":1.0},"403":{"tf":1.0},"507":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"164":{"tf":1.4142135623730951},"193":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"439":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"303":{"tf":1.0},"313":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"297":{"tf":1.0},"98":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"22":{"tf":1.0},"253":{"tf":1.0},"397":{"tf":1.0},"48":{"tf":1.0}}},"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":6,"docs":{"109":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":14,"docs":{"104":{"tf":1.0},"143":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":2.23606797749979},"194":{"tf":1.7320508075688772},"243":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"50":{"tf":1.0},"507":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"124":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"123":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"276":{"tf":1.0},"58":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"u":{"c":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"224":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.4142135623730951},"429":{"tf":1.0},"458":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"444":{"tf":1.0},"458":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"243":{"tf":1.0},"451":{"tf":1.0},"48":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}},"df":13,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"194":{"tf":1.0},"369":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":2.0},"486":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":68,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.4142135623730951},"356":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"43":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"464":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":2.0},"481":{"tf":1.0},"492":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.0},"510":{"tf":1.0},"61":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":3,"docs":{"253":{"tf":1.0},"292":{"tf":1.0},"427":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"133":{"tf":1.0},"253":{"tf":1.7320508075688772},"255":{"tf":1.0},"281":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"401":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"192":{"tf":1.0},"407":{"tf":1.0},"421":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"407":{"tf":1.0}}}},"m":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"407":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"146":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"133":{"tf":1.0},"207":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"191":{"tf":3.0}}},"df":9,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":5.196152422706632},"191":{"tf":6.082762530298219},"193":{"tf":1.0},"194":{"tf":4.0},"351":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"355":{"tf":1.0},"356":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"191":{"tf":2.449489742783178},"194":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"165":{"tf":1.0},"172":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"294":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":3.0},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":2.6457513110645907},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0}}}},"df":15,"docs":{"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":2.0},"458":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":1.0}},"i":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"107":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.6457513110645907},"191":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"454":{"tf":1.7320508075688772},"457":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"297":{"tf":1.0},"298":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"253":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":62,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"337":{"tf":1.0},"365":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"455":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.4142135623730951},"63":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"x":{"df":1,"docs":{"486":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"262":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":47,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":3.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"193":{"tf":2.0},"194":{"tf":2.449489742783178},"198":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.0},"233":{"tf":1.7320508075688772},"235":{"tf":1.7320508075688772},"240":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"290":{"tf":2.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"499":{"tf":1.0},"500":{"tf":1.7320508075688772}}}},"df":16,"docs":{"131":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"191":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"47":{"tf":1.0},"497":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.4142135623730951},"72":{"tf":3.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"115":{"tf":1.0},"133":{"tf":1.0},"165":{"tf":1.0},"195":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"96":{"tf":1.0}}}},"df":1,"docs":{"403":{"tf":1.0}},"v":{"df":8,"docs":{"120":{"tf":1.0},"194":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"216":{"tf":1.0},"512":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"13":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"262":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.0},"383":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"98":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":17,"docs":{"106":{"tf":1.4142135623730951},"163":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"306":{"tf":1.0},"343":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"457":{"tf":1.0},"50":{"tf":1.4142135623730951},"63":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"297":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"369":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.7320508075688772}},"v":{"2":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"369":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":35,"docs":{"100":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":2.0},"194":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":2.23606797749979},"261":{"tf":1.0},"276":{"tf":1.0},"297":{"tf":1.4142135623730951},"302":{"tf":1.0},"338":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"348":{"tf":1.7320508075688772},"375":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"429":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"481":{"tf":1.7320508075688772},"483":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"399":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"297":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"402":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"189":{"tf":2.8284271247461903},"190":{"tf":2.8284271247461903},"191":{"tf":4.123105625617661},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"262":{"tf":1.4142135623730951},"274":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":2.23606797749979},"406":{"tf":2.8284271247461903},"407":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}}}}}}}}},"df":1,"docs":{"454":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":8,"docs":{"448":{"tf":2.0},"449":{"tf":1.0},"451":{"tf":1.7320508075688772},"453":{"tf":2.0},"454":{"tf":2.449489742783178},"455":{"tf":1.7320508075688772},"456":{"tf":1.7320508075688772},"457":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"239":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":12,"docs":{"220":{"tf":1.0},"241":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"347":{"tf":1.0},"369":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":3,"docs":{"367":{"tf":1.7320508075688772},"369":{"tf":1.4142135623730951},"371":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"369":{"tf":2.0},"371":{"tf":1.4142135623730951}}}}}},"o":{"df":6,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"285":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"279":{"tf":1.0},"8":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":18,"docs":{"111":{"tf":1.7320508075688772},"184":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"207":{"tf":1.4142135623730951},"241":{"tf":1.0},"251":{"tf":1.0},"307":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"369":{"tf":1.0},"404":{"tf":1.0},"442":{"tf":1.4142135623730951},"483":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"q":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"1":{"df":1,"docs":{"133":{"tf":1.0}}},"2":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"343":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":25,"docs":{"0":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":3.7416573867739413},"143":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"343":{"tf":2.8284271247461903},"365":{"tf":1.7320508075688772},"369":{"tf":3.4641016151377544},"371":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"378":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"398":{"tf":1.0},"447":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":84,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"14":{"tf":2.0},"150":{"tf":1.0},"164":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.7320508075688772},"260":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"281":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":1.0},"386":{"tf":1.4142135623730951},"39":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.0},"4":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.7320508075688772},"454":{"tf":2.23606797749979},"457":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"296":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":2,"docs":{"262":{"tf":1.4142135623730951},"263":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"187":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"353":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"459":{"tf":1.0},"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"111":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"406":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":2.0},"455":{"tf":1.0},"458":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"403":{"tf":1.0},"406":{"tf":3.1622776601683795},"407":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"184":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":23,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"190":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.0},"288":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"299":{"tf":1.0},"302":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"143":{"tf":1.0},"169":{"tf":1.0},"292":{"tf":1.0},"3":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"389":{"tf":1.0},"414":{"tf":1.0},"433":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"132":{"tf":1.4142135623730951},"239":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":17,"docs":{"11":{"tf":1.7320508075688772},"132":{"tf":2.0},"14":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"202":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":1.0},"29":{"tf":1.0},"343":{"tf":1.4142135623730951},"369":{"tf":2.23606797749979},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"407":{"tf":1.0},"450":{"tf":1.0},"505":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":4,"docs":{"110":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"402":{"tf":1.0},"406":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":29,"docs":{"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.0},"343":{"tf":3.0},"344":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"165":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"193":{"tf":1.0},"310":{"tf":1.0},"455":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"439":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":20,"docs":{"132":{"tf":1.0},"150":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"207":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":2.8284271247461903},"340":{"tf":1.0},"343":{"tf":7.280109889280518},"385":{"tf":1.0},"389":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"42":{"tf":1.0},"442":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"189":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"407":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":20,"docs":{"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.23606797749979},"379":{"tf":1.7320508075688772},"380":{"tf":2.0},"381":{"tf":1.0},"383":{"tf":2.6457513110645907},"407":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"403":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"197":{"tf":1.4142135623730951},"280":{"tf":1.0},"392":{"tf":1.0},"427":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"253":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"229":{"tf":1.0},"401":{"tf":1.4142135623730951},"485":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"122":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"204":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"269":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"453":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"c":{"#":{"0":{"0":{"0":{"1":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":158,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"134":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"205":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"22":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"247":{"tf":1.0},"249":{"tf":1.4142135623730951},"25":{"tf":1.0},"250":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"288":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"297":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":2.23606797749979},"353":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"373":{"tf":1.0},"376":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"413":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"429":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"445":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"483":{"tf":1.0},"485":{"tf":1.7320508075688772},"486":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"505":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":15,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"328":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"392":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"61":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":4,"docs":{"146":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"172":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"355":{"tf":1.0}}},"k":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"184":{"tf":1.0},"269":{"tf":1.7320508075688772},"282":{"tf":1.0},"296":{"tf":1.0},"360":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"296":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"298":{"tf":1.0},"403":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"270":{"tf":1.0},"459":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"252":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"84":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"195":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"p":{"df":11,"docs":{"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":4.795831523312719},"166":{"tf":3.1622776601683795},"168":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"162":{"tf":1.0}}},"t":{"df":26,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"266":{"tf":1.7320508075688772},"297":{"tf":1.0},"369":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"243":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"128":{"tf":1.0},"131":{"tf":1.0},"190":{"tf":1.0},"35":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"296":{"tf":1.0},"366":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"296":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"p":{"c":{"df":4,"docs":{"102":{"tf":1.0},"235":{"tf":1.7320508075688772},"421":{"tf":1.0},"512":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"457":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}},"n":{"df":18,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":79,"docs":{"102":{"tf":1.4142135623730951},"115":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":2.0},"146":{"tf":2.449489742783178},"149":{"tf":1.7320508075688772},"151":{"tf":2.0},"152":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"277":{"tf":2.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"285":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"340":{"tf":2.8284271247461903},"343":{"tf":4.47213595499958},"344":{"tf":1.7320508075688772},"347":{"tf":1.0},"359":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"396":{"tf":1.0},"400":{"tf":2.0},"429":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"445":{"tf":1.0},"457":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":3.0},"484":{"tf":1.0},"485":{"tf":2.6457513110645907},"486":{"tf":2.0},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"494":{"tf":1.0},"511":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"399":{"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":{"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"121":{"tf":1.0},"33":{"tf":1.0},"485":{"tf":1.0}}}}},"·":{"df":1,"docs":{"48":{"tf":1.0}},"s":{")":{"/":{"(":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{")":{"/":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"/":{"2":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"143":{"tf":1.0},"42":{"tf":1.0},"455":{"tf":1.0}}}},"k":{"a":{"c":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"193":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"253":{"tf":1.0},"255":{"tf":1.0},"308":{"tf":2.0},"312":{"tf":1.4142135623730951},"313":{"tf":2.449489742783178},"314":{"tf":1.0},"322":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"190":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":19,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":4.58257569495584},"191":{"tf":3.0},"193":{"tf":3.3166247903554},"199":{"tf":1.7320508075688772},"208":{"tf":1.0},"349":{"tf":1.7320508075688772},"350":{"tf":1.7320508075688772},"351":{"tf":1.7320508075688772},"352":{"tf":1.4142135623730951},"359":{"tf":1.0},"364":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"383":{"tf":2.6457513110645907},"406":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"191":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"391":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.7320508075688772},"47":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"494":{"tf":1.0},"505":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":11,"docs":{"23":{"tf":2.23606797749979},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"340":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"130":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"328":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":2.0}}}}},"df":21,"docs":{"102":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"217":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"290":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"343":{"tf":1.4142135623730951},"355":{"tf":1.0},"360":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":2.0},"51":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"251":{"tf":1.0}}},"n":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":7,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":9,"docs":{"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"194":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"296":{"tf":1.7320508075688772}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"194":{"tf":1.0},"369":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":9,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"27":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"494":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"#":{"1":{"7":{"8":{"1":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"7":{"9":{"6":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"3":{"3":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"2":{"1":{"7":{"7":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"154":{"tf":1.0},"196":{"tf":1.0}}}},"df":2,"docs":{"343":{"tf":1.0},"48":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"438":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"182":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"238":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.4142135623730951},"408":{"tf":1.0},"429":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":2.23606797749979},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0}}}}},"df":11,"docs":{"106":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"391":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"107":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":2.0},"162":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"41":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":74,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"174":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":1.7320508075688772},"201":{"tf":1.0},"211":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.7320508075688772},"223":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.4142135623730951},"249":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"290":{"tf":1.4142135623730951},"300":{"tf":1.0},"308":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.4142135623730951},"384":{"tf":1.0},"393":{"tf":1.4142135623730951},"402":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.4142135623730951},"423":{"tf":1.0},"425":{"tf":1.0},"431":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"505":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"196":{"tf":1.0}},"e":{"d":{"df":4,"docs":{"253":{"tf":1.0},"343":{"tf":1.7320508075688772},"43":{"tf":1.0},"471":{"tf":1.0}}},"df":27,"docs":{"101":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"258":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":5,"docs":{"253":{"tf":1.0},"262":{"tf":1.0},"279":{"tf":1.0},"402":{"tf":1.0},"450":{"tf":1.0}}},"m":{"df":4,"docs":{"152":{"tf":1.0},"403":{"tf":1.0},"408":{"tf":1.4142135623730951},"423":{"tf":1.0}}},"n":{"df":4,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"173":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"35":{"tf":1.4142135623730951},"406":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"190":{"tf":1.0},"215":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"220":{"tf":2.8284271247461903},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":9,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"194":{"tf":1.4142135623730951},"253":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"l":{"df":4,"docs":{"182":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"351":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"193":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"217":{"tf":1.0},"296":{"tf":1.0}}}},"n":{"d":{"df":17,"docs":{"132":{"tf":1.0},"164":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"243":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":2.0},"371":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"328":{"tf":1.0},"334":{"tf":1.0},"471":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"313":{"tf":1.0}}}}},"s":{"df":6,"docs":{"297":{"tf":1.0},"383":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"298":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"t":{"df":7,"docs":{"106":{"tf":1.0},"208":{"tf":1.0},"239":{"tf":1.0},"328":{"tf":1.0},"369":{"tf":1.4142135623730951},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":1.0},"189":{"tf":1.0},"240":{"tf":1.0},"280":{"tf":1.0},"402":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"23":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":9,"docs":{"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":1,"docs":{"448":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"367":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":15,"docs":{"200":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":2.449489742783178},"503":{"tf":1.0},"512":{"tf":1.7320508075688772},"54":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"373":{"tf":1.0}}}},"i":{"c":{"df":7,"docs":{"184":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"125":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"225":{"tf":1.0},"298":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"477":{"tf":1.0},"500":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"467":{"tf":1.7320508075688772},"468":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"471":{"tf":2.0},"475":{"tf":1.0},"477":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"471":{"tf":1.0}},"s":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":47,"docs":{"111":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":2.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":1.7320508075688772},"193":{"tf":2.0},"205":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"308":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.7320508075688772},"404":{"tf":1.0},"416":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":2.0},"471":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"166":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"185":{"tf":1.0}}},"r":{"df":9,"docs":{"10":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"220":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0}}}}}},"h":{"a":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"0":{"df":0,"docs":{},"f":{"1":{"2":{"8":{"7":{"2":{"4":{"4":{"7":{"9":{"5":{"8":{"d":{"5":{"0":{"a":{"a":{"7":{"b":{"9":{"3":{"7":{"b":{"0":{"1":{"0":{"6":{"5":{"6":{"1":{"a":{"5":{"8":{"8":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"2":{"6":{"2":{"8":{"d":{"3":{"3":{"df":0,"docs":{},"f":{"8":{"1":{"b":{"5":{"3":{"6":{"1":{"b":{"1":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"8":{"d":{"df":0,"docs":{},"f":{"7":{"0":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"241":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"156":{"tf":1.4142135623730951},"191":{"tf":3.0},"233":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.7320508075688772},"359":{"tf":1.0},"363":{"tf":1.0},"439":{"tf":1.0},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"355":{"tf":1.0},"357":{"tf":1.0},"406":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"184":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"192":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"408":{"tf":1.0}}}},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"276":{"tf":1.0},"370":{"tf":1.0},"408":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":2.0},"121":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"137":{"tf":1.0}},"n":{"df":3,"docs":{"314":{"tf":1.0},"444":{"tf":1.0},"51":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"352":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":33,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"203":{"tf":1.0},"239":{"tf":1.7320508075688772},"270":{"tf":1.0},"281":{"tf":1.0},"328":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"340":{"tf":2.0},"355":{"tf":2.0},"356":{"tf":1.4142135623730951},"357":{"tf":2.449489742783178},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.0},"423":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"343":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"99":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"23":{"tf":1.4142135623730951},"343":{"tf":2.449489742783178},"344":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"442":{"tf":1.0},"45":{"tf":4.898979485566356},"471":{"tf":2.6457513110645907},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":2.8284271247461903},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":17,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"191":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"471":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"108":{"tf":1.0},"45":{"tf":1.0}}},"df":8,"docs":{"100":{"tf":1.4142135623730951},"110":{"tf":1.0},"122":{"tf":1.7320508075688772},"43":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"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":4,"docs":{"168":{"tf":1.0},"329":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0}}}}}}},"df":6,"docs":{"164":{"tf":1.0},"177":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"406":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":1,"docs":{"230":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"190":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"43":{"tf":1.0},"485":{"tf":1.0},"499":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"293":{"tf":1.0},"344":{"tf":1.0},"369":{"tf":1.0},"502":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":13,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"250":{"tf":1.0},"297":{"tf":1.0},"337":{"tf":1.0},"362":{"tf":1.0},"398":{"tf":1.0},"420":{"tf":1.0},"51":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"293":{"tf":1.0},"297":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"369":{"tf":1.0},"407":{"tf":1.0}}},"df":10,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"293":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"407":{"tf":1.0}},"f":{"df":1,"docs":{"483":{"tf":1.0}},"i":{"df":3,"docs":{"297":{"tf":1.0},"400":{"tf":1.0},"44":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"297":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":19,"docs":{"111":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"204":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.0},"253":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"426":{"tf":1.0},"429":{"tf":2.0},"48":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"122":{"tf":1.0},"145":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"355":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"43":{"tf":1.0},"486":{"tf":1.7320508075688772},"497":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"408":{"tf":1.0}}},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":27,"docs":{"113":{"tf":1.4142135623730951},"129":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"215":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"239":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":4.898979485566356},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"371":{"tf":2.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":2.23606797749979},"442":{"tf":1.7320508075688772},"445":{"tf":1.4142135623730951},"453":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"393":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"369":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"295":{"tf":1.0},"296":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"395":{"tf":1.0},"406":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"114":{"tf":1.0},"347":{"tf":1.0},"360":{"tf":1.0},"407":{"tf":1.0},"472":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"357":{"tf":1.0},"359":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":22,"docs":{"184":{"tf":1.7320508075688772},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.7320508075688772},"23":{"tf":2.0},"24":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":3.7416573867739413},"51":{"tf":4.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0}}},"w":{"df":4,"docs":{"151":{"tf":1.0},"165":{"tf":1.0},"255":{"tf":1.0},"352":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"373":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"129":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"239":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":1.0},"414":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"194":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.0},"50":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"160":{"tf":2.23606797749979},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":2.23606797749979},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"168":{"tf":2.8284271247461903},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"454":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"187":{"tf":1.4142135623730951},"205":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"196":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":15,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":2.23606797749979},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"359":{"tf":2.0},"406":{"tf":1.0},"408":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}},"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"t":{"df":19,"docs":{"150":{"tf":1.0},"169":{"tf":1.0},"186":{"tf":2.6457513110645907},"193":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"240":{"tf":1.0},"276":{"tf":1.0},"352":{"tf":2.23606797749979},"362":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":2.6457513110645907},"453":{"tf":1.4142135623730951},"466":{"tf":1.0},"485":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"v":{"df":8,"docs":{"143":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"497":{"tf":1.0},"512":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"2":{"df":1,"docs":{"194":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"254":{"tf":1.4142135623730951},"312":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"134":{"tf":1.0},"512":{"tf":1.0},"85":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"165":{"tf":1.0},"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"491":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":36,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"182":{"tf":1.0},"485":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}},"n":{"df":5,"docs":{"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"194":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"128":{"tf":1.0},"184":{"tf":1.0}}}},"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":8,"docs":{"114":{"tf":1.0},"129":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"152":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"235":{"tf":1.4142135623730951},"253":{"tf":1.0},"410":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"202":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":43,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"235":{"tf":2.449489742783178},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"326":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.4142135623730951},"393":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":2.6457513110645907},"198":{"tf":1.0},"237":{"tf":1.0},"313":{"tf":1.0},"369":{"tf":1.4142135623730951},"454":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"151":{"tf":1.0},"347":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"254":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"414":{"tf":2.23606797749979},"416":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"296":{"tf":1.0},"386":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"391":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"407":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"23":{"tf":1.0},"230":{"tf":1.0},"66":{"tf":2.0}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"313":{"tf":1.4142135623730951},"316":{"tf":1.0},"383":{"tf":1.0}}}},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"190":{"tf":1.0},"235":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"162":{"tf":1.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"164":{"tf":1.7320508075688772},"174":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"240":{"tf":1.7320508075688772},"340":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":5,"docs":{"150":{"tf":1.0},"187":{"tf":1.0},"275":{"tf":1.0},"298":{"tf":1.0},"455":{"tf":1.7320508075688772}}}},"k":{"df":0,"docs":{},"e":{"df":15,"docs":{"122":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":2.23606797749979},"230":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.7320508075688772},"295":{"tf":2.23606797749979},"297":{"tf":4.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"427":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":67,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.7320508075688772},"195":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"3":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.4142135623730951},"349":{"tf":1.0},"353":{"tf":1.4142135623730951},"365":{"tf":1.0},"368":{"tf":1.0},"379":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"387":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"425":{"tf":1.0},"428":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.0},"448":{"tf":1.0},"452":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"481":{"tf":1.0},"484":{"tf":1.0},"495":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":6,"docs":{"206":{"tf":1.0},"211":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":1,"docs":{"5":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}}}},"t":{"df":51,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":2.23606797749979},"349":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"449":{"tf":1.0},"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":27,"docs":{"133":{"tf":1.0},"14":{"tf":2.0},"164":{"tf":1.0},"18":{"tf":1.4142135623730951},"290":{"tf":2.449489742783178},"293":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"343":{"tf":1.0},"378":{"tf":1.0},"403":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"72":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":2,"docs":{"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"189":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"343":{"tf":1.0},"456":{"tf":1.0}}}},"y":{"df":3,"docs":{"190":{"tf":1.0},"297":{"tf":1.0},"356":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.0}}}},"m":{"df":1,"docs":{"18":{"tf":1.0}}},"p":{"df":13,"docs":{"106":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":2.449489742783178},"255":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"334":{"tf":1.0},"39":{"tf":1.0},"429":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":19,"docs":{"130":{"tf":1.0},"133":{"tf":1.4142135623730951},"151":{"tf":1.0},"159":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"262":{"tf":1.0},"281":{"tf":1.4142135623730951},"294":{"tf":1.0},"397":{"tf":1.0},"403":{"tf":1.7320508075688772},"408":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":3.4641016151377544}}},"r":{"a":{"df":0,"docs":{},"g":{"df":33,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"297":{"tf":1.0},"343":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"369":{"tf":2.23606797749979},"370":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"407":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":2.6457513110645907},"442":{"tf":1.4142135623730951},"453":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"438":{"tf":1.4142135623730951},"439":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"_":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"132":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"241":{"tf":1.0},"367":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.7320508075688772},"455":{"tf":1.7320508075688772},"456":{"tf":1.0},"457":{"tf":1.7320508075688772},"47":{"tf":1.0},"497":{"tf":1.7320508075688772},"505":{"tf":1.0}}},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"326":{"tf":1.0},"357":{"tf":1.0}}}}},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":9,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"407":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"370":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"280":{"tf":1.4142135623730951},"281":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"403":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"125":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.0},"290":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"186":{"tf":1.0},"240":{"tf":1.4142135623730951},"257":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"485":{"tf":1.0},"489":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"239":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":2,"docs":{"104":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"185":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"458":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"437":{"tf":1.0},"485":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"194":{"tf":2.23606797749979},"239":{"tf":1.0},"369":{"tf":1.0},"471":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"279":{"tf":1.0},"32":{"tf":2.0},"410":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"b":{"0":{"df":1,"docs":{"437":{"tf":1.0}}},"df":4,"docs":{"189":{"tf":1.0},"294":{"tf":1.0},"304":{"tf":1.0},"326":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"200":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"36":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}}},"t":{"df":10,"docs":{"164":{"tf":1.7320508075688772},"297":{"tf":1.0},"36":{"tf":1.0},"406":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"22":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}},"t":{"df":6,"docs":{"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"38":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"a":{"c":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"421":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"170":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"340":{"tf":1.0},"466":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"173":{"tf":1.0},"237":{"tf":2.0},"326":{"tf":1.0},"328":{"tf":1.0},"345":{"tf":1.0},"387":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"239":{"tf":1.0},"325":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":12,"docs":{"143":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"455":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"486":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"191":{"tf":1.0},"209":{"tf":1.4142135623730951},"298":{"tf":1.0},"343":{"tf":3.1622776601683795},"383":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"191":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"457":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":36,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"217":{"tf":1.4142135623730951},"22":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"254":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"371":{"tf":1.7320508075688772},"373":{"tf":1.0},"383":{"tf":1.0},"408":{"tf":1.0},"434":{"tf":1.4142135623730951},"449":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"243":{"tf":1.0},"360":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"185":{"tf":1.0},"189":{"tf":1.0},"367":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"102":{"tf":1.0},"178":{"tf":1.0},"241":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"427":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"22":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.0},"399":{"tf":1.0},"402":{"tf":1.0},"450":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"150":{"tf":1.0},"16":{"tf":1.0},"279":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"185":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":60,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"343":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":1.0},"500":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"351":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":33,"docs":{"117":{"tf":1.0},"133":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"146":{"tf":2.0},"149":{"tf":1.0},"156":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":3,"docs":{"373":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.0},"239":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"483":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}},"g":{"df":1,"docs":{"360":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"163":{"tf":1.0},"343":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"383":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"378":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"348":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"280":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"239":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"223":{"tf":1.0},"295":{"tf":1.0}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"386":{"tf":1.0},"391":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"s":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"128":{"tf":2.0},"130":{"tf":2.449489742783178},"132":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":64,"docs":{"11":{"tf":1.4142135623730951},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":2.6457513110645907},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":2.6457513110645907},"218":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":2.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"296":{"tf":1.4142135623730951},"297":{"tf":3.1622776601683795},"298":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.0},"35":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":2.0},"98":{"tf":1.0}}}}}}},"·":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"0":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"50":{"tf":1.0}}},"4":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"df":1,"docs":{"50":{"tf":1.0}}},":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"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":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":32,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":20,"docs":{"117":{"tf":1.0},"182":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"207":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.4142135623730951},"417":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":3,"docs":{"225":{"tf":1.0},"343":{"tf":1.0},"74":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"384":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"k":{"df":1,"docs":{"489":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":17,"docs":{"155":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"241":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":2.23606797749979},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":2.23606797749979},"505":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"100":{"tf":1.0},"143":{"tf":1.0},"189":{"tf":2.8284271247461903},"190":{"tf":1.4142135623730951},"191":{"tf":2.0},"194":{"tf":4.58257569495584},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"262":{"tf":1.0},"406":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"193":{"tf":1.0},"33":{"tf":2.449489742783178},"357":{"tf":1.7320508075688772},"48":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":18,"docs":{"100":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.7320508075688772},"25":{"tf":1.0},"251":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"281":{"tf":1.0},"353":{"tf":1.0},"387":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"441":{"tf":1.0},"446":{"tf":1.0},"450":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":21,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"172":{"tf":1.0},"194":{"tf":1.0},"216":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"310":{"tf":1.4142135623730951},"326":{"tf":1.0},"407":{"tf":1.4142135623730951},"411":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":8,"docs":{"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"404":{"tf":1.0},"95":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"429":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"152":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"402":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"241":{"tf":1.0},"255":{"tf":1.0},"276":{"tf":1.4142135623730951},"400":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.4142135623730951},"505":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":57,"docs":{"1":{"tf":1.0},"115":{"tf":1.4142135623730951},"123":{"tf":1.0},"135":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":2.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"201":{"tf":1.0},"211":{"tf":1.4142135623730951},"215":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.4142135623730951},"308":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":1.7320508075688772},"412":{"tf":1.0},"418":{"tf":1.0},"425":{"tf":1.0},"431":{"tf":1.4142135623730951},"448":{"tf":1.0},"459":{"tf":1.4142135623730951},"467":{"tf":1.0},"473":{"tf":1.7320508075688772},"481":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"197":{"tf":1.0},"270":{"tf":1.0},"298":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"357":{"tf":1.4142135623730951}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"367":{"tf":1.0},"371":{"tf":1.0},"410":{"tf":1.0}}}},"t":{"'":{"df":1,"docs":{"326":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"220":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"383":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":2.449489742783178},"502":{"tf":1.0},"503":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"i":{"df":2,"docs":{"240":{"tf":1.0},"407":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"13":{"tf":1.0},"282":{"tf":1.0},"486":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"192":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.0},"383":{"tf":1.0},"429":{"tf":1.0},"440":{"tf":1.0},"458":{"tf":1.0},"47":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"132":{"tf":1.0},"325":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.4142135623730951},"489":{"tf":1.0}}},"k":{"df":2,"docs":{"220":{"tf":1.0},"236":{"tf":1.0}}}},"r":{"d":{"df":3,"docs":{"154":{"tf":1.0},"207":{"tf":1.0},"312":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"119":{"tf":1.0},"166":{"tf":1.7320508075688772},"202":{"tf":1.0},"262":{"tf":1.0},"290":{"tf":1.0},"310":{"tf":1.0},"383":{"tf":1.0},"429":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"162":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"340":{"tf":1.0},"458":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"410":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"296":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.0},"454":{"tf":1.0},"485":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"427":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"371":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"220":{"tf":1.0},"262":{"tf":1.0},"340":{"tf":1.0},"383":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.4142135623730951},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"406":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"164":{"tf":1.0},"179":{"tf":1.0},"296":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.0},"25":{"tf":1.0},"250":{"tf":1.0},"257":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.0},"367":{"tf":2.0},"371":{"tf":1.0},"427":{"tf":1.0},"477":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":15,"docs":{"23":{"tf":3.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":5.196152422706632},"49":{"tf":2.23606797749979},"50":{"tf":3.605551275463989},"51":{"tf":2.6457513110645907},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"i":{"d":{"df":2,"docs":{"48":{"tf":2.23606797749979},"50":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"326":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"400":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"456":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"e":{"df":61,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.7320508075688772},"150":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"274":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"310":{"tf":1.7320508075688772},"312":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.8284271247461903},"367":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"381":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":1.4142135623730951},"427":{"tf":2.0},"429":{"tf":1.4142135623730951},"440":{"tf":2.23606797749979},"450":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"415":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"190":{"tf":2.6457513110645907},"191":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":3.872983346207417}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.4142135623730951}}}}}}},"k":{"df":1,"docs":{"50":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"159":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"99":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"164":{"tf":1.0},"166":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"353":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":2.23606797749979},"404":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"217":{"tf":1.0},"269":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"349":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"114":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"149":{"tf":1.0},"165":{"tf":1.0},"262":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"137":{"tf":1.0},"163":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"237":{"tf":1.0},"464":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":3.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"194":{"tf":1.4142135623730951},"243":{"tf":1.0},"314":{"tf":1.0},"380":{"tf":1.0},"454":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"507":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"190":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0}}},"df":25,"docs":{"132":{"tf":1.0},"140":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"297":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":1.0},"414":{"tf":2.8284271247461903},"415":{"tf":1.0},"416":{"tf":2.0},"417":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":2.23606797749979},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"122":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"194":{"tf":1.0},"353":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.0},"173":{"tf":1.0}}}}},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"243":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}},"t":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"392":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"206":{"tf":1.0},"217":{"tf":2.449489742783178},"218":{"tf":1.0},"220":{"tf":1.0},"262":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":1.7320508075688772},"326":{"tf":2.6457513110645907},"328":{"tf":2.0},"329":{"tf":1.4142135623730951},"334":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"42":{"tf":1.0},"44":{"tf":2.449489742783178},"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":9,"docs":{"113":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"367":{"tf":1.0},"406":{"tf":1.4142135623730951},"444":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":2,"docs":{"207":{"tf":1.0},"406":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"105":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"290":{"tf":2.23606797749979},"367":{"tf":1.0},"408":{"tf":1.0},"491":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"109":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":3,"docs":{"110":{"tf":2.0},"132":{"tf":1.0},"99":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"343":{"tf":1.0}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"412":{"tf":1.7320508075688772},"413":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"418":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.4142135623730951}},"i":{"df":16,"docs":{"120":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.4142135623730951},"292":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":3.1622776601683795},"414":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"104":{"tf":1.0},"194":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"102":{"tf":2.6457513110645907},"103":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"132":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":5,"docs":{"129":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"399":{"tf":1.0},"407":{"tf":1.0},"497":{"tf":1.0}},"e":{"df":6,"docs":{"129":{"tf":1.0},"235":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":3.872983346207417},"370":{"tf":1.0},"440":{"tf":2.0}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"143":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"194":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"366":{"tf":1.0}},"l":{"df":1,"docs":{"360":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.0},"193":{"tf":1.4142135623730951},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"427":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.4142135623730951},"163":{"tf":1.0},"369":{"tf":2.0},"407":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"184":{"tf":1.0},"217":{"tf":1.7320508075688772},"240":{"tf":1.0},"248":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"403":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"429":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"427":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"238":{"tf":1.0},"340":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":37,"docs":{"149":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.0},"206":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"295":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"334":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"454":{"tf":1.4142135623730951},"483":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"72":{"tf":1.0}},"x":{"6":{"4":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"104":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"104":{"tf":1.0}}}}},"df":30,"docs":{"102":{"tf":2.0},"104":{"tf":3.605551275463989},"149":{"tf":1.4142135623730951},"181":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"194":{"tf":3.605551275463989},"201":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"23":{"tf":1.0},"253":{"tf":1.0},"294":{"tf":1.0},"32":{"tf":1.4142135623730951},"326":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"369":{"tf":1.0},"407":{"tf":1.4142135623730951},"421":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":2.0},"476":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":9,"docs":{"204":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"370":{"tf":1.0},"423":{"tf":1.0},"445":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":1,"docs":{"357":{"tf":1.0}}}}},"·":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{".":{"df":1,"docs":{"313":{"tf":1.0}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"131":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":2.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"442":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"442":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"102":{"tf":1.7320508075688772},"194":{"tf":1.0},"42":{"tf":1.4142135623730951},"471":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.7320508075688772}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0}}}}}}}},"c":{"'":{"df":1,"docs":{"402":{"tf":1.0}}},"df":11,"docs":{"184":{"tf":1.0},"186":{"tf":2.23606797749979},"189":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"350":{"tf":1.0},"380":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0}}},"df":1,"docs":{"357":{"tf":1.0}},"i":{"df":2,"docs":{"257":{"tf":1.0},"291":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"122":{"tf":1.0},"251":{"tf":1.0},"403":{"tf":1.0},"417":{"tf":1.0},"427":{"tf":1.0},"99":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"189":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"269":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"189":{"tf":1.0},"207":{"tf":1.0},"457":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"347":{"tf":1.4142135623730951},"373":{"tf":1.0},"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"349":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"429":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"426":{"tf":1.0},"429":{"tf":1.7320508075688772}}}}},"r":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"173":{"tf":1.0}}}}},"df":11,"docs":{"130":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"221":{"tf":1.0},"362":{"tf":1.0},"383":{"tf":1.0},"429":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.0},"501":{"tf":1.7320508075688772},"82":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"37":{"tf":1.0},"408":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"189":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"434":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"203":{"tf":1.0},"207":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"297":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"164":{"tf":1.0},"383":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":1,"docs":{"391":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"326":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"146":{"tf":1.0},"400":{"tf":1.0},"70":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"296":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":10,"docs":{"13":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.4142135623730951},"204":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"450":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"223":{"tf":1.0},"322":{"tf":1.0},"406":{"tf":1.0},"7":{"tf":2.0},"74":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}}}}}}},"df":1,"docs":{"72":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":7,"docs":{"165":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"213":{"tf":1.0},"440":{"tf":1.0},"510":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"32":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"164":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"184":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":2.0},"268":{"tf":1.0},"274":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"326":{"tf":1.0},"383":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"125":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"307":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"449":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":52,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"21":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"365":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"425":{"tf":1.0},"436":{"tf":1.0},"448":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"511":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"442":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"292":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"24":{"tf":1.0},"241":{"tf":1.0},"267":{"tf":1.0},"343":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.4142135623730951},"505":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"192":{"tf":1.0},"240":{"tf":1.0},"439":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"270":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"194":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"48":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"134":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"194":{"tf":1.7320508075688772},"223":{"tf":1.0},"235":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"266":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"397":{"tf":1.0},"421":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.7320508075688772},"54":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.0},"220":{"tf":1.4142135623730951},"235":{"tf":1.0},"241":{"tf":1.0},"262":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"355":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.4142135623730951},"48":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.4142135623730951},"505":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":16,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":3.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"156":{"tf":1.0},"195":{"tf":1.4142135623730951},"227":{"tf":1.0},"266":{"tf":1.0},"281":{"tf":1.0},"359":{"tf":1.0},"446":{"tf":1.0},"457":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"371":{"tf":1.0},"457":{"tf":1.0},"486":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"120":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"280":{"tf":1.0},"403":{"tf":1.0},"450":{"tf":1.0},"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"129":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":21,"docs":{"118":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"168":{"tf":2.449489742783178},"169":{"tf":1.0},"176":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"209":{"tf":1.0},"366":{"tf":1.0},"383":{"tf":1.0},"41":{"tf":1.0},"421":{"tf":1.0},"445":{"tf":1.0},"476":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0}}}},"c":{"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":3,"docs":{"13":{"tf":1.4142135623730951},"177":{"tf":1.0},"313":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"313":{"tf":1.7320508075688772}}}},"df":116,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":2.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"241":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.4142135623730951},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":2.23606797749979},"343":{"tf":2.449489742783178},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"357":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.7320508075688772},"373":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.7320508075688772},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"462":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"48":{"tf":2.6457513110645907},"485":{"tf":1.7320508075688772},"49":{"tf":1.0},"501":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"511":{"tf":1.0},"512":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":2.23606797749979},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"297":{"tf":1.0}}},"df":30,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"297":{"tf":1.4142135623730951},"303":{"tf":1.0},"391":{"tf":1.0},"397":{"tf":1.0},"404":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.4142135623730951},"454":{"tf":1.0},"469":{"tf":1.7320508075688772},"472":{"tf":1.0},"476":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"471":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":21,"docs":{"164":{"tf":1.4142135623730951},"166":{"tf":2.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"35":{"tf":1.0},"383":{"tf":1.4142135623730951},"396":{"tf":1.0},"403":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"52":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"235":{"tf":1.0}}}},"v":{"0":{"df":2,"docs":{"102":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},".":{"0":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"149":{"tf":2.0},"150":{"tf":2.0},"152":{"tf":1.4142135623730951},"156":{"tf":1.0},"163":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"2":{"+":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"454":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"454":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"457":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":49,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.8284271247461903},"133":{"tf":2.6457513110645907},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":2.6457513110645907},"191":{"tf":1.0},"217":{"tf":2.0},"218":{"tf":1.0},"23":{"tf":1.7320508075688772},"234":{"tf":1.0},"24":{"tf":1.4142135623730951},"262":{"tf":1.0},"290":{"tf":1.7320508075688772},"294":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"429":{"tf":1.0},"45":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"451":{"tf":2.0},"453":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":2.449489742783178},"456":{"tf":1.0},"457":{"tf":2.0},"458":{"tf":1.0},"47":{"tf":2.0},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":3.1622776601683795},"49":{"tf":1.7320508075688772},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"295":{"tf":1.0},"296":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"407":{"tf":1.4142135623730951}}}},"df":59,"docs":{"1":{"tf":1.0},"102":{"tf":2.23606797749979},"103":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"13":{"tf":2.23606797749979},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"193":{"tf":2.449489742783178},"194":{"tf":2.0},"207":{"tf":2.23606797749979},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":5.196152422706632},"351":{"tf":1.0},"356":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":3.605551275463989},"369":{"tf":2.6457513110645907},"371":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":2.0},"471":{"tf":1.4142135623730951},"48":{"tf":2.8284271247461903},"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.0},"501":{"tf":1.4142135623730951},"507":{"tf":1.0},"54":{"tf":1.7320508075688772},"7":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"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":{"343":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"239":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"104":{"tf":3.1622776601683795},"235":{"tf":1.0},"406":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"190":{"tf":1.0},"217":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":11,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"262":{"tf":1.0},"401":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"409":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"146":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"343":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{"c":{"!":{"[":{"(":{"a":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"325":{"tf":1.0},"326":{"tf":1.7320508075688772},"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"8":{"df":3,"docs":{"102":{"tf":2.0},"132":{"tf":1.4142135623730951},"471":{"tf":2.0}}},"df":0,"docs":{}}},"df":3,"docs":{"194":{"tf":3.0},"325":{"tf":1.0},"328":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":27,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"262":{"tf":1.4142135623730951},"303":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.7320508075688772},"383":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"499":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":13,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"23":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"473":{"tf":1.0},"52":{"tf":1.7320508075688772},"83":{"tf":1.0},"95":{"tf":1.4142135623730951}},"i":{"df":17,"docs":{"122":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"240":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"144":{"tf":1.0},"145":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"102":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.449489742783178},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"156":{"tf":1.0},"235":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":5.916079783099616},"348":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.0},"434":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":3.3166247903554},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"l":{"df":2,"docs":{"450":{"tf":1.0},"485":{"tf":1.0}}}},"df":22,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"227":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"355":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"187":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}},"i":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"390":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"169":{"tf":1.0},"184":{"tf":1.0},"343":{"tf":3.4641016151377544}}}},"df":1,"docs":{"191":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"350":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"165":{"tf":1.0}},"p":{"df":1,"docs":{"204":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"295":{"tf":1.0},"298":{"tf":1.0}}},"d":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"383":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"143":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"262":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"425":{"tf":1.7320508075688772},"426":{"tf":3.3166247903554},"427":{"tf":2.23606797749979},"429":{"tf":4.358898943540674}},"r":{"df":4,"docs":{"220":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}},"s":{"(":{"1":{"6":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}},"s":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":9,"docs":{"23":{"tf":2.23606797749979},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"61":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"42":{"tf":2.0},"43":{"tf":2.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"43":{"tf":2.23606797749979},"44":{"tf":1.0},"45":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"51":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":2.0},"45":{"tf":2.8284271247461903},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"423":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"217":{"tf":1.0}}}}}}},"·":{"2":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"310":{"tf":1.0},"322":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"193":{"tf":1.4142135623730951},"367":{"tf":1.0},"407":{"tf":1.0},"455":{"tf":1.0},"491":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"367":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.7320508075688772},"241":{"tf":1.0},"254":{"tf":1.0},"360":{"tf":1.0},"410":{"tf":1.0},"434":{"tf":1.0},"466":{"tf":1.0},"497":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":3,"docs":{"378":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"329":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"262":{"tf":1.7320508075688772},"263":{"tf":1.4142135623730951},"269":{"tf":1.0}}}}}}}}},"df":10,"docs":{"146":{"tf":1.7320508075688772},"150":{"tf":2.0},"155":{"tf":1.0},"165":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.0},"483":{"tf":2.23606797749979},"485":{"tf":2.0},"486":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"162":{"tf":1.0},"296":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"48":{"tf":1.0}}}},"y":{"df":36,"docs":{"111":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"22":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"414":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"505":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":2,"docs":{"485":{"tf":1.0},"489":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951}}}},"b":{"3":{"df":6,"docs":{"162":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"190":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"407":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"160":{"tf":1.0},"168":{"tf":2.23606797749979},"176":{"tf":1.0},"194":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":2.23606797749979},"442":{"tf":1.0},"447":{"tf":1.0},"475":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"169":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"434":{"tf":1.0},"455":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"281":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"189":{"tf":1.0},"191":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"192":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"132":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"423":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"190":{"tf":1.0},"217":{"tf":1.0},"424":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"312":{"tf":1.0},"369":{"tf":1.7320508075688772},"500":{"tf":1.0},"502":{"tf":1.0},"505":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"164":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"185":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"407":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"48":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"407":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"328":{"tf":1.0},"369":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"420":{"tf":1.0}}},"h":{"df":4,"docs":{"253":{"tf":1.0},"406":{"tf":1.0},"415":{"tf":1.0},"429":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":3,"docs":{"164":{"tf":1.7320508075688772},"168":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"163":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"27":{"tf":1.0},"295":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"328":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.4142135623730951},"35":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":2.0},"407":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"511":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"122":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"184":{"tf":1.0},"203":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"408":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"453":{"tf":1.0},"455":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":5,"docs":{"181":{"tf":1.0},"201":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"131":{"tf":1.0},"328":{"tf":1.0},"369":{"tf":1.7320508075688772},"406":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":26,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.7320508075688772},"241":{"tf":1.0},"280":{"tf":1.4142135623730951},"293":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"367":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"194":{"tf":3.1622776601683795},"209":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"191":{"tf":1.4142135623730951},"194":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"185":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"165":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"340":{"tf":1.0},"373":{"tf":1.0},"403":{"tf":1.0},"409":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"177":{"tf":1.0},"190":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"343":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"164":{"tf":1.0},"238":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":5.656854249492381}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"163":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":2.6457513110645907}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{".":{"0":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"d":{"df":1,"docs":{"357":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"169":{"tf":1.4142135623730951}},"m":{"df":17,"docs":{"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.4142135623730951},"223":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":3,"docs":{"33":{"tf":2.6457513110645907},"357":{"tf":1.0},"48":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}},"df":1,"docs":{"191":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"357":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"156":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"408":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"144":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"128":{"tf":1.4142135623730951},"177":{"tf":1.0},"193":{"tf":1.4142135623730951},"208":{"tf":1.0},"343":{"tf":2.0}}}}},"k":{"df":6,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"164":{"tf":1.0},"178":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"0":{"0":{"1":{"6":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"9":{"tf":1.0}}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":6,"docs":{"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"7":{"5":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"5":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"177":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"0":{"0":{"6":{"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"9":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"312":{"tf":1.0}}},"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"5":{"df":1,"docs":{"360":{"tf":1.0}}},"6":{"df":1,"docs":{"444":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":50,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"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},"11":{"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},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"4":{"df":12,"docs":{"159":{"tf":1.0},"338":{"tf":2.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0}}},"6":{"df":16,"docs":{"349":{"tf":2.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0}}},"7":{"df":18,"docs":{"215":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"8":{"df":16,"docs":{"233":{"tf":2.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}}},"9":{"df":14,"docs":{"365":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":5,"docs":{"379":{"tf":2.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0}}},"2":{"df":11,"docs":{"249":{"tf":2.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0}}},"3":{"df":17,"docs":{"384":{"tf":2.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0}}},"4":{"df":17,"docs":{"260":{"tf":2.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}},"5":{"df":11,"docs":{"401":{"tf":2.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":13,"docs":{"412":{"tf":2.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0}}},"2":{"df":11,"docs":{"277":{"tf":2.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}},"6":{"df":45,"docs":{"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"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}}},"df":0,"docs":{}},"3":{"2":{"df":20,"docs":{"288":{"tf":2.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0}}},"5":{"df":13,"docs":{"425":{"tf":2.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":14,"docs":{"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"3":{"df":10,"docs":{"438":{"tf":2.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0}}},"4":{"df":19,"docs":{"448":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}},"7":{"df":21,"docs":{"123":{"tf":2.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}}},"8":{"df":14,"docs":{"467":{"tf":2.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":16,"docs":{"308":{"tf":2.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0}}},"4":{"df":14,"docs":{"481":{"tf":2.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}},"6":{"df":14,"docs":{"324":{"tf":2.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0}}},"9":{"df":18,"docs":{"495":{"tf":2.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":16,"docs":{"144":{"tf":2.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}}},"6":{"df":21,"docs":{"160":{"tf":2.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}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"123":{"tf":1.0}}},"4":{"df":1,"docs":{"338":{"tf":1.0}}},"5":{".":{"0":{"8":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"401":{"tf":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":{"68":{"tf":1.0}}},"6":{"df":2,"docs":{"201":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":4,"docs":{"215":{"tf":1.0},"233":{"tf":1.0},"338":{"tf":1.0},"365":{"tf":1.0}}},"9":{":":{"1":{"3":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}},"b":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":3.3166247903554}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"130":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":3.872983346207417},"208":{"tf":1.0},"314":{"tf":1.7320508075688772},"343":{"tf":4.58257569495584},"355":{"tf":1.0},"356":{"tf":2.23606797749979},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"9":{"tf":1.0}},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":4.795831523312719}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"x":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"1":{"df":1,"docs":{"111":{"tf":1.0}}},"2":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"3":{"d":{"d":{"8":{"0":{"8":{"4":{"d":{"5":{"0":{"d":{"b":{"b":{"b":{"c":{"9":{"6":{"2":{"0":{"6":{"7":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"c":{"3":{"7":{"b":{"6":{"2":{"7":{"8":{"3":{"1":{"d":{"9":{"3":{"3":{"9":{"df":0,"docs":{},"f":{"5":{"a":{"6":{"df":0,"docs":{},"e":{"4":{"2":{"6":{"a":{"3":{"2":{"df":0,"docs":{},"e":{"3":{"0":{"7":{"6":{"3":{"1":{"3":{"d":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"111":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"164":{"tf":1.0},"173":{"tf":1.0},"370":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"5":{"df":3,"docs":{"312":{"tf":1.0},"360":{"tf":1.4142135623730951},"370":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"297":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"8":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"209":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":8,"docs":{"174":{"tf":1.0},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"360":{"tf":2.0},"507":{"tf":1.0},"7":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"156":{"tf":1.0},"168":{"tf":1.0},"194":{"tf":3.872983346207417},"209":{"tf":1.0},"343":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"168":{"tf":1.0},"194":{"tf":2.23606797749979},"209":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"61":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"1":{",":{"6":{"df":1,"docs":{"369":{"tf":1.0}}},"7":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"194":{"tf":2.0}},"u":{"3":{"2":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"314":{"tf":1.0},"324":{"tf":1.0},"481":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"2":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.0}}},"8":{"df":6,"docs":{"129":{"tf":1.4142135623730951},"190":{"tf":1.0},"194":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0}}},"9":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":5,"docs":{"173":{"tf":1.0},"23":{"tf":1.0},"414":{"tf":1.0},"495":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"3":{"0":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":1,"docs":{"467":{"tf":1.0}}},"4":{"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"160":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"406":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"238":{"tf":1.0}}}}},"5":{"0":{"0":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":1,"docs":{"194":{"tf":3.4641016151377544}},"u":{"3":{"2":{"df":1,"docs":{"194":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"2":{"df":1,"docs":{"194":{"tf":1.0}}},"df":5,"docs":{"194":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"308":{"tf":1.0},"429":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":4,"docs":{"194":{"tf":3.4641016151377544},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"500":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}}},"8":{",":{"3":{"3":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"173":{"tf":1.0},"495":{"tf":1.0}}},"9":{".":{"0":{"7":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"379":{"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":1,"docs":{"14":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"365":{"tf":1.0}}},":":{"1":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":69,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"156":{"tf":1.0},"161":{"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.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"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},"202":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"25":{"tf":1.4142135623730951},"262":{"tf":1.0},"292":{"tf":1.0},"312":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":2.23606797749979},"343":{"tf":5.656854249492381},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"360":{"tf":3.1622776601683795},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":1.4142135623730951},"391":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"47":{"tf":2.23606797749979},"471":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":0,"docs":{},"v":{"df":1,"docs":{"429":{"tf":1.0}}}}},"2":{",":{"8":{"9":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"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":2,"docs":{"162":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"df":5,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"312":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"312":{"tf":2.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":2.0},"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.7320508075688772}},"u":{"3":{"2":{"df":1,"docs":{"194":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"2":{"df":2,"docs":{"278":{"tf":1.0},"437":{"tf":1.0}}},"3":{"df":30,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"384":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":3,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"483":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":2.0},"288":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772}}},"2":{",":{"5":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{",":{"8":{"3":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"184":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"384":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"481":{"tf":1.0},"507":{"tf":1.0}}},"5":{"6":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":1,"docs":{"260":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"7":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"144":{"tf":1.0},"314":{"tf":1.0}}},"8":{"df":1,"docs":{"193":{"tf":1.0}}},"9":{"6":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"128":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"23":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"343":{"tf":3.4641016151377544},"356":{"tf":1.7320508075688772},"360":{"tf":2.23606797749979},"369":{"tf":2.0},"391":{"tf":1.0},"409":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"3":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"32":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"a":{"df":1,"docs":{"143":{"tf":1.0}}},"b":{"df":1,"docs":{"143":{"tf":1.0}}},"c":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"181":{"tf":1.0},"193":{"tf":1.0},"324":{"tf":1.0},"356":{"tf":1.0},"360":{"tf":2.0},"406":{"tf":1.0},"438":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"485":{"tf":1.0}}}}},"df":10,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"162":{"tf":1.0},"194":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}},"3":{"3":{"8":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}}},"4":{"df":13,"docs":{"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"194":{"tf":1.0}}},"8":{"df":1,"docs":{"343":{"tf":1.0}}},"df":25,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.0},"125":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"276":{"tf":1.0},"31":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"343":{"tf":2.449489742783178},"351":{"tf":1.0},"360":{"tf":1.0},"369":{"tf":2.0},"391":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0}}},"4":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"36":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"37":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"23":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"14":{"tf":1.0}}},"5":{"df":3,"docs":{"193":{"tf":1.0},"356":{"tf":1.0},"360":{"tf":2.0}}},"8":{",":{"6":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":2.0},"423":{"tf":1.7320508075688772}}},"9":{",":{"2":{"1":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"191":{"tf":1.0},"194":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"276":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":2.449489742783178},"35":{"tf":1.4142135623730951},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"429":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.4142135623730951}},"·":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.4142135623730951}}},"4":{".":{"1":{"df":1,"docs":{"45":{"tf":1.0}}},"2":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"497":{"tf":1.4142135623730951}}},"df":6,"docs":{"129":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"194":{"tf":2.0},"243":{"tf":1.0},"507":{"tf":1.0}}},"3":{",":{"3":{"3":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{",":{"6":{"0":{"0":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"266":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.4142135623730951},"385":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"47":{"tf":1.4142135623730951},"54":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"4":{".":{"1":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"5":{".":{"1":{".":{"1":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"3":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"7":{"df":4,"docs":{"23":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"343":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"33":{"tf":1.0},"442":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"483":{"tf":1.0}}},"df":0,"docs":{}}}},"5":{",":{"3":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{",":{"6":{"6":{"7":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"191":{"tf":1.0},"23":{"tf":1.0},"369":{"tf":1.4142135623730951},"409":{"tf":1.0},"448":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"7":{"7":{",":{"0":{"0":{"0":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"164":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"23":{"tf":1.0},"385":{"tf":1.0},"406":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"8":{"0":{",":{"0":{"0":{"0":{"df":3,"docs":{"194":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":1.0},"190":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"1":{",":{"8":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"102":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"207":{"tf":1.0},"23":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"9":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"168":{"tf":1.0}}},"1":{"b":{"1":{"7":{"1":{"b":{"b":{"1":{"5":{"8":{"df":0,"docs":{},"e":{"2":{"d":{"3":{"8":{"4":{"8":{"df":0,"docs":{},"f":{"a":{"2":{"3":{"a":{"9":{"df":0,"docs":{},"f":{"1":{"c":{"2":{"5":{"1":{"8":{"2":{"df":0,"docs":{},"f":{"b":{"8":{"df":0,"docs":{},"e":{"2":{"0":{"3":{"1":{"3":{"b":{"2":{"c":{"1":{"df":0,"docs":{},"e":{"b":{"4":{"9":{"2":{"1":{"9":{"d":{"a":{"7":{"a":{"7":{"0":{"c":{"df":0,"docs":{},"e":{"9":{"0":{"c":{"3":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"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":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"9":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"57":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}},"_":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"149":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"(":{"1":{"df":1,"docs":{"357":{"tf":1.0}}},"df":0,"docs":{},"x":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{".":{"a":{"df":1,"docs":{"290":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"109":{"tf":1.0},"185":{"tf":1.7320508075688772},"189":{"tf":1.0},"297":{"tf":1.0},"316":{"tf":1.0},"72":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}}},"v":{"df":12,"docs":{"107":{"tf":1.0},"139":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"407":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"483":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"391":{"tf":1.0},"51":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":3.1622776601683795},"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}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"426":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"164":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"505":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"134":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.4142135623730951},"343":{"tf":3.0},"344":{"tf":1.0},"347":{"tf":1.0},"363":{"tf":1.0},"407":{"tf":1.0},"503":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":2.0},"161":{"tf":1.0},"164":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"241":{"tf":1.0},"294":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.0},"41":{"tf":1.0},"440":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"350":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"r":{"d":{"df":10,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"146":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"220":{"tf":1.0},"254":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"df":29,"docs":{"182":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":2.8284271247461903},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.4142135623730951},"429":{"tf":2.0},"440":{"tf":1.7320508075688772},"454":{"tf":1.0},"468":{"tf":1.4142135623730951},"472":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"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}},"i":{"d":{"df":6,"docs":{"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":2,"docs":{"381":{"tf":1.0},"383":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"208":{"tf":1.0},"23":{"tf":1.0},"383":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":2.0}}}}},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":14,"docs":{"194":{"tf":1.0},"221":{"tf":1.0},"239":{"tf":1.0},"261":{"tf":1.0},"360":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"442":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"217":{"tf":1.0},"316":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"254":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"196":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"266":{"tf":1.0},"406":{"tf":1.0},"49":{"tf":1.0}}}},"v":{"df":8,"docs":{"163":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":1.0},"24":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"383":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"12":{"tf":1.0},"146":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"239":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.4142135623730951},"3":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.0},"45":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"48":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"387":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":75,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.23606797749979},"161":{"tf":1.4142135623730951},"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},"207":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"403":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"468":{"tf":1.0},"485":{"tf":1.4142135623730951},"495":{"tf":2.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"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}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"162":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"220":{"tf":1.0},"344":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.4142135623730951},"500":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"111":{"tf":1.0}}}}}}}},"df":6,"docs":{"133":{"tf":1.0},"14":{"tf":1.0},"190":{"tf":1.4142135623730951},"378":{"tf":1.0},"410":{"tf":1.0},"437":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.0},"262":{"tf":1.0},"350":{"tf":1.0},"403":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":27,"docs":{"114":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"191":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"429":{"tf":1.0},"485":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"176":{"tf":1.0},"196":{"tf":1.0},"281":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"403":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"189":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"350":{"tf":1.0},"4":{"tf":1.0},"406":{"tf":2.23606797749979},"451":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":16,"docs":{"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"277":{"tf":2.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"369":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"13":{"tf":1.0},"33":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"135":{"tf":1.0},"14":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.0},"291":{"tf":1.0},"403":{"tf":1.0},"415":{"tf":1.4142135623730951},"420":{"tf":1.0},"434":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.0},"489":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1":{"tf":1.0},"406":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"367":{"tf":1.0},"383":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"243":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"455":{"tf":1.0},"507":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"407":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"l":{"df":24,"docs":{"181":{"tf":2.23606797749979},"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.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"296":{"tf":1.0},"34":{"tf":1.0},"451":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"254":{"tf":1.0},"312":{"tf":1.0},"429":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"440":{"tf":1.0},"497":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":17,"docs":{"162":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"22":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"367":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"a":{"df":2,"docs":{"190":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{}},"l":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":6,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"128":{"tf":2.0},"146":{"tf":1.0},"199":{"tf":1.4142135623730951},"471":{"tf":1.0}}}}}}}}},"i":{"c":{"df":4,"docs":{"194":{"tf":4.242640687119285},"349":{"tf":1.0},"426":{"tf":2.0},"429":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"383":{"tf":1.0}}}},"n":{"df":1,"docs":{"123":{"tf":1.0}}},"v":{"df":1,"docs":{"269":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"389":{"tf":1.0},"399":{"tf":1.0}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":58,"docs":{"144":{"tf":2.23606797749979},"145":{"tf":2.0},"146":{"tf":3.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":2.6457513110645907},"150":{"tf":3.3166247903554},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.7320508075688772},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":2.0},"194":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.449489742783178},"206":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"288":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":2.0},"302":{"tf":1.0},"338":{"tf":2.23606797749979},"339":{"tf":1.4142135623730951},"340":{"tf":3.872983346207417},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":3.605551275463989},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.4142135623730951},"402":{"tf":1.0},"403":{"tf":1.7320508075688772},"406":{"tf":1.7320508075688772},"407":{"tf":1.0},"409":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":2.23606797749979},"486":{"tf":1.4142135623730951},"494":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":54,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"146":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"204":{"tf":2.23606797749979},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"328":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"369":{"tf":1.0},"389":{"tf":1.4142135623730951},"396":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":2.23606797749979},"406":{"tf":1.0},"426":{"tf":1.7320508075688772},"429":{"tf":2.0},"445":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"3":{"tf":1.0},"406":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"426":{"tf":1.0},"429":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":23,"docs":{"128":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"196":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"326":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"399":{"tf":1.0},"406":{"tf":1.0},"451":{"tf":1.0},"471":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"191":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"207":{"tf":1.0},"303":{"tf":1.0},"421":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":12,"docs":{"181":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"213":{"tf":1.4142135623730951},"329":{"tf":1.0},"343":{"tf":1.7320508075688772},"369":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"163":{"tf":1.0},"27":{"tf":1.0},"298":{"tf":1.0},"313":{"tf":1.0},"408":{"tf":1.0},"78":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":25,"docs":{"104":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"217":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"343":{"tf":2.8284271247461903},"352":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"26":{"tf":1.0},"343":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"165":{"tf":1.0},"325":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"14":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"343":{"tf":1.7320508075688772},"371":{"tf":1.0},"373":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"406":{"tf":1.0},"407":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}},"u":{"df":1,"docs":{"182":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}},"i":{"df":2,"docs":{"3":{"tf":1.0},"67":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"403":{"tf":1.0},"407":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"134":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"304":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"195":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"235":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"12":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"168":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"217":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"296":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.0},"408":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"497":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"369":{"tf":1.0},"371":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"164":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.7320508075688772},"457":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"122":{"tf":1.0},"185":{"tf":1.7320508075688772},"194":{"tf":1.0},"266":{"tf":1.0},"343":{"tf":2.449489742783178},"369":{"tf":1.0},"430":{"tf":1.0},"485":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"343":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"#":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":33,"docs":{"143":{"tf":1.4142135623730951},"191":{"tf":1.0},"198":{"tf":1.0},"220":{"tf":1.0},"294":{"tf":1.4142135623730951},"304":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.4142135623730951},"384":{"tf":2.23606797749979},"385":{"tf":1.7320508075688772},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"390":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"471":{"tf":1.0},"477":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":2,"docs":{"185":{"tf":1.0},"220":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"173":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"121":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}},"r":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":11,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.449489742783178},"168":{"tf":2.0},"173":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0}}},"df":14,"docs":{"211":{"tf":1.0},"237":{"tf":1.0},"268":{"tf":1.0},"300":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"34":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"407":{"tf":1.0},"43":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"457":{"tf":1.0},"473":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":4,"docs":{"143":{"tf":1.7320508075688772},"253":{"tf":1.0},"451":{"tf":1.0},"455":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"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":12,"docs":{"109":{"tf":1.0},"194":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"3":{"tf":1.0},"407":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"162":{"tf":2.0},"164":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"288":{"tf":1.0},"295":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"498":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.0},"502":{"tf":1.0},"512":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"403":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":1,"docs":{"485":{"tf":1.4142135623730951}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"407":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"383":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"208":{"tf":1.0},"357":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":2.0},"403":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"297":{"tf":1.0},"350":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"409":{"tf":1.0},"47":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"14":{"tf":1.0},"192":{"tf":1.0},"202":{"tf":1.0},"243":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"444":{"tf":1.0},"485":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":3,"docs":{"125":{"tf":1.0},"33":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}},"u":{"d":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":56,"docs":{"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"140":{"tf":1.4142135623730951},"144":{"tf":1.0},"157":{"tf":1.4142135623730951},"181":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.0},"346":{"tf":1.4142135623730951},"349":{"tf":1.0},"362":{"tf":1.4142135623730951},"365":{"tf":1.0},"376":{"tf":1.4142135623730951},"384":{"tf":1.0},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"467":{"tf":1.0},"478":{"tf":1.4142135623730951},"481":{"tf":1.0},"492":{"tf":1.4142135623730951},"495":{"tf":1.0},"510":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":4,"docs":{"240":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"497":{"tf":1.4142135623730951}}},"n":{".":{"1":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"195":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"406":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"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":2,"docs":{"128":{"tf":1.0},"152":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"411":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"163":{"tf":1.0},"168":{"tf":1.0}}}}}}}}},"df":54,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":2.449489742783178},"161":{"tf":1.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":3.0},"17":{"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},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"295":{"tf":2.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.0},"3":{"tf":1.7320508075688772},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"'":{"df":2,"docs":{"164":{"tf":1.0},"168":{"tf":1.0}}},"df":15,"docs":{"12":{"tf":1.0},"160":{"tf":2.6457513110645907},"161":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":2.449489742783178},"164":{"tf":2.6457513110645907},"165":{"tf":2.449489742783178},"166":{"tf":2.23606797749979},"168":{"tf":2.23606797749979},"169":{"tf":2.8284271247461903},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"169":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"194":{"tf":1.7320508075688772},"207":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"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.7320508075688772},"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},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.0},"190":{"tf":2.449489742783178},"191":{"tf":3.1622776601683795},"194":{"tf":3.1622776601683795},"202":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178},"24":{"tf":1.0},"343":{"tf":1.0},"50":{"tf":2.23606797749979}},"e":{"d":{"(":{"a":{"df":1,"docs":{"194":{"tf":2.0}}},"b":{"df":1,"docs":{"194":{"tf":2.449489742783178}}},"c":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"456":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":23,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"48":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":14,"docs":{"134":{"tf":1.0},"143":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"406":{"tf":1.0},"440":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"217":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772}}}}},"r":{"df":2,"docs":{"269":{"tf":1.0},"383":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"169":{"tf":2.8284271247461903},"173":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"216":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"217":{"tf":1.0},"341":{"tf":1.0},"427":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"485":{"tf":1.0},"497":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"47":{"tf":2.0},"48":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.0},"172":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"2":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"184":{"tf":2.0},"189":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}}},"df":11,"docs":{"110":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"387":{"tf":1.0},"459":{"tf":1.0},"473":{"tf":1.0},"56":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"277":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"412":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":48,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"30":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.7320508075688772},"481":{"tf":1.0},"485":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"26":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"194":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"421":{"tf":1.7320508075688772},"453":{"tf":1.0}}}},"df":4,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"135":{"tf":1.0},"99":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":44,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":2.6457513110645907},"124":{"tf":1.7320508075688772},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":2.0},"131":{"tf":1.0},"132":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"168":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"294":{"tf":1.0},"343":{"tf":1.4142135623730951},"380":{"tf":1.0},"387":{"tf":1.0},"406":{"tf":1.4142135623730951},"410":{"tf":1.0},"455":{"tf":1.0},"483":{"tf":2.0},"485":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"238":{"tf":1.4142135623730951},"343":{"tf":1.0},"359":{"tf":1.0},"48":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":8,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"343":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}},"y":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"143":{"tf":2.0},"189":{"tf":1.0},"207":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"391":{"tf":1.0},"485":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"203":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"325":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"340":{"tf":1.0},"485":{"tf":1.0},"512":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":2,"docs":{"220":{"tf":1.4142135623730951},"292":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"185":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"162":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":2.23606797749979},"207":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":3.0},"306":{"tf":1.0},"307":{"tf":1.0},"367":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.0},"444":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"9":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":5,"docs":{"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"61":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"243":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"507":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"408":{"tf":1.0},"72":{"tf":2.23606797749979},"9":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"5":{"8":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":76,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"24":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"3":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":2.23606797749979},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"495":{"tf":2.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0},"52":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"360":{"tf":1.4142135623730951},"383":{"tf":1.0},"406":{"tf":1.0}}}}}},"i":{"c":{"df":6,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772},"362":{"tf":1.0},"505":{"tf":1.0}}},"df":6,"docs":{"189":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"408":{"tf":1.0},"440":{"tf":1.0},"54":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"142":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"129":{"tf":1.4142135623730951},"169":{"tf":1.0},"194":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"298":{"tf":1.0},"307":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"427":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.4142135623730951}}}}},"df":36,"docs":{"104":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.0},"194":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"220":{"tf":1.0},"240":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"295":{"tf":1.0},"344":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"369":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"398":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"471":{"tf":1.7320508075688772},"487":{"tf":1.0},"496":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"500":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":31,"docs":{"115":{"tf":1.0},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.0},"370":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"43":{"tf":1.0},"451":{"tf":1.0},"477":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":1,"docs":{"383":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"133":{"tf":1.4142135623730951},"143":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"193":{"tf":1.0},"194":{"tf":5.5677643628300215},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"293":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"369":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"369":{"tf":1.4142135623730951},"74":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":3.1622776601683795},"486":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"150":{"tf":1.0},"184":{"tf":1.0},"235":{"tf":1.0},"326":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":11,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.4142135623730951},"178":{"tf":1.0},"237":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"132":{"tf":1.4142135623730951},"343":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}},"w":{"df":13,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.0},"190":{"tf":1.4142135623730951},"314":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"415":{"tf":1.0},"454":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"195":{"tf":1.0},"225":{"tf":1.0},"340":{"tf":1.0},"347":{"tf":1.0},"440":{"tf":1.4142135623730951},"444":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}},"df":5,"docs":{"146":{"tf":1.0},"235":{"tf":1.0},"281":{"tf":1.4142135623730951},"403":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":14,"docs":{"14":{"tf":1.0},"146":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"253":{"tf":1.0},"268":{"tf":1.0},"29":{"tf":1.0},"383":{"tf":2.449489742783178},"401":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.0},"408":{"tf":1.0},"429":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"165":{"tf":1.0},"298":{"tf":1.0},"340":{"tf":1.0},"381":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"122":{"tf":1.0},"164":{"tf":1.0},"235":{"tf":1.4142135623730951},"357":{"tf":1.0},"399":{"tf":1.0},"450":{"tf":1.0},"51":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"123":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"26":{"tf":1.0},"312":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.4142135623730951},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"512":{"tf":1.0},"98":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"168":{"tf":1.0},"185":{"tf":1.4142135623730951},"200":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"184":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.23606797749979}}}}},"df":3,"docs":{"184":{"tf":1.4142135623730951},"406":{"tf":2.0},"407":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":5,"docs":{"414":{"tf":2.0},"416":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"83":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"151":{"tf":1.0},"47":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"156":{"tf":1.0},"485":{"tf":1.0},"95":{"tf":1.0}}}}},"d":{"df":4,"docs":{"193":{"tf":1.0},"23":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"102":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"194":{"tf":3.0},"32":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.7320508075688772},"369":{"tf":1.0},"373":{"tf":1.0},"442":{"tf":1.0},"48":{"tf":1.0},"490":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"190":{"tf":1.4142135623730951},"194":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"(":{"3":{"2":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}},"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":2,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"122":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"176":{"tf":1.0},"18":{"tf":1.4142135623730951}}}},"b":{"df":8,"docs":{"161":{"tf":1.0},"164":{"tf":2.6457513110645907},"166":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"99":{"tf":1.4142135623730951}},"s":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"'":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":17,"docs":{"384":{"tf":2.23606797749979},"385":{"tf":1.7320508075688772},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"384":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"14":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.7320508075688772},"36":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":71,"docs":{"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"146":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"182":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":3.1622776601683795},"193":{"tf":2.23606797749979},"194":{"tf":3.1622776601683795},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"348":{"tf":1.0},"367":{"tf":2.0},"369":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":2.449489742783178},"387":{"tf":1.0},"389":{"tf":2.0},"39":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.7320508075688772},"403":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":1.4142135623730951},"440":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":2.23606797749979},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"47":{"tf":3.872983346207417},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":2.6457513110645907},"500":{"tf":5.196152422706632},"51":{"tf":1.7320508075688772},"512":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"399":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":6,"docs":{"168":{"tf":1.0},"200":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"296":{"tf":1.0},"351":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"b":{"df":4,"docs":{"194":{"tf":3.0},"349":{"tf":1.0},"426":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"239":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"217":{"tf":1.4142135623730951},"220":{"tf":2.6457513110645907},"221":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"369":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":20,"docs":{"233":{"tf":2.23606797749979},"234":{"tf":1.0},"235":{"tf":2.8284271247461903},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.449489742783178},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"122":{"tf":1.0}},"h":{"df":29,"docs":{"111":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"204":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"51":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"296":{"tf":1.0},"340":{"tf":1.0}}}}},"df":8,"docs":{"194":{"tf":1.7320508075688772},"369":{"tf":1.0},"371":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"485":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"132":{"tf":1.4142135623730951},"369":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":13,"docs":{"114":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"296":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.4142135623730951},"421":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"491":{"tf":1.0},"512":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"486":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"297":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"253":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"380":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"205":{"tf":1.0}}}},"df":2,"docs":{"351":{"tf":1.0},"353":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"340":{"tf":2.449489742783178},"343":{"tf":5.5677643628300215},"347":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"486":{"tf":1.0},"500":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"182":{"tf":1.4142135623730951},"200":{"tf":1.0},"220":{"tf":1.4142135623730951},"262":{"tf":1.0},"400":{"tf":1.0},"403":{"tf":1.4142135623730951},"410":{"tf":1.0},"497":{"tf":1.4142135623730951},"5":{"tf":1.0},"501":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"5":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"2":{"2":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"179":{"tf":1.0},"393":{"tf":1.0},"434":{"tf":1.0},"440":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"400":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"193":{"tf":3.1622776601683795},"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}},"df":28,"docs":{"189":{"tf":3.0},"190":{"tf":3.4641016151377544},"191":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.23606797749979},"349":{"tf":2.23606797749979},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"132":{"tf":1.0},"281":{"tf":1.0},"385":{"tf":1.0},"471":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"387":{"tf":1.0},"466":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":5,"docs":{"379":{"tf":2.23606797749979},"380":{"tf":1.7320508075688772},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":3.0}}}},"y":{"df":2,"docs":{"171":{"tf":1.0},"185":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"383":{"tf":1.0},"406":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"483":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"238":{"tf":1.0},"239":{"tf":2.0},"328":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"340":{"tf":1.0},"343":{"tf":4.47213595499958},"369":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"454":{"tf":1.0},"466":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"s":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"51":{"tf":1.0},"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":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"241":{"tf":1.0},"243":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"110":{"tf":1.4142135623730951},"294":{"tf":1.0},"406":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":46,"docs":{"102":{"tf":1.7320508075688772},"131":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"194":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.7320508075688772},"266":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"325":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":2.449489742783178},"347":{"tf":1.4142135623730951},"367":{"tf":1.0},"391":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"445":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":2,"docs":{"191":{"tf":1.0},"453":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"191":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"132":{"tf":1.0},"343":{"tf":1.0},"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"298":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":3.7416573867739413},"220":{"tf":2.6457513110645907},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"23":{"tf":2.0},"292":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":25,"docs":{"109":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.4142135623730951},"185":{"tf":1.0},"495":{"tf":2.449489742783178},"496":{"tf":2.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":3.1622776601683795},"501":{"tf":2.23606797749979},"502":{"tf":2.6457513110645907},"503":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":2.0},"506":{"tf":1.0},"507":{"tf":2.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":2.23606797749979}}}},"c":{"df":6,"docs":{"251":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"164":{"tf":1.0},"189":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"182":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"182":{"tf":1.0},"186":{"tf":1.0},"351":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"115":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0},"371":{"tf":1.0},"98":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"101":{"tf":1.0},"156":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"281":{"tf":1.0},"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":45,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"43":{"tf":1.0},"449":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"47":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"50":{"tf":1.0},"503":{"tf":1.0},"58":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"168":{"tf":1.4142135623730951},"367":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"400":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0},"485":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"133":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"392":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"217":{"tf":2.0},"218":{"tf":1.0},"220":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"269":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"168":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"190":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"403":{"tf":1.0},"47":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"505":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"403":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"179":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"18":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0}}},"df":139,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":2.23606797749979},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":2.0},"186":{"tf":1.0},"189":{"tf":4.47213595499958},"190":{"tf":2.6457513110645907},"191":{"tf":2.6457513110645907},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"200":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":3.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"234":{"tf":1.0},"235":{"tf":3.3166247903554},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":2.0},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":2.0},"294":{"tf":2.0},"295":{"tf":2.8284271247461903},"296":{"tf":2.449489742783178},"297":{"tf":3.1622776601683795},"298":{"tf":2.0},"299":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"351":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":1.7320508075688772},"371":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.4142135623730951},"427":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.7320508075688772},"469":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"471":{"tf":1.0},"48":{"tf":2.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"495":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":3.0},"503":{"tf":2.0},"51":{"tf":2.0},"512":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0},"350":{"tf":1.0},"407":{"tf":1.0},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"83":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"190":{"tf":1.0},"487":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":106,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"161":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"326":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"347":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":1.0},"371":{"tf":1.0},"385":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"389":{"tf":1.0},"391":{"tf":1.0},"399":{"tf":1.0},"403":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"416":{"tf":2.0},"417":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"457":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"477":{"tf":1.0},"485":{"tf":2.0},"489":{"tf":1.0},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"220":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"205":{"tf":1.0},"207":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"412":{"tf":1.0},"425":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"194":{"tf":1.7320508075688772},"426":{"tf":1.7320508075688772},"429":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":16,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":2.23606797749979},"367":{"tf":1.0},"393":{"tf":1.4142135623730951},"43":{"tf":1.0},"451":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"457":{"tf":2.0},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"260":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"343":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"369":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"369":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"369":{"tf":2.449489742783178}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"12":{"tf":1.0},"207":{"tf":1.0},"316":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"149":{"tf":1.0},"179":{"tf":1.0},"314":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"238":{"tf":1.0},"295":{"tf":1.0},"357":{"tf":1.0},"406":{"tf":1.0},"48":{"tf":1.0},"497":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"132":{"tf":2.0}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":30,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"123":{"tf":2.6457513110645907},"124":{"tf":1.7320508075688772},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":2.449489742783178},"130":{"tf":3.0},"131":{"tf":2.449489742783178},"132":{"tf":4.58257569495584},"133":{"tf":2.23606797749979},"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.4142135623730951},"143":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.7320508075688772}}}}}}}}}}}}},"i":{"df":1,"docs":{"280":{"tf":1.0}},"r":{"c":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{},"s":{"[":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"164":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"455":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":3.7416573867739413},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"483":{"tf":1.0},"487":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"31":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"164":{"tf":1.0},"172":{"tf":1.0}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"146":{"tf":1.0},"376":{"tf":1.0}}},"r":{"df":12,"docs":{"178":{"tf":1.0},"196":{"tf":1.0},"251":{"tf":1.0},"345":{"tf":1.0},"383":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"427":{"tf":1.0},"457":{"tf":1.0},"487":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"414":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":47,"docs":{"133":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"248":{"tf":1.0},"303":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"365":{"tf":2.0},"366":{"tf":1.4142135623730951},"367":{"tf":2.6457513110645907},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"441":{"tf":1.0},"481":{"tf":2.23606797749979},"482":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"485":{"tf":2.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.7320508075688772},"491":{"tf":2.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"60":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"485":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"132":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"169":{"tf":1.0},"312":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.4142135623730951},"403":{"tf":1.4142135623730951},"501":{"tf":1.0}},"r":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"241":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"395":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"32":{"tf":1.0}}},"df":41,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":2.449489742783178},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"23":{"tf":1.4142135623730951},"255":{"tf":1.0},"282":{"tf":1.0},"326":{"tf":1.7320508075688772},"33":{"tf":2.0},"343":{"tf":1.7320508075688772},"345":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.4142135623730951},"370":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"450":{"tf":1.7320508075688772},"451":{"tf":2.0},"453":{"tf":1.4142135623730951},"454":{"tf":2.449489742783178},"455":{"tf":2.449489742783178},"456":{"tf":1.0},"457":{"tf":2.23606797749979},"458":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":2.449489742783178},"7":{"tf":2.23606797749979},"80":{"tf":1.0},"9":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"293":{"tf":1.4142135623730951},"450":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"l":{"d":{"df":10,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":25,"docs":{"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"215":{"tf":2.23606797749979},"216":{"tf":1.7320508075688772},"217":{"tf":4.0},"218":{"tf":2.23606797749979},"219":{"tf":1.0},"220":{"tf":3.1622776601683795},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":31,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"249":{"tf":2.449489742783178},"250":{"tf":2.6457513110645907},"251":{"tf":2.6457513110645907},"252":{"tf":1.0},"253":{"tf":2.23606797749979},"254":{"tf":3.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":2.6457513110645907},"258":{"tf":1.0},"259":{"tf":1.0},"269":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"3":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"262":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.4142135623730951},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"254":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.4142135623730951},"391":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"133":{"tf":1.0},"406":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"t":{"df":6,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"189":{"tf":1.0},"253":{"tf":1.4142135623730951},"310":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"168":{"tf":1.0},"290":{"tf":1.4142135623730951},"343":{"tf":1.0},"367":{"tf":1.0},"403":{"tf":1.0},"427":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":13,"docs":{"109":{"tf":1.4142135623730951},"164":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"253":{"tf":1.0},"3":{"tf":1.0},"383":{"tf":1.0},"424":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":3,"docs":{"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"<":{"df":0,"docs":{},"u":{"3":{"2":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"*":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{")":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"328":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":12,"docs":{"173":{"tf":1.0},"190":{"tf":1.0},"280":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"409":{"tf":1.0},"453":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"168":{"tf":1.0},"367":{"tf":1.0}}}}}}},"t":{"df":85,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"116":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"178":{"tf":2.23606797749979},"181":{"tf":1.0},"196":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"201":{"tf":1.0},"210":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.7320508075688772},"260":{"tf":1.0},"273":{"tf":1.7320508075688772},"277":{"tf":1.0},"284":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"340":{"tf":1.0},"365":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"451":{"tf":1.0},"460":{"tf":1.4142135623730951},"463":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"485":{"tf":1.0},"488":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"512":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}},"t":{"df":3,"docs":{"217":{"tf":1.4142135623730951},"226":{"tf":1.0},"431":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"146":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.4142135623730951},"172":{"tf":1.0},"343":{"tf":2.0},"485":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":2,"docs":{"290":{"tf":1.0},"386":{"tf":1.0}}}}}},"t":{"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"130":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"326":{"tf":1.0},"440":{"tf":1.0},"457":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"x":{"df":12,"docs":{"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"297":{"tf":1.4142135623730951},"34":{"tf":1.0},"403":{"tf":1.4142135623730951},"407":{"tf":1.0},"429":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"393":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"134":{"tf":1.0},"297":{"tf":1.7320508075688772},"329":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"503":{"tf":1.0}}},"df":1,"docs":{"237":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"168":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.0},"295":{"tf":1.4142135623730951}}},"s":{"df":3,"docs":{"162":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"25":{"tf":1.0},"499":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"502":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"131":{"tf":1.0},"165":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":2.0},"50":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"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":{"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":1,"docs":{"328":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"128":{"tf":1.7320508075688772},"191":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0}}}}},"v":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"11":{"tf":1.0},"440":{"tf":1.0},"481":{"tf":2.23606797749979},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"197":{"tf":1.0},"211":{"tf":1.0},"237":{"tf":1.0},"270":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"383":{"tf":1.0},"459":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"11":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"362":{"tf":1.0},"500":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"135":{"tf":1.0},"197":{"tf":1.4142135623730951},"406":{"tf":1.0},"444":{"tf":1.0},"459":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}},"i":{"d":{"df":2,"docs":{"298":{"tf":1.0},"351":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"169":{"tf":1.0},"454":{"tf":1.4142135623730951},"457":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":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":15,"docs":{"133":{"tf":1.0},"194":{"tf":1.0},"208":{"tf":1.0},"251":{"tf":1.4142135623730951},"295":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":1.0},"360":{"tf":1.4142135623730951},"414":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"47":{"tf":3.0},"500":{"tf":1.0},"501":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"416":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"412":{"tf":2.23606797749979},"413":{"tf":1.4142135623730951},"414":{"tf":2.6457513110645907},"415":{"tf":1.0},"416":{"tf":2.0},"417":{"tf":1.4142135623730951},"418":{"tf":2.23606797749979},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":2.449489742783178},"424":{"tf":1.0},"43":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"235":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"325":{"tf":1.0},"497":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":51,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"133":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"487":{"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.4142135623730951},"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},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"235":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"225":{"tf":1.0},"360":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":24,"docs":{"10":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"143":{"tf":1.0},"159":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"310":{"tf":1.0},"344":{"tf":1.4142135623730951},"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"383":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"449":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"429":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"239":{"tf":1.4142135623730951},"279":{"tf":1.0},"296":{"tf":1.0},"31":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"243":{"tf":1.0},"3":{"tf":1.0},"344":{"tf":1.0},"454":{"tf":1.4142135623730951},"507":{"tf":1.0},"6":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"471":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"298":{"tf":1.0}},"t":{"df":4,"docs":{"299":{"tf":1.0},"356":{"tf":1.0},"37":{"tf":1.0},"440":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"115":{"tf":1.0},"163":{"tf":1.0},"254":{"tf":1.0},"343":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":12,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"280":{"tf":1.0},"351":{"tf":1.0},"403":{"tf":1.0},"440":{"tf":1.0},"72":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"403":{"tf":1.0},"482":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"209":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":3.1622776601683795},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"47":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":12,"docs":{"124":{"tf":1.0},"146":{"tf":1.0},"164":{"tf":1.4142135623730951},"189":{"tf":1.0},"282":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":1,"docs":{"351":{"tf":1.0}}}}},"u":{"df":8,"docs":{"22":{"tf":1.0},"222":{"tf":1.0},"280":{"tf":1.0},"310":{"tf":1.0},"340":{"tf":1.0},"368":{"tf":1.4142135623730951},"406":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"160":{"tf":3.4641016151377544},"161":{"tf":2.0},"162":{"tf":2.6457513110645907},"163":{"tf":2.8284271247461903},"164":{"tf":2.23606797749979},"165":{"tf":2.449489742783178},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"168":{"tf":3.7416573867739413},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":2.449489742783178},"173":{"tf":2.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"403":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"204":{"tf":1.0},"30":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"194":{"tf":1.7320508075688772},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"241":{"tf":1.0},"279":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":2.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"469":{"tf":1.0},"485":{"tf":1.0},"505":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"237":{"tf":1.0},"348":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}},"t":{"df":4,"docs":{"23":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"471":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"437":{"tf":1.0},"51":{"tf":1.0}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"146":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"292":{"tf":1.0},"425":{"tf":2.23606797749979},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"429":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}}}}},"n":{"c":{"df":2,"docs":{"147":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"343":{"tf":2.0},"347":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"189":{"tf":1.0},"194":{"tf":1.4142135623730951}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"384":{"tf":1.0},"385":{"tf":1.0},"389":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"131":{"tf":2.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}},"df":56,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":2.6457513110645907},"164":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":2.0},"189":{"tf":3.3166247903554},"190":{"tf":3.1622776601683795},"191":{"tf":4.123105625617661},"192":{"tf":1.7320508075688772},"193":{"tf":3.0},"194":{"tf":5.656854249492381},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"296":{"tf":2.449489742783178},"299":{"tf":1.0},"350":{"tf":2.0},"356":{"tf":2.0},"357":{"tf":2.23606797749979},"359":{"tf":2.23606797749979},"360":{"tf":1.0},"384":{"tf":2.23606797749979},"385":{"tf":1.7320508075688772},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":3.0},"407":{"tf":1.0},"447":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"131":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":2.0},"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"134":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"191":{"tf":1.0},"194":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"165":{"tf":1.0}}},"df":8,"docs":{"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"173":{"tf":1.0},"180":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"193":{"tf":2.449489742783178},"357":{"tf":1.0},"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":67,"docs":{"181":{"tf":2.6457513110645907},"182":{"tf":1.4142135623730951},"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":6.324555320336759},"190":{"tf":4.69041575982343},"191":{"tf":4.242640687119285},"192":{"tf":3.605551275463989},"193":{"tf":3.3166247903554},"194":{"tf":3.0},"195":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":2.8284271247461903},"200":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":2.23606797749979},"350":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"379":{"tf":2.23606797749979},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":3.605551275463989},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":2.0},"406":{"tf":2.6457513110645907},"407":{"tf":1.7320508075688772},"408":{"tf":1.4142135623730951},"409":{"tf":1.7320508075688772},"451":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"487":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"115":{"tf":1.0},"360":{"tf":1.0},"440":{"tf":1.0},"459":{"tf":1.0},"473":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"152":{"tf":1.0},"294":{"tf":1.0},"444":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"403":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"132":{"tf":1.0},"191":{"tf":1.4142135623730951},"217":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"12":{"tf":1.0},"173":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"314":{"tf":1.0},"329":{"tf":1.0},"347":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"450":{"tf":2.0},"451":{"tf":1.0},"454":{"tf":1.0},"466":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"343":{"tf":3.3166247903554},"347":{"tf":1.4142135623730951},"406":{"tf":1.0}},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"309":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"456":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"190":{"tf":1.0},"223":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"371":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"281":{"tf":1.0},"72":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"281":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"129":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"29":{"tf":1.0},"343":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"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":{}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"189":{"tf":2.6457513110645907},"191":{"tf":1.7320508075688772},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"217":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":8,"docs":{"133":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"174":{"tf":1.0},"25":{"tf":1.0},"392":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.6457513110645907},"292":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"192":{"tf":1.4142135623730951},"383":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"471":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}},"u":{"df":2,"docs":{"189":{"tf":1.0},"240":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"102":{"tf":1.0},"13":{"tf":1.7320508075688772},"22":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":67,"docs":{"1":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"194":{"tf":2.0},"2":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"280":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.4142135623730951},"391":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":2.449489742783178},"51":{"tf":1.0},"512":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":2.449489742783178},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"s":{"df":1,"docs":{"407":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":7,"docs":{"190":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"154":{"tf":1.0},"164":{"tf":1.0},"54":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"133":{"tf":1.0},"58":{"tf":1.0}}}}},"d":{"a":{"df":4,"docs":{"164":{"tf":1.7320508075688772},"166":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"400":{"tf":1.0}}},"df":4,"docs":{"310":{"tf":1.0},"312":{"tf":2.449489742783178},"313":{"tf":1.7320508075688772},"314":{"tf":1.0}}},"o":{"df":1,"docs":{"70":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"434":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"512":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":31,"docs":{"124":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":2.0},"132":{"tf":1.7320508075688772},"137":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"18":{"tf":1.0},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"239":{"tf":1.0},"266":{"tf":1.0},"297":{"tf":1.0},"32":{"tf":1.7320508075688772},"343":{"tf":4.795831523312719},"347":{"tf":1.0},"391":{"tf":1.0},"42":{"tf":2.23606797749979},"421":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"455":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.4142135623730951},"497":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":2.0},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"190":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":6,"docs":{"164":{"tf":1.4142135623730951},"184":{"tf":1.0},"193":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"483":{"tf":1.0}}}},"df":2,"docs":{"194":{"tf":1.4142135623730951},"357":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"194":{"tf":1.0},"343":{"tf":2.0},"386":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"269":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"d":{"df":8,"docs":{"131":{"tf":1.0},"151":{"tf":1.0},"251":{"tf":1.0},"269":{"tf":1.4142135623730951},"381":{"tf":1.0},"440":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"122":{"tf":1.0},"150":{"tf":1.0}}}},"o":{"d":{"df":14,"docs":{"102":{"tf":2.0},"108":{"tf":1.7320508075688772},"122":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"187":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"471":{"tf":1.0},"485":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"137":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":2.0},"199":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"340":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"162":{"tf":1.0},"189":{"tf":1.4142135623730951},"194":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.4142135623730951},"310":{"tf":1.0},"325":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"156":{"tf":1.4142135623730951},"241":{"tf":1.0},"262":{"tf":1.0},"369":{"tf":2.23606797749979},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"+":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"163":{"tf":1.4142135623730951}}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"163":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0}}}}}},"df":2,"docs":{"163":{"tf":2.0},"168":{"tf":1.0}},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"193":{"tf":1.7320508075688772},"208":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"32":{"tf":1.4142135623730951},"325":{"tf":1.0},"355":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"485":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"7":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"11":{"tf":1.0},"243":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"429":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"429":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"425":{"tf":2.23606797749979},"426":{"tf":3.3166247903554},"427":{"tf":2.449489742783178},"428":{"tf":1.0},"429":{"tf":5.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":2.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"186":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"458":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"170":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"360":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"450":{"tf":2.0},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.7320508075688772},"455":{"tf":2.0},"457":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"297":{"tf":1.0},"39":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772}}}}},"t":{"df":4,"docs":{"190":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"131":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"27":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"0":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"1":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":2.0}}},"df":0,"docs":{}},"df":38,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"12":{"tf":1.7320508075688772},"13":{"tf":2.0},"14":{"tf":2.6457513110645907},"15":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"266":{"tf":1.0},"297":{"tf":1.7320508075688772},"3":{"tf":2.8284271247461903},"4":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.3166247903554},"455":{"tf":1.0},"457":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":2.8284271247461903},"7":{"tf":2.6457513110645907},"8":{"tf":2.449489742783178},"9":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":7,"docs":{"133":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"378":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"192":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"440":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"266":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"458":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":19,"docs":{"4":{"tf":1.0},"429":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"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},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"85":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"190":{"tf":1.0},"369":{"tf":1.7320508075688772},"406":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":26,"docs":{"107":{"tf":1.0},"131":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.7320508075688772},"292":{"tf":1.0},"301":{"tf":1.0},"343":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"505":{"tf":1.0},"72":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"467":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":2.0},"103":{"tf":1.0},"107":{"tf":1.0},"47":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":32,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"24":{"tf":1.0},"269":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"35":{"tf":1.0},"401":{"tf":2.0},"402":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"42":{"tf":1.0},"483":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":16,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"223":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"406":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"208":{"tf":1.0},"72":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.4142135623730951},"181":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.4142135623730951},"281":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"164":{"tf":1.0},"262":{"tf":1.0},"343":{"tf":1.0},"371":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"185":{"tf":1.0},"212":{"tf":1.0},"239":{"tf":1.4142135623730951},"269":{"tf":1.0},"340":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":2.0},"454":{"tf":1.0},"48":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":2,"docs":{"152":{"tf":1.0},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":44,"docs":{"120":{"tf":1.4142135623730951},"126":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"177":{"tf":1.7320508075688772},"187":{"tf":1.0},"205":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"251":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.7320508075688772},"291":{"tf":1.4142135623730951},"30":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"327":{"tf":1.0},"351":{"tf":1.0},"387":{"tf":1.0},"396":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"421":{"tf":1.0},"445":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"352":{"tf":1.0}}}},"c":{"df":6,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"t":{"df":22,"docs":{"233":{"tf":2.449489742783178},"234":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"495":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"502":{"tf":2.449489742783178},"503":{"tf":2.0},"505":{"tf":1.0},"507":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"369":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"104":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"164":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"297":{"tf":1.0},"345":{"tf":1.4142135623730951},"486":{"tf":1.0}},"i":{"df":3,"docs":{"262":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"107":{"tf":2.0},"111":{"tf":2.449489742783178},"113":{"tf":1.0},"47":{"tf":1.4142135623730951},"51":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":2.6457513110645907}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"m":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":50,"docs":{"1":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"198":{"tf":1.4142135623730951},"201":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"307":{"tf":1.4142135623730951},"324":{"tf":1.0},"337":{"tf":1.4142135623730951},"365":{"tf":1.0},"378":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.0},"400":{"tf":1.4142135623730951},"412":{"tf":1.0},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.4142135623730951},"448":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"512":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"171":{"tf":1.0},"280":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.0},"390":{"tf":1.0},"421":{"tf":1.4142135623730951},"483":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"149":{"tf":1.0},"156":{"tf":1.4142135623730951},"241":{"tf":1.0},"442":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"407":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"429":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"483":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"106":{"tf":1.0},"190":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"369":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}},"v":{"df":5,"docs":{"234":{"tf":1.0},"240":{"tf":1.0},"262":{"tf":1.0},"496":{"tf":1.0},"512":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"495":{"tf":1.0}},"i":{"df":22,"docs":{"234":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"403":{"tf":1.0},"407":{"tf":1.0},"495":{"tf":2.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"134":{"tf":1.0},"159":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"369":{"tf":1.0},"381":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.4142135623730951},"410":{"tf":1.0},"423":{"tf":1.4142135623730951},"437":{"tf":1.0},"447":{"tf":1.0},"464":{"tf":1.0},"5":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"241":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"191":{"tf":3.0},"262":{"tf":1.0},"266":{"tf":1.0},"294":{"tf":1.0},"447":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"132":{"tf":1.0},"134":{"tf":1.7320508075688772},"143":{"tf":2.6457513110645907},"451":{"tf":1.0},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"290":{"tf":1.0},"35":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"191":{"tf":1.0},"234":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"403":{"tf":1.0},"407":{"tf":1.0},"52":{"tf":1.0}}},"s":{"df":2,"docs":{"3":{"tf":1.0},"5":{"tf":1.0}}},"t":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"190":{"tf":1.0},"35":{"tf":1.0},"367":{"tf":1.0},"512":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"187":{"tf":1.0},"404":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"189":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951}}}},"o":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"410":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"472":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"34":{"tf":1.0}}},"df":12,"docs":{"109":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"253":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"343":{"tf":1.0},"402":{"tf":1.0},"45":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":9,"docs":{"162":{"tf":1.0},"191":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"262":{"tf":1.0},"340":{"tf":1.0},"391":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"135":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"343":{"tf":2.6457513110645907},"369":{"tf":2.0},"370":{"tf":1.0},"406":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"466":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"511":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"235":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"194":{"tf":1.0},"236":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"485":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"110":{"tf":1.0},"122":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"293":{"tf":1.0},"315":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.4142135623730951},"507":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":36,"docs":{"11":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.7320508075688772},"207":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"3":{"tf":1.7320508075688772},"313":{"tf":1.0},"316":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"8":{"tf":2.8284271247461903},"9":{"tf":2.8284271247461903}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"193":{"tf":1.0},"360":{"tf":1.0}},"i":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":8,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"241":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"189":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"293":{"tf":1.0},"501":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"357":{"tf":1.4142135623730951},"406":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":59,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.7320508075688772},"160":{"tf":1.0},"173":{"tf":1.4142135623730951},"181":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"222":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.4142135623730951},"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"260":{"tf":1.0},"269":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.4142135623730951},"288":{"tf":1.0},"299":{"tf":1.4142135623730951},"308":{"tf":1.0},"316":{"tf":1.4142135623730951},"324":{"tf":1.0},"329":{"tf":1.4142135623730951},"338":{"tf":1.0},"345":{"tf":1.4142135623730951},"349":{"tf":1.0},"361":{"tf":1.4142135623730951},"365":{"tf":1.0},"370":{"tf":1.4142135623730951},"384":{"tf":1.0},"392":{"tf":1.4142135623730951},"401":{"tf":1.0},"409":{"tf":1.4142135623730951},"412":{"tf":1.0},"417":{"tf":1.7320508075688772},"425":{"tf":1.0},"430":{"tf":1.7320508075688772},"448":{"tf":1.0},"458":{"tf":1.4142135623730951},"467":{"tf":1.0},"472":{"tf":1.4142135623730951},"481":{"tf":1.0},"486":{"tf":1.4142135623730951},"495":{"tf":1.0},"504":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"437":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"297":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}},"n":{"df":1,"docs":{"402":{"tf":1.0}}},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"132":{"tf":1.0},"298":{"tf":1.0},"307":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"113":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"241":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"367":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"190":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":2.23606797749979},"413":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"424":{"tf":1.0},"454":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"296":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":2.0},"407":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":24,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"3":{"tf":1.0},"349":{"tf":2.23606797749979},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"407":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":9,"docs":{"163":{"tf":1.4142135623730951},"164":{"tf":2.0},"189":{"tf":1.0},"220":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"303":{"tf":1.0},"407":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0}}}},"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":42,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":2.6457513110645907},"207":{"tf":1.0},"217":{"tf":1.7320508075688772},"24":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"310":{"tf":1.0},"325":{"tf":1.7320508075688772},"326":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"42":{"tf":1.0},"427":{"tf":1.0},"454":{"tf":1.0},"47":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"48":{"tf":2.0},"485":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"163":{"tf":1.0},"200":{"tf":1.0},"371":{"tf":1.0},"406":{"tf":1.4142135623730951},"483":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"162":{"tf":1.0}},"i":{"df":5,"docs":{"132":{"tf":1.0},"143":{"tf":1.4142135623730951},"262":{"tf":1.0},"473":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"159":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"407":{"tf":1.0},"490":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"239":{"tf":1.0},"280":{"tf":1.0},"371":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"497":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"505":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":12,"docs":{"14":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"229":{"tf":1.0},"3":{"tf":1.0},"381":{"tf":1.0},"409":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":26,"docs":{"118":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"166":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"434":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"48":{"tf":1.0},"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":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.0}},"g":{"df":1,"docs":{"193":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"409":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"168":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":2.8284271247461903},"193":{"tf":1.0},"194":{"tf":1.0},"270":{"tf":1.0},"383":{"tf":1.4142135623730951},"403":{"tf":1.0},"450":{"tf":1.4142135623730951},"47":{"tf":1.0},"485":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"193":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":15,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"296":{"tf":1.0},"340":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"427":{"tf":1.0},"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"164":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"217":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"343":{"tf":1.0},"403":{"tf":1.0},"47":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"58":{"tf":1.0}}}}}}},"m":{"b":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"47":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"297":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"163":{"tf":1.0},"407":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":4,"docs":{"43":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"429":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"194":{"tf":2.0},"343":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"122":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"139":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"161":{"tf":1.0},"164":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"179":{"tf":1.0},"189":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.4142135623730951},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"500":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"133":{"tf":1.4142135623730951},"190":{"tf":1.0},"202":{"tf":1.0},"477":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":19,"docs":{"102":{"tf":2.0},"104":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":2.0},"33":{"tf":1.7320508075688772},"343":{"tf":2.0},"47":{"tf":1.4142135623730951},"471":{"tf":2.23606797749979},"51":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"277":{"tf":2.449489742783178},"278":{"tf":2.0},"279":{"tf":2.0},"280":{"tf":2.23606797749979},"281":{"tf":2.6457513110645907},"282":{"tf":2.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"287":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"281":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"24":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"3":{"tf":1.0},"369":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"106":{"tf":1.4142135623730951},"128":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":2.6457513110645907},"193":{"tf":2.449489742783178},"194":{"tf":4.898979485566356},"326":{"tf":1.0},"358":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"427":{"tf":1.0},"476":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"296":{"tf":1.0},"383":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"238":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":18,"docs":{"110":{"tf":1.0},"269":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"391":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"407":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"173":{"tf":1.0},"187":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.0},"404":{"tf":1.0},"60":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.7320508075688772},"19":{"tf":1.0},"22":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"129":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"218":{"tf":1.0},"247":{"tf":1.0},"427":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"511":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":48,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.7320508075688772},"223":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"397":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"456":{"tf":1.7320508075688772},"459":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":15,"docs":{"125":{"tf":1.0},"191":{"tf":2.0},"241":{"tf":1.0},"247":{"tf":1.0},"298":{"tf":1.4142135623730951},"343":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"406":{"tf":1.0},"429":{"tf":1.0},"455":{"tf":1.4142135623730951},"486":{"tf":1.0},"511":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"415":{"tf":1.0},"98":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.4142135623730951},"2":{"tf":1.0},"241":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.4142135623730951},"408":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"102":{"tf":1.0},"104":{"tf":2.6457513110645907},"132":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":1.0},"369":{"tf":1.0},"385":{"tf":1.0},"389":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"149":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":3,"docs":{"164":{"tf":1.0},"189":{"tf":1.0},"202":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"'":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":4.123105625617661},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":23,"docs":{"132":{"tf":1.0},"191":{"tf":3.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"240":{"tf":1.0},"325":{"tf":1.0},"343":{"tf":2.0},"347":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"407":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"191":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"369":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"486":{"tf":1.0}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"294":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":2,"docs":{"297":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"51":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"51":{"tf":2.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"123":{"tf":1.0},"128":{"tf":2.23606797749979},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"137":{"tf":1.0}}}}}},"c":{"2":{"0":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"7":{"2":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":78,"docs":{"1":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"181":{"tf":1.0},"19":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"201":{"tf":1.0},"210":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"308":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"396":{"tf":1.7320508075688772},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"472":{"tf":1.0},"474":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"488":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"133":{"tf":1.0},"150":{"tf":1.0},"343":{"tf":4.242640687119285},"487":{"tf":1.0},"497":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"407":{"tf":1.0},"450":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"243":{"tf":1.0},"294":{"tf":1.0},"34":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.0},"433":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"169":{"tf":1.0},"18":{"tf":1.0},"293":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"406":{"tf":1.0},"408":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"t":{"c":{"df":5,"docs":{"235":{"tf":1.0},"298":{"tf":1.0},"369":{"tf":1.0},"423":{"tf":1.0},"434":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"164":{"tf":1.0}}},"df":5,"docs":{"164":{"tf":1.4142135623730951},"166":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"66":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"353":{"tf":1.0}}}}},"n":{"df":14,"docs":{"130":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"307":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.6457513110645907},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.4142135623730951},"48":{"tf":1.0},"491":{"tf":1.4142135623730951},"500":{"tf":1.0},"512":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"125":{"tf":1.0}}}},"t":{"df":4,"docs":{"143":{"tf":1.0},"296":{"tf":1.0},"429":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951}},"u":{"df":5,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"217":{"tf":1.4142135623730951},"387":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"494":{"tf":1.0},"499":{"tf":1.0}}}}}}},"m":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":21,"docs":{"160":{"tf":2.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}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":2.23606797749979},"169":{"tf":2.449489742783178},"171":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"295":{"tf":1.0},"54":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"351":{"tf":1.0},"367":{"tf":1.0},"400":{"tf":1.0},"440":{"tf":1.0},"47":{"tf":1.0},"500":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":36,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"220":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"269":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.4142135623730951},"349":{"tf":1.0},"360":{"tf":2.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"406":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"163":{"tf":1.0},"191":{"tf":1.0},"32":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"367":{"tf":1.7320508075688772},"414":{"tf":1.0},"499":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"343":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"290":{"tf":1.4142135623730951},"343":{"tf":3.7416573867739413},"386":{"tf":1.7320508075688772},"393":{"tf":1.0},"398":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"156":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"403":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":47,"docs":{"150":{"tf":1.7320508075688772},"164":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"227":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"365":{"tf":1.0},"367":{"tf":2.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"376":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.7320508075688772},"450":{"tf":1.0},"483":{"tf":1.0},"505":{"tf":1.0},"512":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"328":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"395":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"489":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"182":{"tf":1.0},"186":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"192":{"tf":1.0},"217":{"tf":1.0},"262":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"114":{"tf":1.0},"163":{"tf":1.0},"19":{"tf":1.0},"272":{"tf":1.0},"293":{"tf":1.0},"397":{"tf":1.0},"429":{"tf":1.0},"70":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"408":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"189":{"tf":1.0},"191":{"tf":1.0},"268":{"tf":1.0}},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"190":{"tf":1.0},"310":{"tf":1.0},"328":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"n":{"df":67,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"123":{"tf":1.0},"127":{"tf":1.4142135623730951},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"160":{"tf":1.0},"167":{"tf":1.4142135623730951},"181":{"tf":1.0},"188":{"tf":1.4142135623730951},"201":{"tf":1.0},"206":{"tf":1.4142135623730951},"215":{"tf":1.0},"220":{"tf":1.4142135623730951},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.4142135623730951},"288":{"tf":1.0},"292":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"338":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"365":{"tf":1.0},"369":{"tf":1.4142135623730951},"379":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.0},"388":{"tf":1.4142135623730951},"401":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.4142135623730951},"425":{"tf":1.0},"429":{"tf":1.4142135623730951},"438":{"tf":1.0},"442":{"tf":1.4142135623730951},"448":{"tf":1.0},"453":{"tf":1.4142135623730951},"467":{"tf":1.0},"471":{"tf":1.4142135623730951},"481":{"tf":1.0},"485":{"tf":1.4142135623730951},"495":{"tf":1.0},"499":{"tf":1.4142135623730951},"505":{"tf":1.0},"6":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"133":{"tf":1.0},"208":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"32":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"21":{"tf":1.0},"291":{"tf":1.0},"41":{"tf":1.0},"450":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":1,"docs":{"409":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"12":{"tf":1.0},"357":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"146":{"tf":1.0},"149":{"tf":3.0},"150":{"tf":1.4142135623730951},"471":{"tf":1.0}}}},"s":{"df":13,"docs":{"164":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"301":{"tf":1.0},"344":{"tf":1.0},"403":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"454":{"tf":1.0},"476":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"343":{"tf":1.7320508075688772},"410":{"tf":1.0},"415":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"340":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"*":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"4":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"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":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"340":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"347":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"347":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"164":{"tf":1.0},"234":{"tf":1.0},"408":{"tf":1.0},"496":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"107":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":1.0},"169":{"tf":1.0},"274":{"tf":1.0},"396":{"tf":1.0},"410":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"131":{"tf":1.0},"146":{"tf":1.0},"197":{"tf":1.0},"281":{"tf":1.0},"383":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"328":{"tf":1.0}}}},"df":8,"docs":{"122":{"tf":1.0},"235":{"tf":1.4142135623730951},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"433":{"tf":1.0},"468":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"164":{"tf":1.0},"168":{"tf":1.0},"359":{"tf":1.4142135623730951},"408":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.7320508075688772},"133":{"tf":1.0},"166":{"tf":1.0},"389":{"tf":1.4142135623730951},"429":{"tf":1.0},"440":{"tf":1.7320508075688772},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.4641016151377544},"85":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":2.0}},"i":{"c":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"389":{"tf":1.7320508075688772},"399":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"f":{"+":{"1":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"217":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"186":{"tf":1.4142135623730951},"191":{"tf":1.0},"27":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"217":{"tf":1.0},"297":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":12,"docs":{"193":{"tf":2.6457513110645907},"207":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"477":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":3.1622776601683795},"98":{"tf":1.0}}}}},"r":{"df":4,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"402":{"tf":1.4142135623730951},"407":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"129":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.4142135623730951},"193":{"tf":1.0},"355":{"tf":1.0}}},"s":{"df":3,"docs":{"104":{"tf":1.0},"369":{"tf":2.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"163":{"tf":1.0},"247":{"tf":1.0},"472":{"tf":1.0},"511":{"tf":1.0},"98":{"tf":1.0}}}},"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":4,"docs":{"164":{"tf":1.0},"185":{"tf":1.0},"296":{"tf":1.0},"383":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"186":{"tf":1.0},"296":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"292":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"347":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"125":{"tf":1.0},"391":{"tf":1.0}}}}}}},"df":1,"docs":{"357":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"411":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"240":{"tf":1.0},"370":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":2.0},"139":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"196":{"tf":1.0},"298":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"406":{"tf":1.0},"487":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"192":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.4142135623730951},"253":{"tf":1.0},"427":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}},"df":2,"docs":{"383":{"tf":1.0},"427":{"tf":1.0}},"l":{"df":4,"docs":{"431":{"tf":1.0},"437":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"162":{"tf":1.0},"164":{"tf":1.0},"205":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"0":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"9":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"4":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"df":1,"docs":{"251":{"tf":1.0}}},"df":37,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":2.0},"254":{"tf":2.0},"258":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":2.23606797749979},"309":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"404":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"84":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"132":{"tf":1.0},"383":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"14":{"tf":1.0},"243":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"427":{"tf":1.0},"486":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"104":{"tf":1.4142135623730951},"119":{"tf":1.0},"132":{"tf":1.0},"191":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951},"207":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"32":{"tf":1.0},"369":{"tf":2.0},"48":{"tf":1.0},"501":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"387":{"tf":1.0}}},"l":{"df":4,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.4142135623730951},"48":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"190":{"tf":2.0},"191":{"tf":3.605551275463989},"197":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"48":{"tf":1.4142135623730951},"500":{"tf":2.8284271247461903},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"282":{"tf":1.0}},"i":{"df":3,"docs":{"13":{"tf":1.0},"3":{"tf":1.0},"450":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":16,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"512":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"133":{"tf":1.0},"403":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"343":{"tf":1.0},"407":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}},"t":{"df":2,"docs":{"185":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":28,"docs":{"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"194":{"tf":2.23606797749979},"208":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"297":{"tf":1.4142135623730951},"343":{"tf":1.0},"391":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":2.449489742783178},"471":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"156":{"tf":1.0},"190":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"343":{"tf":2.449489742783178},"50":{"tf":1.0},"99":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"221":{"tf":1.0},"35":{"tf":1.0}}}},"x":{"df":10,"docs":{"131":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"220":{"tf":2.0},"32":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"500":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"369":{"tf":1.0},"485":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"328":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"193":{"tf":1.0},"295":{"tf":1.0},"403":{"tf":1.0},"416":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"296":{"tf":1.0}},"p":{"df":1,"docs":{"357":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"383":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":10,"docs":{"131":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"442":{"tf":1.0},"45":{"tf":2.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"312":{"tf":1.0},"65":{"tf":1.0}},"s":{"df":2,"docs":{"26":{"tf":1.0},"458":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":40,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"162":{"tf":1.0},"169":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"253":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"33":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.0},"383":{"tf":1.4142135623730951},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951},"494":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"389":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"185":{"tf":1.0},"328":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":2.449489742783178},"406":{"tf":1.0},"83":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"430":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"239":{"tf":1.4142135623730951},"240":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"143":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"58":{"tf":2.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}},"t":{"df":14,"docs":{"109":{"tf":1.0},"189":{"tf":1.0},"239":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}}}},"df":16,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"367":{"tf":1.0},"455":{"tf":1.0},"483":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"407":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"193":{"tf":1.0},"48":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"14":{"tf":1.0},"229":{"tf":1.0},"258":{"tf":1.0},"364":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"326":{"tf":1.0},"410":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"197":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0},"61":{"tf":1.0}}}},"df":10,"docs":{"238":{"tf":1.0},"240":{"tf":1.0},"32":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"45":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"501":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"207":{"tf":1.4142135623730951}}}}}},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"164":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"189":{"tf":1.4142135623730951},"401":{"tf":1.0},"403":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":4,"docs":{"164":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"83":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":7,"docs":{"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"266":{"tf":1.0},"297":{"tf":1.0},"340":{"tf":1.7320508075688772},"437":{"tf":1.0},"489":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"427":{"tf":1.0},"454":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"383":{"tf":1.0},"454":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"190":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"146":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"269":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0}}}}},"l":{"df":15,"docs":{"104":{"tf":1.0},"191":{"tf":1.7320508075688772},"204":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"243":{"tf":2.23606797749979},"310":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"33":{"tf":1.0},"367":{"tf":2.23606797749979},"406":{"tf":1.0},"507":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":5,"docs":{"122":{"tf":1.0},"146":{"tf":1.0},"190":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"149":{"tf":3.0},"343":{"tf":7.0},"344":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},"df":76,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":2.449489742783178},"123":{"tf":1.0},"131":{"tf":2.8284271247461903},"133":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"149":{"tf":2.23606797749979},"150":{"tf":1.7320508075688772},"164":{"tf":2.0},"181":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":2.0},"193":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.4142135623730951},"257":{"tf":1.0},"288":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":2.449489742783178},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"3":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"34":{"tf":1.7320508075688772},"340":{"tf":2.0},"343":{"tf":7.3484692283495345},"344":{"tf":2.23606797749979},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":2.0},"356":{"tf":1.4142135623730951},"357":{"tf":2.449489742783178},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"389":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":2.0},"429":{"tf":1.0},"43":{"tf":2.449489742783178},"438":{"tf":2.23606797749979},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":2.449489742783178},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.7320508075688772},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"468":{"tf":1.0},"471":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.4142135623730951},"6":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":2.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"247":{"tf":1.0},"511":{"tf":1.0}}}}}}},"df":9,"docs":{"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"407":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"189":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.0},"383":{"tf":1.0},"401":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.4142135623730951},"83":{"tf":1.0},"9":{"tf":1.7320508075688772},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"186":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"340":{"tf":1.0},"505":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":70,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"168":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.4142135623730951},"201":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"240":{"tf":1.0},"248":{"tf":1.7320508075688772},"260":{"tf":1.0},"276":{"tf":2.0},"277":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.4142135623730951},"316":{"tf":1.0},"324":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":1.0},"348":{"tf":1.7320508075688772},"349":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.4142135623730951},"365":{"tf":1.0},"378":{"tf":1.4142135623730951},"384":{"tf":1.0},"396":{"tf":1.0},"400":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"412":{"tf":1.0},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"437":{"tf":1.4142135623730951},"448":{"tf":1.0},"452":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"512":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"g":{"a":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":2,"docs":{"165":{"tf":1.0},"168":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"369":{"tf":1.0},"489":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"216":{"tf":1.0},"407":{"tf":1.0}}}},"p":{"df":2,"docs":{"500":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"181":{"tf":1.0},"201":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"437":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"379":{"tf":1.0},"401":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":54,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"125":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.4142135623730951},"253":{"tf":1.0},"257":{"tf":1.7320508075688772},"262":{"tf":1.0},"276":{"tf":1.0},"290":{"tf":1.0},"30":{"tf":1.0},"312":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"380":{"tf":1.0},"383":{"tf":1.0},"42":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"467":{"tf":2.0},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":2.0},"480":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":10,"docs":{"235":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"269":{"tf":1.7320508075688772},"293":{"tf":1.4142135623730951},"297":{"tf":1.0},"47":{"tf":2.8284271247461903},"497":{"tf":1.4142135623730951},"500":{"tf":2.0},"502":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"239":{"tf":1.0},"240":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"454":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"134":{"tf":1.0},"143":{"tf":2.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"457":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"b":{"df":3,"docs":{"343":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"235":{"tf":1.0},"253":{"tf":1.0},"466":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"298":{"tf":1.0},"328":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.0},"367":{"tf":1.0},"497":{"tf":1.0},"70":{"tf":1.0}},"n":{"df":30,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"132":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.7320508075688772},"207":{"tf":1.0},"217":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":2.8284271247461903},"347":{"tf":1.4142135623730951},"352":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"485":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"149":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"194":{"tf":1.0},"261":{"tf":1.0},"310":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0}}}},"df":10,"docs":{"132":{"tf":1.0},"168":{"tf":1.0},"200":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"340":{"tf":1.0},"437":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"485":{"tf":1.0}},"e":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"o":{"d":{"df":9,"docs":{"217":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"292":{"tf":1.0},"340":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.0},"511":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"325":{"tf":1.0},"500":{"tf":1.0}}}}}},"v":{"1":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"350":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"168":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"297":{"tf":3.0},"298":{"tf":2.23606797749979},"306":{"tf":1.0},"307":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"451":{"tf":1.0}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"a":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"133":{"tf":1.0},"406":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"437":{"tf":1.4142135623730951},"459":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"191":{"tf":1.0},"207":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"427":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":13,"docs":{"129":{"tf":1.0},"197":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"290":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"298":{"tf":1.0},"367":{"tf":1.0}}}},"w":{"df":2,"docs":{"164":{"tf":1.0},"352":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"173":{"tf":1.0},"350":{"tf":1.0},"360":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"189":{"tf":1.0},"217":{"tf":1.0},"290":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"230":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"410":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"194":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":2,"docs":{"217":{"tf":1.0},"297":{"tf":1.0}}},"v":{"df":1,"docs":{"137":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"133":{"tf":1.0},"282":{"tf":1.0},"314":{"tf":1.0}},"l":{"df":10,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"297":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"373":{"tf":1.0},"407":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"163":{"tf":1.0},"386":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"440":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"505":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}},"i":{"df":1,"docs":{"401":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"502":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"502":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"132":{"tf":1.0},"143":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"33":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":2.23606797749979},"44":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"47":{"tf":1.0},"501":{"tf":1.4142135623730951},"72":{"tf":2.0},"95":{"tf":1.0}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":22,"docs":{"132":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"370":{"tf":1.0},"407":{"tf":1.0},"429":{"tf":1.4142135623730951},"456":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"495":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"266":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"495":{"tf":1.0},"500":{"tf":2.23606797749979},"503":{"tf":2.0},"512":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"343":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"343":{"tf":2.23606797749979},"496":{"tf":1.0},"497":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":16,"docs":{"149":{"tf":1.0},"340":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"487":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"238":{"tf":1.0},"346":{"tf":1.0},"501":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"l":{"d":{"df":3,"docs":{"192":{"tf":1.0},"297":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":11,"docs":{"146":{"tf":1.0},"192":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"410":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":2.0}}}}}},"n":{"c":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"143":{"tf":1.0}}},"df":25,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.7320508075688772},"397":{"tf":1.0},"400":{"tf":1.0},"403":{"tf":1.0},"409":{"tf":1.0},"417":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"455":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"326":{"tf":1.0},"328":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":12,"docs":{"164":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"310":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.0},"41":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"472":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"355":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"458":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"220":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"217":{"tf":1.0},"409":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"434":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"397":{"tf":1.0},"512":{"tf":1.0}},"i":{"df":5,"docs":{"164":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.0},"502":{"tf":1.0},"512":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"130":{"tf":1.0},"150":{"tf":1.7320508075688772},"166":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"125":{"tf":1.0},"166":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"298":{"tf":1.0},"353":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.4142135623730951},"404":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"424":{"tf":1.0},"437":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}},"df":29,"docs":{"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"150":{"tf":1.0},"185":{"tf":1.0},"338":{"tf":2.6457513110645907},"339":{"tf":1.7320508075688772},"340":{"tf":3.1622776601683795},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":5.0990195135927845},"344":{"tf":2.449489742783178},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.7320508075688772},"369":{"tf":1.0},"438":{"tf":2.23606797749979},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":2.0},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.7320508075688772},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"243":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":2.23606797749979},"416":{"tf":2.449489742783178},"423":{"tf":2.0},"507":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"343":{"tf":1.7320508075688772}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"3":{"7":{"7":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"4":{"7":{"5":{"8":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"8":{"5":{"df":2,"docs":{"274":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"3":{"9":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"133":{"tf":1.0},"464":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"494":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"3":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"0":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"368":{"tf":1.0}}},"6":{"df":1,"docs":{"343":{"tf":1.0}}},"7":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"/":{"#":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"9":{"1":{"%":{"a":{"0":{"df":1,"docs":{"485":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"6":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"q":{"?":{"df":0,"docs":{},"t":{"=":{"5":{"2":{"6":{"df":1,"docs":{"437":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":47,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":2.23606797749979},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"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},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"396":{"tf":1.0},"409":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"i":{"'":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"247":{"tf":1.0},"511":{"tf":1.0}}}},".":{"df":8,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"343":{"tf":1.4142135623730951},"371":{"tf":1.0}}}},"3":{"2":{"df":2,"docs":{"149":{"tf":2.8284271247461903},"343":{"tf":9.273618495495704}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"343":{"tf":8.246211251235321},"344":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":10,"docs":{"104":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"343":{"tf":1.4142135623730951},"369":{"tf":1.0},"454":{"tf":1.4142135623730951},"468":{"tf":1.0},"472":{"tf":1.0}},"e":{"a":{"df":5,"docs":{"13":{"tf":1.0},"340":{"tf":1.0},"410":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0}},"l":{"df":8,"docs":{"185":{"tf":1.0},"193":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"24":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"297":{"tf":2.6457513110645907},"298":{"tf":1.0},"307":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.1622776601683795},"39":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":16,"docs":{"102":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"194":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.0},"286":{"tf":1.0},"343":{"tf":2.23606797749979},"42":{"tf":1.0},"431":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"111":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"132":{"tf":1.0},"151":{"tf":1.0},"369":{"tf":1.0},"503":{"tf":1.0}}}}}},"i":{"df":3,"docs":{"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0}},"i":{"df":3,"docs":{"312":{"tf":2.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"407":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"359":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"195":{"tf":1.0}}}}},"o":{"df":1,"docs":{"94":{"tf":1.0}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":23,"docs":{"100":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.7320508075688772},"154":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"347":{"tf":1.4142135623730951},"408":{"tf":1.0},"440":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"459":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":89,"docs":{"0":{"tf":1.0},"100":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"295":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"42":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"430":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.4142135623730951},"500":{"tf":2.23606797749979},"501":{"tf":2.449489742783178},"502":{"tf":1.7320508075688772},"503":{"tf":2.0},"505":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"441":{"tf":1.0},"442":{"tf":1.0},"470":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}}}}},"i":{"c":{"df":2,"docs":{"14":{"tf":1.0},"373":{"tf":1.0}}},"df":2,"docs":{"184":{"tf":1.0},"47":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"152":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"453":{"tf":1.0}}}}}}},"df":22,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":2.0},"155":{"tf":1.0},"180":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"303":{"tf":1.0},"369":{"tf":1.4142135623730951},"381":{"tf":1.0},"383":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"47":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"168":{"tf":1.0}},"s":{"df":4,"docs":{"130":{"tf":1.0},"185":{"tf":1.0},"326":{"tf":1.0},"370":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":52,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":2.23606797749979},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"365":{"tf":2.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"58":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"407":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"247":{"tf":1.0},"511":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"220":{"tf":1.0},"310":{"tf":1.0},"383":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"192":{"tf":1.0},"406":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":2.0},"163":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"191":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"230":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"268":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"426":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"500":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":2.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":6,"docs":{"111":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"309":{"tf":1.0},"383":{"tf":1.7320508075688772}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"383":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":43,"docs":{"113":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.0},"243":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.7320508075688772},"383":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"409":{"tf":1.0},"414":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"454":{"tf":1.0},"466":{"tf":1.4142135623730951},"507":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"194":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.7320508075688772},"343":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"143":{"tf":1.0},"163":{"tf":1.0},"322":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"192":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.4142135623730951},"47":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":3.605551275463989},"143":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"207":{"tf":1.0},"434":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"i":{"c":{"df":17,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"240":{"tf":1.0},"254":{"tf":1.7320508075688772},"326":{"tf":1.0},"343":{"tf":3.605551275463989},"369":{"tf":1.0},"383":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":14,"docs":{"104":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.7320508075688772},"2":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"328":{"tf":1.0},"369":{"tf":1.0},"407":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}},"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":2,"docs":{"340":{"tf":1.0},"409":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":1.4142135623730951},"369":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"220":{"tf":1.0},"383":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"383":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"381":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":3,"docs":{"104":{"tf":1.0},"287":{"tf":1.0},"297":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"143":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"194":{"tf":1.7320508075688772},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"297":{"tf":1.0},"456":{"tf":1.0},"497":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"200":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"347":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":2.0},"392":{"tf":1.0},"398":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"389":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":2.0},"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.0},"455":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"485":{"tf":1.0},"66":{"tf":2.0}}}}},"k":{"!":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"160":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"165":{"tf":2.6457513110645907},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"185":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"33":{"tf":1.0},"343":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":2.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}},"i":{"d":{"df":19,"docs":{"144":{"tf":2.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.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"66":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"150":{"tf":1.4142135623730951},"257":{"tf":1.0},"26":{"tf":1.0},"406":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"181":{"tf":1.0},"189":{"tf":4.0},"190":{"tf":2.0},"191":{"tf":2.449489742783178},"192":{"tf":2.6457513110645907},"193":{"tf":2.8284271247461903},"194":{"tf":2.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"194":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"194":{"tf":2.449489742783178}}}}}}}},"t":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.0},"240":{"tf":1.0},"313":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.3166247903554},"383":{"tf":1.0},"399":{"tf":1.0},"407":{"tf":1.4142135623730951},"454":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"189":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"294":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"383":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"442":{"tf":1.0}},"r":{"df":12,"docs":{"149":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"27":{"tf":1.0},"300":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"n":{"d":{"df":6,"docs":{"193":{"tf":1.4142135623730951},"25":{"tf":1.0},"276":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"128":{"tf":1.0},"41":{"tf":1.0}}},"t":{"df":1,"docs":{"407":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"164":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"401":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"415":{"tf":1.7320508075688772},"498":{"tf":1.0},"5":{"tf":1.0}}}}},"f":{"a":{"c":{"df":33,"docs":{"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":2.23606797749979},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":2.6457513110645907},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"344":{"tf":1.0},"396":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.0},"476":{"tf":1.0},"64":{"tf":2.449489742783178},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"391":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}},"l":{"a":{"c":{"df":3,"docs":{"190":{"tf":2.0},"191":{"tf":1.0},"194":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"190":{"tf":2.0},"191":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.7320508075688772},"193":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"345":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"32":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"185":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"483":{"tf":1.0},"96":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"186":{"tf":1.0},"454":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":42,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"329":{"tf":1.4142135623730951},"34":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":2.0},"383":{"tf":1.0},"385":{"tf":1.4142135623730951},"403":{"tf":2.0},"438":{"tf":2.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"477":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"t":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"250":{"tf":1.0},"293":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"262":{"tf":1.4142135623730951},"269":{"tf":1.0},"343":{"tf":2.23606797749979},"369":{"tf":1.4142135623730951},"400":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"357":{"tf":1.0},"383":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"185":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"390":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":11,"docs":{"122":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"401":{"tf":1.0},"449":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"217":{"tf":1.0},"220":{"tf":2.449489742783178},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":9,"docs":{"244":{"tf":1.0},"245":{"tf":1.0},"330":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"374":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"241":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"457":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"295":{"tf":1.0},"337":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}},"df":0,"docs":{}}},"df":22,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"262":{"tf":1.4142135623730951},"266":{"tf":1.0},"297":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"383":{"tf":1.0},"398":{"tf":1.0},"429":{"tf":1.0},"447":{"tf":1.0},"466":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"t":{"'":{"df":16,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"297":{"tf":1.0},"370":{"tf":1.4142135623730951},"383":{"tf":1.7320508075688772},"403":{"tf":1.0},"41":{"tf":1.0},"453":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":11,"docs":{"191":{"tf":1.7320508075688772},"209":{"tf":1.0},"3":{"tf":1.0},"326":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"366":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":2.0},"42":{"tf":2.449489742783178},"440":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"r":{"df":3,"docs":{"185":{"tf":1.0},"243":{"tf":1.0},"507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":16,"docs":{"184":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"407":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"df":3,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0}}},"x":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}}},"z":{"df":1,"docs":{"370":{"tf":1.0}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"278":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"230":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"215":{"tf":1.0},"249":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"220":{"tf":1.0},"253":{"tf":1.0},"281":{"tf":1.0},"314":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"n":{"a":{"df":2,"docs":{"379":{"tf":1.0},"401":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"121":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"512":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"193":{"tf":1.4142135623730951},"369":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"201":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"349":{"tf":1.0},"384":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"150":{"tf":1.0},"500":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}}},"k":{"+":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"238":{"tf":1.7320508075688772},"241":{"tf":1.0},"243":{"tf":1.0},"501":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":3,"docs":{"129":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"132":{"tf":1.0},"152":{"tf":1.0},"194":{"tf":1.0},"281":{"tf":1.0},"369":{"tf":1.0},"445":{"tf":1.4142135623730951},"499":{"tf":1.0},"51":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"143":{"tf":1.0},"176":{"tf":1.0},"241":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"343":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"343":{"tf":3.605551275463989}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":32,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.7320508075688772},"238":{"tf":2.449489742783178},"241":{"tf":2.0},"243":{"tf":1.4142135623730951},"262":{"tf":1.0},"343":{"tf":5.916079783099616},"367":{"tf":2.8284271247461903},"369":{"tf":4.47213595499958},"371":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":2.0},"472":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":2.6457513110645907},"483":{"tf":1.7320508075688772},"501":{"tf":2.8284271247461903},"505":{"tf":2.0},"507":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"53":{"tf":2.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}},"b":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"243":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"149":{"tf":1.0},"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"132":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"179":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"132":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"206":{"tf":1.0},"241":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"343":{"tf":2.0},"35":{"tf":1.0},"407":{"tf":1.0},"45":{"tf":1.0},"483":{"tf":1.4142135623730951},"50":{"tf":1.0},"64":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"233":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"365":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"m":{"df":5,"docs":{"169":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":3.0},"9":{"tf":3.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"a":{"'":{"df":2,"docs":{"297":{"tf":1.0},"298":{"tf":1.0}}},"df":33,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"239":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":3.0},"3":{"tf":1.4142135623730951},"307":{"tf":1.0},"367":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"ö":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"467":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"1":{"7":{"6":{"2":{"df":1,"docs":{"485":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"164":{"tf":1.0}}},"2":{"df":1,"docs":{"179":{"tf":1.0}}},"3":{"4":{"0":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"5":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"c":{"1":{"5":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"173":{"tf":1.0},"220":{"tf":1.0},"262":{"tf":1.0},"343":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"146":{"tf":1.4142135623730951},"155":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":17,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"168":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"216":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"297":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"404":{"tf":1.0},"450":{"tf":1.0},"487":{"tf":1.0},"505":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"109":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"298":{"tf":1.0},"343":{"tf":1.4142135623730951},"409":{"tf":1.0},"427":{"tf":1.4142135623730951},"486":{"tf":1.0},"50":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"390":{"tf":1.0},"391":{"tf":1.7320508075688772},"393":{"tf":1.0},"395":{"tf":1.0},"399":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"df":13,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"369":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"455":{"tf":1.0},"503":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}},"n":{"c":{"df":2,"docs":{"193":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":9,"docs":{"134":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.0},"407":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"421":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"293":{"tf":1.0}}},"df":4,"docs":{"106":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"485":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"129":{"tf":1.0},"195":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"123":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"357":{"tf":1.0}},"e":{"a":{"d":{"df":18,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"178":{"tf":1.0},"191":{"tf":1.0},"235":{"tf":1.0},"359":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":1.4142135623730951},"440":{"tf":1.0},"458":{"tf":1.0},"505":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"193":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"190":{"tf":1.7320508075688772},"193":{"tf":2.23606797749979},"199":{"tf":1.0},"403":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":4,"docs":{"102":{"tf":1.0},"106":{"tf":2.0},"108":{"tf":1.0},"109":{"tf":1.0}}},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}},"s":{"df":14,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"262":{"tf":2.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"408":{"tf":2.449489742783178}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"189":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0}}}},"b":{"1":{"2":{"8":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"328":{"tf":1.0}}},"2":{"df":1,"docs":{"328":{"tf":1.0}}},"3":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"415":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"357":{"tf":1.0}}},"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"190":{"tf":1.0},"25":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.7320508075688772},"359":{"tf":1.4142135623730951},"406":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"60":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":2.0},"152":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"294":{"tf":1.0}}},"df":1,"docs":{"471":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":8,"docs":{"128":{"tf":1.0},"190":{"tf":1.0},"239":{"tf":1.7320508075688772},"325":{"tf":1.0},"328":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"357":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"185":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"209":{"tf":1.7320508075688772},"217":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"297":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"357":{"tf":1.0}}},"df":2,"docs":{"357":{"tf":1.0},"383":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"194":{"tf":1.4142135623730951},"198":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"327":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"472":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"130":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"359":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":3,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":1,"docs":{"406":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":21,"docs":{"235":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"303":{"tf":1.0},"365":{"tf":2.0},"366":{"tf":1.4142135623730951},"367":{"tf":2.449489742783178},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"441":{"tf":1.0},"455":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":1.0}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"217":{"tf":1.0},"254":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":31,"docs":{"129":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":3.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"257":{"tf":1.0},"298":{"tf":1.0},"343":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"373":{"tf":1.0},"440":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.0},"505":{"tf":1.0},"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"164":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"df":6,"docs":{"357":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"98":{"tf":1.0}}},"k":{"df":9,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"501":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"149":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"254":{"tf":1.0},"292":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":2.23606797749979},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"47":{"tf":1.0},"497":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":7,"docs":{"131":{"tf":1.0},"224":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"303":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951}}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":5,"docs":{"133":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"482":{"tf":1.0},"485":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":19,"docs":{"120":{"tf":1.0},"223":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"343":{"tf":3.1622776601683795},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":4.58257569495584},"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}}}},"df":0,"docs":{},"k":{"df":20,"docs":{"184":{"tf":1.0},"260":{"tf":2.23606797749979},"261":{"tf":2.23606797749979},"262":{"tf":1.7320508075688772},"263":{"tf":1.7320508075688772},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":2.449489742783178},"267":{"tf":3.3166247903554},"268":{"tf":1.7320508075688772},"269":{"tf":2.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"297":{"tf":2.0},"391":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":3,"docs":{"133":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}},"i":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":24,"docs":{"146":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.0},"257":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"400":{"tf":1.4142135623730951},"429":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"468":{"tf":1.4142135623730951},"471":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":23,"docs":{"108":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"217":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.0},"343":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"497":{"tf":1.0},"505":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"208":{"tf":1.0},"262":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"344":{"tf":1.4142135623730951},"371":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"485":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"423":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"414":{"tf":1.0},"471":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"150":{"tf":1.0}}}}},"p":{"df":1,"docs":{"328":{"tf":1.0}}},"s":{"df":2,"docs":{"237":{"tf":1.0},"456":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"429":{"tf":1.0}}},"t":{"df":1,"docs":{"185":{"tf":1.0}}}},"t":{"df":1,"docs":{"237":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"df":13,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"165":{"tf":1.0},"194":{"tf":1.4142135623730951},"204":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"327":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"314":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"4":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"450":{"tf":1.0},"483":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"184":{"tf":1.0},"290":{"tf":1.0},"343":{"tf":3.4641016151377544},"440":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":14,"docs":{"128":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.0},"341":{"tf":1.0},"427":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"115":{"tf":1.0},"125":{"tf":1.0},"187":{"tf":1.0},"369":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0},"503":{"tf":2.0},"61":{"tf":1.0},"83":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"282":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":25,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.4142135623730951},"2":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"297":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"375":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"235":{"tf":1.7320508075688772},"255":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"387":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"168":{"tf":1.4142135623730951},"180":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0},"408":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":62,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"151":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"310":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":2.23606797749979},"371":{"tf":1.0},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.0},"440":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"466":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"371":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.4142135623730951},"185":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.7320508075688772},"225":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":2.23606797749979},"263":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"251":{"tf":1.0},"253":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.0},"237":{"tf":1.0},"328":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":24,"docs":{"100":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.7320508075688772},"165":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.4142135623730951},"369":{"tf":1.0},"403":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"253":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":2.0},"201":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"391":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"<":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":10,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"133":{"tf":2.6457513110645907},"162":{"tf":1.0},"169":{"tf":2.0},"174":{"tf":1.0},"194":{"tf":1.4142135623730951},"24":{"tf":1.0},"35":{"tf":1.0},"457":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}}}}},"k":{"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"14":{"tf":1.0},"185":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"402":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"402":{"tf":1.0},"406":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}},"df":30,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"401":{"tf":2.6457513110645907},"402":{"tf":2.0},"403":{"tf":3.3166247903554},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":3.872983346207417},"407":{"tf":2.8284271247461903},"408":{"tf":2.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"190":{"tf":2.0},"191":{"tf":3.872983346207417},"194":{"tf":6.6332495807108}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"164":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"1":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.4142135623730951},"201":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"248":{"tf":1.4142135623730951},"260":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"307":{"tf":1.4142135623730951},"324":{"tf":1.0},"337":{"tf":1.4142135623730951},"365":{"tf":1.0},"378":{"tf":1.4142135623730951},"384":{"tf":1.0},"400":{"tf":1.4142135623730951},"412":{"tf":1.0},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"437":{"tf":1.4142135623730951},"448":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"512":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"x":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"357":{"tf":1.0},"407":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"290":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":20,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"239":{"tf":1.0},"314":{"tf":1.4142135623730951},"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"403":{"tf":1.0},"406":{"tf":2.0},"407":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}},"y":{"b":{"df":5,"docs":{"151":{"tf":1.0},"155":{"tf":1.0},"243":{"tf":1.0},"270":{"tf":1.0},"507":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":3.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"98":{"tf":1.0}},"m":{"df":17,"docs":{"384":{"tf":2.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.7320508075688772},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":25,"docs":{"131":{"tf":1.0},"146":{"tf":1.0},"164":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"455":{"tf":1.4142135623730951},"471":{"tf":1.0},"500":{"tf":1.0}},"t":{"df":3,"docs":{"238":{"tf":1.0},"313":{"tf":1.0},"501":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"347":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":70,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.4142135623730951},"14":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":2.8284271247461903},"243":{"tf":1.0},"260":{"tf":2.23606797749979},"261":{"tf":1.4142135623730951},"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.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"310":{"tf":1.0},"351":{"tf":1.4142135623730951},"376":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"401":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.0},"495":{"tf":2.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":2.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"217":{"tf":1.0},"313":{"tf":1.0},"407":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"243":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"253":{"tf":2.449489742783178},"254":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":2.0},"339":{"tf":1.0},"340":{"tf":2.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":5.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"371":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":2.23606797749979},"485":{"tf":3.3166247903554},"486":{"tf":1.7320508075688772},"494":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"47":{"tf":1.0},"499":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}}},"g":{"df":8,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"250":{"tf":1.0},"398":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"k":{"df":0,"docs":{},"l":{"df":11,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"164":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"110":{"tf":1.0},"143":{"tf":1.0},"178":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":2.449489742783178},"207":{"tf":2.6457513110645907},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"239":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":2.6457513110645907},"72":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"102":{"tf":3.0},"103":{"tf":2.23606797749979},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":2.23606797749979},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"95":{"tf":2.449489742783178},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.8284271247461903},"99":{"tf":3.3166247903554}},"v":{"1":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":2,"docs":{"114":{"tf":1.0},"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":1,"docs":{"310":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"182":{"tf":1.4142135623730951},"23":{"tf":1.0},"343":{"tf":1.4142135623730951},"38":{"tf":1.0},"51":{"tf":3.1622776601683795},"52":{"tf":1.4142135623730951},"53":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"b":{"df":4,"docs":{"369":{"tf":1.0},"370":{"tf":2.23606797749979},"483":{"tf":1.0},"485":{"tf":1.0}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"168":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"196":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":2.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.23606797749979},"296":{"tf":1.7320508075688772},"297":{"tf":2.8284271247461903},"298":{"tf":2.0},"384":{"tf":1.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"391":{"tf":2.23606797749979},"396":{"tf":1.0},"398":{"tf":1.0},"453":{"tf":1.0},"512":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":2.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"499":{"tf":1.0}}},"df":1,"docs":{"414":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":29,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"186":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"395":{"tf":1.0},"399":{"tf":1.0},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"288":{"tf":1.0},"290":{"tf":1.0},"296":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"1":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"416":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}},"u":{"df":1,"docs":{"500":{"tf":1.0}},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"407":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":5,"docs":{"130":{"tf":1.0},"165":{"tf":1.0},"194":{"tf":1.0},"224":{"tf":1.0},"369":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"349":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":1.0},"134":{"tf":1.0},"18":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":2,"docs":{"454":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":2,"docs":{"391":{"tf":1.0},"399":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"11":{"tf":1.0}}},"df":45,"docs":{"1":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":2.0},"12":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.4142135623730951},"200":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":2.0},"352":{"tf":1.0},"355":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":2.0},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"440":{"tf":1.0},"448":{"tf":2.23606797749979},"449":{"tf":1.7320508075688772},"450":{"tf":2.8284271247461903},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":2.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":32,"docs":{"1":{"tf":1.0},"257":{"tf":1.0},"412":{"tf":2.23606797749979},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":2.23606797749979},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}},"i":{"df":16,"docs":{"130":{"tf":1.0},"14":{"tf":1.4142135623730951},"223":{"tf":1.0},"235":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"334":{"tf":1.4142135623730951},"343":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":1.0},"486":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"150":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"398":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.0},"240":{"tf":1.0},"455":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"164":{"tf":1.0},"18":{"tf":1.0},"195":{"tf":1.0},"440":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"173":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.0},"296":{"tf":1.0},"408":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"309":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"163":{"tf":1.0},"169":{"tf":1.7320508075688772},"173":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":67,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"185":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"2":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.4142135623730951},"276":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"326":{"tf":1.0},"329":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"359":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"369":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"396":{"tf":1.0},"399":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.0},"408":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.4142135623730951},"450":{"tf":2.0},"47":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"117":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":68,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"288":{"tf":1.0},"290":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"328":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.4142135623730951},"349":{"tf":1.0},"351":{"tf":1.4142135623730951},"365":{"tf":1.0},"367":{"tf":1.4142135623730951},"379":{"tf":1.0},"381":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.7320508075688772},"401":{"tf":1.0},"403":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.4142135623730951},"425":{"tf":1.0},"427":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":1.4142135623730951},"467":{"tf":1.0},"469":{"tf":1.4142135623730951},"481":{"tf":1.0},"483":{"tf":1.4142135623730951},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":17,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"157":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"340":{"tf":1.0},"400":{"tf":1.4142135623730951},"408":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"343":{"tf":2.449489742783178}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"14":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"293":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":1.0},"409":{"tf":1.0},"45":{"tf":1.0},"503":{"tf":1.0},"511":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":9,"docs":{"146":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"190":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.4142135623730951},"386":{"tf":1.0},"429":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"326":{"tf":1.0}}}},"i":{"df":3,"docs":{"190":{"tf":1.0},"193":{"tf":1.0},"406":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"297":{"tf":1.0}}}},"df":1,"docs":{"44":{"tf":1.0}}}}},"n":{"+":{"1":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"/":{"3":{"df":3,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0}}},"8":{"df":1,"docs":{"33":{"tf":1.0}}},"a":{"df":8,"docs":{"317":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"393":{"tf":1.4142135623730951},"422":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0}}},"df":0,"docs":{}},"=":{"3":{"df":0,"docs":{},"f":{"+":{"df":0,"docs":{},"k":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"3":{"df":2,"docs":{"128":{"tf":1.0},"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"125":{"tf":1.0},"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"125":{"tf":1.0},"143":{"tf":1.0},"340":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"149":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":1.0},"295":{"tf":1.0},"343":{"tf":2.23606797749979},"344":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.4142135623730951},"399":{"tf":1.7320508075688772},"502":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"13":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"483":{"tf":2.23606797749979},"512":{"tf":1.0},"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"165":{"tf":1.0},"172":{"tf":1.0},"383":{"tf":1.4142135623730951},"406":{"tf":1.0},"98":{"tf":1.0}}}}},"y":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"129":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":2.23606797749979},"357":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"165":{"tf":1.0},"189":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"137":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"216":{"tf":1.0},"26":{"tf":1.0},"289":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"407":{"tf":1.0},"454":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.4142135623730951},"94":{"tf":1.0},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"190":{"tf":1.0},"326":{"tf":1.0}}}}}}},"df":3,"docs":{"280":{"tf":1.0},"359":{"tf":1.0},"367":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"406":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":69,"docs":{"11":{"tf":1.4142135623730951},"125":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"217":{"tf":1.7320508075688772},"226":{"tf":1.0},"235":{"tf":2.0},"240":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"290":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"296":{"tf":2.0},"297":{"tf":2.23606797749979},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.7320508075688772},"344":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.4142135623730951},"359":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"411":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"446":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"440":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"178":{"tf":1.0},"243":{"tf":1.0},"347":{"tf":1.0},"489":{"tf":1.0},"507":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"426":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951}}}},"t":{"df":4,"docs":{"197":{"tf":1.0},"383":{"tf":1.0},"430":{"tf":1.0},"489":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"255":{"tf":1.0},"293":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":66,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"2":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":2.0},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":2.0},"254":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.4142135623730951},"326":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":2.23606797749979},"366":{"tf":1.4142135623730951},"367":{"tf":2.23606797749979},"368":{"tf":1.0},"369":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"383":{"tf":1.0},"427":{"tf":2.6457513110645907},"429":{"tf":1.7320508075688772},"437":{"tf":1.0},"459":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":2.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"149":{"tf":1.0},"190":{"tf":1.0},"268":{"tf":1.4142135623730951},"274":{"tf":1.0},"343":{"tf":2.0},"54":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"193":{"tf":1.7320508075688772},"358":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":85,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":2.23606797749979},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"173":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":2.23606797749979},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":2.449489742783178},"251":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":3.605551275463989},"344":{"tf":1.4142135623730951},"346":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"454":{"tf":2.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"469":{"tf":1.0},"473":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"511":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"512":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"235":{"tf":1.0},"343":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"132":{"tf":1.0},"156":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"30":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":2.8284271247461903},"406":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"t":{"df":24,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":2.0},"4":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"369":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"292":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":58,"docs":{"102":{"tf":3.1622776601683795},"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"109":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":2.8284271247461903},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"243":{"tf":2.23606797749979},"297":{"tf":1.4142135623730951},"343":{"tf":1.0},"367":{"tf":2.6457513110645907},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"397":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"447":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":2.23606797749979},"496":{"tf":1.4142135623730951},"497":{"tf":3.605551275463989},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":2.6457513110645907},"501":{"tf":2.23606797749979},"502":{"tf":1.7320508075688772},"503":{"tf":2.0},"504":{"tf":1.0},"505":{"tf":2.0},"506":{"tf":1.0},"507":{"tf":2.449489742783178},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":2.6457513110645907}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"176":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0}}}}},"n":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"146":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"217":{"tf":1.0},"235":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"343":{"tf":2.23606797749979},"406":{"tf":1.0}},"e":{"df":30,"docs":{"150":{"tf":1.4142135623730951},"158":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"231":{"tf":1.0},"246":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"286":{"tf":1.0},"323":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"343":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"504":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"240":{"tf":1.0}}}}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"145":{"tf":1.0},"150":{"tf":1.0},"207":{"tf":1.0},"399":{"tf":1.0}}}},"df":1,"docs":{"11":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"297":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"31":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":40,"docs":{"114":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.7320508075688772},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"371":{"tf":1.0},"383":{"tf":1.0},"392":{"tf":1.0},"406":{"tf":1.4142135623730951},"41":{"tf":1.0},"414":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.0},"457":{"tf":1.0},"466":{"tf":1.0},"51":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}}}}}}}},"i":{"c":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"194":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":15,"docs":{"194":{"tf":1.0},"324":{"tf":2.23606797749979},"325":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":3.0},"329":{"tf":1.7320508075688772},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0}},"i":{"df":2,"docs":{"204":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"v":{"a":{"df":2,"docs":{"421":{"tf":1.0},"434":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"b":{"df":5,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"308":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"146":{"tf":1.0},"164":{"tf":1.4142135623730951},"328":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"375":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0},"485":{"tf":1.0},"98":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"296":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"193":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":50,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.7320508075688772},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"204":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.3166247903554},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"359":{"tf":1.4142135623730951},"366":{"tf":1.0},"369":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"440":{"tf":1.0},"454":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":2.6457513110645907},"483":{"tf":1.0},"50":{"tf":1.4142135623730951},"505":{"tf":1.0},"51":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}},"}":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"d":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"161":{"tf":1.0},"2":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"406":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"487":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"143":{"tf":1.0},"369":{"tf":1.0},"407":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"240":{"tf":1.0},"343":{"tf":1.4142135623730951},"347":{"tf":1.0},"367":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":4,"docs":{"151":{"tf":1.4142135623730951},"154":{"tf":1.0},"220":{"tf":1.0},"340":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}},"i":{"df":2,"docs":{"134":{"tf":1.0},"143":{"tf":2.23606797749979}}}},"r":{"df":7,"docs":{"190":{"tf":1.0},"290":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.4142135623730951},"434":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"33":{"tf":3.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.449489742783178},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"33":{"tf":1.7320508075688772},"42":{"tf":1.0}}}},"o":{"b":{"df":4,"docs":{"425":{"tf":1.0},"438":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":4,"docs":{"309":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"146":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"409":{"tf":1.0},"423":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"294":{"tf":1.0},"297":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":20,"docs":{"13":{"tf":1.0},"154":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"29":{"tf":1.0},"290":{"tf":1.7320508075688772},"3":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":29,"docs":{"100":{"tf":1.7320508075688772},"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.7320508075688772},"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.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"48":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":2.8284271247461903}}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"193":{"tf":2.449489742783178},"357":{"tf":1.4142135623730951},"358":{"tf":1.7320508075688772},"360":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"146":{"tf":1.0},"191":{"tf":1.7320508075688772},"207":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"133":{"tf":1.4142135623730951},"348":{"tf":1.0},"375":{"tf":1.0},"500":{"tf":1.0},"512":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"384":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"262":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":20,"docs":{"125":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"152":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"194":{"tf":1.0},"251":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"347":{"tf":1.0},"367":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":77,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.7320508075688772},"243":{"tf":1.0},"257":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"280":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"310":{"tf":1.0},"312":{"tf":1.0},"324":{"tf":2.23606797749979},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"343":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.4142135623730951},"455":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"186":{"tf":1.0},"194":{"tf":1.0},"235":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"389":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"369":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"185":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"440":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"164":{"tf":1.7320508075688772},"174":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.4142135623730951},"208":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"325":{"tf":1.0},"437":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"16":{"tf":1.0},"293":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0}}}}}},"r":{"df":21,"docs":{"14":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.0},"191":{"tf":2.449489742783178},"193":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"35":{"tf":1.0},"383":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"247":{"tf":1.0},"369":{"tf":1.0},"511":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"307":{"tf":1.0},"406":{"tf":1.0},"453":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":15,"docs":{"118":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.0},"421":{"tf":1.0},"476":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"142":{"tf":1.0}},"t":{"df":2,"docs":{"164":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"194":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"110":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.0},"173":{"tf":1.0},"239":{"tf":1.0},"369":{"tf":2.449489742783178},"381":{"tf":1.0},"383":{"tf":1.4142135623730951},"393":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.4142135623730951},"455":{"tf":1.0},"47":{"tf":1.4142135623730951},"485":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":45,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.7320508075688772},"143":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"268":{"tf":1.0},"279":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.8284271247461903},"35":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"400":{"tf":1.0},"403":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.4142135623730951},"456":{"tf":1.0},"471":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"252":{"tf":1.0},"253":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"162":{"tf":1.0},"191":{"tf":3.1622776601683795},"220":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"297":{"tf":1.0},"326":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"454":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"239":{"tf":1.0},"257":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"102":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"190":{"tf":1.0},"262":{"tf":1.0},"360":{"tf":1.0},"391":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"499":{"tf":1.0},"52":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"383":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"22":{"tf":1.0},"483":{"tf":1.0}}}}},"df":16,"docs":{"114":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"281":{"tf":1.0},"343":{"tf":8.12403840463596},"348":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"31":{"tf":1.0},"383":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"51":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"122":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"343":{"tf":3.4641016151377544},"397":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"184":{"tf":1.0},"383":{"tf":1.4142135623730951},"430":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"80":{"tf":1.0}}}},"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"407":{"tf":1.0}}},"df":0,"docs":{}}},"df":23,"docs":{"12":{"tf":1.0},"129":{"tf":1.0},"154":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"200":{"tf":1.0},"223":{"tf":1.0},"295":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.4142135623730951},"386":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"485":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"440":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":10,"docs":{"114":{"tf":1.7320508075688772},"130":{"tf":1.0},"243":{"tf":1.0},"262":{"tf":1.0},"395":{"tf":1.0},"407":{"tf":1.0},"507":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"131":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"297":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"466":{"tf":1.0}}},"o":{"a":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"181":{"tf":1.0},"189":{"tf":1.4142135623730951},"349":{"tf":1.0},"355":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"189":{"tf":2.0},"190":{"tf":1.7320508075688772},"191":{"tf":2.8284271247461903},"194":{"tf":4.69041575982343},"39":{"tf":1.0},"403":{"tf":1.0},"43":{"tf":1.0},"468":{"tf":1.4142135623730951},"471":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":25,"docs":{"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"467":{"tf":2.23606797749979},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"51":{"tf":2.23606797749979},"53":{"tf":1.0}}}}}}}}}},"y":{"df":1,"docs":{"95":{"tf":1.0}}}},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}}},"0":{"df":1,"docs":{"194":{"tf":1.0}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"357":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":1.0}}}},"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":15,"docs":{"481":{"tf":2.23606797749979},"482":{"tf":1.0},"483":{"tf":2.23606797749979},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"61":{"tf":1.0}}}},"i":{"d":{"df":13,"docs":{"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"253":{"tf":1.0},"383":{"tf":1.7320508075688772},"448":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.7320508075688772},"455":{"tf":1.7320508075688772},"456":{"tf":1.7320508075688772},"457":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"429":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"220":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":49,"docs":{"102":{"tf":1.0},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":2.0},"247":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.7320508075688772},"266":{"tf":1.0},"281":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":2.449489742783178},"3":{"tf":1.0},"304":{"tf":1.0},"313":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"426":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.0},"454":{"tf":1.7320508075688772},"456":{"tf":2.6457513110645907},"457":{"tf":1.0},"511":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"266":{"tf":1.0}}},"(":{"1":{"0":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":95,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":2.6457513110645907},"195":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"233":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"235":{"tf":2.449489742783178},"236":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":2.0},"239":{"tf":2.6457513110645907},"240":{"tf":2.449489742783178},"241":{"tf":2.8284271247461903},"242":{"tf":1.0},"243":{"tf":2.449489742783178},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":2.23606797749979},"261":{"tf":2.8284271247461903},"262":{"tf":4.69041575982343},"263":{"tf":2.8284271247461903},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":4.242640687119285},"267":{"tf":3.4641016151377544},"268":{"tf":2.6457513110645907},"269":{"tf":3.872983346207417},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":3.872983346207417},"298":{"tf":2.23606797749979},"303":{"tf":1.4142135623730951},"353":{"tf":1.0},"387":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":2.6457513110645907},"452":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":3.0},"455":{"tf":3.0},"456":{"tf":1.0},"457":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"485":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"415":{"tf":1.0}}}}},"df":12,"docs":{"133":{"tf":1.0},"194":{"tf":1.4142135623730951},"229":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"30":{"tf":1.0},"448":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":2.0},"457":{"tf":2.0},"66":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"d":{"df":10,"docs":{"164":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"204":{"tf":1.0},"207":{"tf":1.0},"254":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.23606797749979},"457":{"tf":1.4142135623730951},"458":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"129":{"tf":1.0},"177":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"m":{"df":2,"docs":{"149":{"tf":2.449489742783178},"343":{"tf":11.269427669584644}},"e":{"df":0,"docs":{},"t":{"df":21,"docs":{"102":{"tf":1.0},"190":{"tf":1.7320508075688772},"193":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"343":{"tf":3.1622776601683795},"349":{"tf":1.0},"356":{"tf":1.4142135623730951},"360":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.7320508075688772},"416":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":2.0},"471":{"tf":1.0},"48":{"tf":1.7320508075688772},"85":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":2,"docs":{"131":{"tf":1.0},"182":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"309":{"tf":1.0},"310":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"72":{"tf":2.23606797749979}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"187":{"tf":1.4142135623730951},"404":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":2,"docs":{"129":{"tf":1.0},"143":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"370":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}},"t":{"df":24,"docs":{"102":{"tf":1.7320508075688772},"109":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"156":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.0},"33":{"tf":1.0},"400":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"220":{"tf":1.0},"269":{"tf":2.0},"3":{"tf":1.0},"383":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"429":{"tf":2.0},"437":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.7320508075688772},"503":{"tf":2.0},"512":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"125":{"tf":1.0},"14":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"217":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"429":{"tf":1.7320508075688772},"486":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"486":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"132":{"tf":1.0},"303":{"tf":1.0},"450":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"154":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"t":{"df":4,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"5":{"7":{"6":{"0":{"0":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"111":{"tf":1.0},"143":{"tf":1.0},"191":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"314":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0}}}}},"t":{"df":2,"docs":{"207":{"tf":1.0},"369":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"123":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"251":{"tf":1.0},"380":{"tf":1.0},"485":{"tf":2.23606797749979},"486":{"tf":1.7320508075688772},"489":{"tf":1.7320508075688772},"491":{"tf":1.0},"494":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"383":{"tf":1.0},"421":{"tf":1.0},"445":{"tf":1.0},"476":{"tf":1.0},"72":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"172":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":1,"docs":{"454":{"tf":1.0}}}}}}},"df":7,"docs":{"194":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":2.23606797749979},"451":{"tf":1.0}},"e":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"110":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"194":{"tf":1.0},"316":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"454":{"tf":2.0},"462":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"194":{"tf":1.0},"298":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"129":{"tf":1.0},"234":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0},"325":{"tf":1.0},"367":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"512":{"tf":2.0}},"i":{"d":{"df":5,"docs":{"235":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.0},"343":{"tf":1.4142135623730951},"505":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"13":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"395":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":7,"docs":{"219":{"tf":1.0},"236":{"tf":1.0},"295":{"tf":1.4142135623730951},"307":{"tf":1.0},"314":{"tf":1.0},"369":{"tf":1.0},"498":{"tf":1.0}}}}},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{},"s":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"2":{"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":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"185":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"199":{"tf":1.0},"454":{"tf":1.0}}}},"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":35,"docs":{"125":{"tf":1.0},"131":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"369":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"466":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":96,"docs":{"1":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":2.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"18":{"tf":2.0},"181":{"tf":1.0},"196":{"tf":1.4142135623730951},"201":{"tf":1.0},"210":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.7320508075688772},"260":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"277":{"tf":1.0},"284":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"308":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.7320508075688772},"384":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"395":{"tf":2.0},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.7320508075688772},"425":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"481":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":2.23606797749979},"495":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"298":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":40,"docs":{"18":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"190":{"tf":4.242640687119285},"191":{"tf":2.6457513110645907},"192":{"tf":1.0},"193":{"tf":2.0},"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"241":{"tf":1.0},"294":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":2.23606797749979},"352":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"383":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":3.4641016151377544},"412":{"tf":2.23606797749979},"413":{"tf":1.4142135623730951},"414":{"tf":2.6457513110645907},"415":{"tf":1.0},"416":{"tf":2.0},"417":{"tf":1.4142135623730951},"418":{"tf":2.23606797749979},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.449489742783178},"424":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"491":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"185":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"185":{"tf":1.0},"223":{"tf":1.0},"262":{"tf":1.0},"293":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}},"t":{"df":2,"docs":{"453":{"tf":1.0},"455":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"124":{"tf":1.0},"131":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"216":{"tf":1.0},"403":{"tf":1.0},"409":{"tf":1.0},"72":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"215":{"tf":1.0},"249":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"143":{"tf":1.0},"195":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"200":{"tf":1.0},"497":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"355":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"233":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"365":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"408":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":15,"docs":{"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"198":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"269":{"tf":1.0},"280":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"406":{"tf":1.4142135623730951},"456":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":5,"docs":{"162":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"293":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":3,"docs":{"355":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"14":{"tf":1.0},"164":{"tf":2.0},"168":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":2.0},"5":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"399":{"tf":1.4142135623730951},"48":{"tf":1.0},"499":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"191":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"295":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"14":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"344":{"tf":1.0},"391":{"tf":1.4142135623730951},"401":{"tf":1.0},"408":{"tf":1.4142135623730951},"42":{"tf":1.0},"429":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"340":{"tf":1.7320508075688772},"343":{"tf":3.4641016151377544}}}}}}},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"'":{"df":9,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"173":{"tf":1.0},"217":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"383":{"tf":1.0}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":128,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":2.23606797749979},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":2.8284271247461903},"161":{"tf":2.0},"162":{"tf":2.8284271247461903},"163":{"tf":2.8284271247461903},"164":{"tf":3.1622776601683795},"165":{"tf":1.7320508075688772},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"168":{"tf":2.6457513110645907},"169":{"tf":2.23606797749979},"17":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":2.0},"184":{"tf":2.0},"185":{"tf":2.6457513110645907},"186":{"tf":2.449489742783178},"187":{"tf":2.0},"189":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"251":{"tf":2.23606797749979},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"27":{"tf":2.0},"281":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":2.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"301":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"364":{"tf":1.0},"367":{"tf":1.4142135623730951},"380":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"387":{"tf":1.4142135623730951},"398":{"tf":1.0},"4":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"452":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.4142135623730951},"483":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":2.0},"501":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"421":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"162":{"tf":1.0},"172":{"tf":1.0}}},"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":2,"docs":{"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"178":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"189":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"191":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":2.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"292":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}}}}},"r":{"df":1,"docs":{"151":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"427":{"tf":1.0}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"370":{"tf":1.0},"455":{"tf":1.0},"99":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"125":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"407":{"tf":1.0},"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"217":{"tf":1.0},"343":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"489":{"tf":1.0},"69":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"132":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"50":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":45,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"269":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"294":{"tf":1.0},"297":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.7320508075688772},"349":{"tf":1.0},"352":{"tf":1.0},"363":{"tf":1.4142135623730951},"367":{"tf":3.1622776601683795},"369":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"402":{"tf":1.0},"407":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"497":{"tf":1.7320508075688772},"512":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"399":{"tf":1.0}}}}}}}},"df":6,"docs":{"258":{"tf":1.0},"364":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":25,"docs":{"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"18":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":1.0},"360":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"437":{"tf":1.0},"458":{"tf":1.0},"67":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"129":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"189":{"tf":1.0},"225":{"tf":1.4142135623730951},"298":{"tf":1.0},"447":{"tf":1.4142135623730951}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"164":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":2.23606797749979}}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"343":{"tf":1.0}}}},"r":{"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.0},"343":{"tf":1.0},"44":{"tf":1.0},"511":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"297":{"tf":1.0},"310":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"140":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"61":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":2.0}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"189":{"tf":1.0},"343":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}},"s":{"df":1,"docs":{"237":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"150":{"tf":1.4142135623730951}},"t":{"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"241":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.7320508075688772},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}}}}},"df":7,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"451":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.7320508075688772},"486":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"159":{"tf":1.0},"296":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"399":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0}},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"169":{"tf":1.0},"239":{"tf":1.0},"343":{"tf":2.0},"367":{"tf":2.0},"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"130":{"tf":1.0},"137":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"403":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"217":{"tf":1.0},"406":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"348":{"tf":1.0},"384":{"tf":2.23606797749979},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"101":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"213":{"tf":1.0},"3":{"tf":1.0},"323":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"407":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"483":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"128":{"tf":1.0},"402":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"326":{"tf":1.0},"328":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"340":{"tf":1.0},"94":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.4142135623730951},"2":{"tf":1.0},"241":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"429":{"tf":1.0},"451":{"tf":1.0},"48":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":13,"docs":{"14":{"tf":1.7320508075688772},"190":{"tf":2.449489742783178},"191":{"tf":1.0},"193":{"tf":2.0},"343":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"5":{"tf":1.0}},"s":{"df":5,"docs":{"191":{"tf":1.0},"269":{"tf":1.0},"343":{"tf":1.0},"401":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}}}}}}}}},"df":40,"docs":{"1":{"tf":1.0},"12":{"tf":2.449489742783178},"13":{"tf":1.4142135623730951},"168":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":3.605551275463989},"191":{"tf":3.605551275463989},"192":{"tf":1.4142135623730951},"193":{"tf":4.795831523312719},"199":{"tf":2.449489742783178},"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"349":{"tf":2.449489742783178},"350":{"tf":2.8284271247461903},"351":{"tf":2.449489742783178},"352":{"tf":2.8284271247461903},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":2.0},"358":{"tf":1.0},"359":{"tf":3.3166247903554},"360":{"tf":3.7416573867739413},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"383":{"tf":1.7320508075688772},"4":{"tf":1.0},"402":{"tf":2.23606797749979},"403":{"tf":3.7416573867739413},"406":{"tf":4.123105625617661},"407":{"tf":3.7416573867739413},"409":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":20,"docs":{"18":{"tf":1.0},"187":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"290":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"353":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"217":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"297":{"tf":1.0},"41":{"tf":2.0},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":66,"docs":{"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"140":{"tf":1.4142135623730951},"144":{"tf":1.0},"157":{"tf":1.4142135623730951},"181":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.0},"346":{"tf":1.4142135623730951},"349":{"tf":1.0},"362":{"tf":1.4142135623730951},"365":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"464":{"tf":1.7320508075688772},"467":{"tf":1.0},"478":{"tf":1.4142135623730951},"481":{"tf":1.0},"492":{"tf":1.4142135623730951},"495":{"tf":1.0},"510":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"297":{"tf":1.0},"409":{"tf":1.0}},"i":{"df":4,"docs":{"189":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":53,"docs":{"1":{"tf":1.0},"115":{"tf":1.4142135623730951},"123":{"tf":1.0},"135":{"tf":1.7320508075688772},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"197":{"tf":1.7320508075688772},"201":{"tf":1.0},"211":{"tf":1.7320508075688772},"215":{"tf":1.0},"223":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.4142135623730951},"249":{"tf":1.0},"256":{"tf":1.4142135623730951},"260":{"tf":1.0},"270":{"tf":1.7320508075688772},"277":{"tf":1.0},"283":{"tf":1.4142135623730951},"288":{"tf":1.0},"300":{"tf":1.4142135623730951},"308":{"tf":1.0},"317":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.4142135623730951},"365":{"tf":1.0},"371":{"tf":1.4142135623730951},"384":{"tf":1.0},"393":{"tf":1.7320508075688772},"412":{"tf":1.0},"418":{"tf":1.4142135623730951},"425":{"tf":1.0},"431":{"tf":1.4142135623730951},"448":{"tf":1.0},"459":{"tf":1.7320508075688772},"467":{"tf":1.0},"473":{"tf":1.4142135623730951},"481":{"tf":1.0},"487":{"tf":1.4142135623730951},"495":{"tf":1.0},"505":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"192":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"220":{"tf":1.0},"266":{"tf":1.0},"414":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"348":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":20,"docs":{"134":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.7320508075688772},"217":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.4142135623730951},"343":{"tf":1.0},"365":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.4142135623730951},"512":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"128":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"184":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":43,"docs":{"101":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"343":{"tf":1.4142135623730951},"37":{"tf":1.0},"391":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":12,"docs":{"261":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":7,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"294":{"tf":1.0},"39":{"tf":1.0},"408":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"383":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"146":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"251":{"tf":1.0},"296":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.0},"429":{"tf":1.0}},"m":{"df":2,"docs":{"161":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"310":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"120":{"tf":1.4142135623730951},"186":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"151":{"tf":1.0},"9":{"tf":1.0}}},"s":{"df":3,"docs":{"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"269":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"253":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.0},"403":{"tf":1.0},"408":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":38,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"132":{"tf":2.6457513110645907},"164":{"tf":2.0},"166":{"tf":2.0},"168":{"tf":1.0},"36":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":2.23606797749979},"37":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":2.0},"442":{"tf":2.23606797749979},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"467":{"tf":2.23606797749979},"468":{"tf":2.23606797749979},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":3.1622776601683795},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951},"83":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"119":{"tf":1.0},"191":{"tf":1.0},"326":{"tf":1.0},"459":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"189":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"381":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"131":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"349":{"tf":1.0},"359":{"tf":1.4142135623730951},"440":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.7320508075688772}}}},"s":{"a":{"df":0,"docs":{},"l":{"(":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":115,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"10":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":2.8284271247461903},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"202":{"tf":1.4142135623730951},"207":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":2.0},"22":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"325":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":2.449489742783178},"406":{"tf":1.4142135623730951},"409":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"429":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.0},"476":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"496":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.23606797749979},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":2.449489742783178},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"429":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"371":{"tf":1.4142135623730951},"407":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"2":{"df":1,"docs":{"239":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"239":{"tf":1.0},"369":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":2,"docs":{"26":{"tf":1.0},"415":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}}},"df":103,"docs":{"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"123":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.0},"143":{"tf":1.7320508075688772},"187":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":2.6457513110645907},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":2.6457513110645907},"24":{"tf":2.0},"240":{"tf":1.0},"25":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"30":{"tf":1.4142135623730951},"304":{"tf":1.0},"31":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":2.23606797749979},"353":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":2.6457513110645907},"37":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.4142135623730951},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"51":{"tf":1.4142135623730951},"512":{"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.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"195":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"367":{"tf":1.4142135623730951},"99":{"tf":1.0}},"n":{"df":4,"docs":{"137":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0}}}},"i":{"d":{"df":71,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":2.0},"243":{"tf":1.7320508075688772},"253":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"343":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"369":{"tf":2.0},"386":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"495":{"tf":1.4142135623730951},"500":{"tf":3.605551275463989},"501":{"tf":3.0},"502":{"tf":1.4142135623730951},"503":{"tf":2.23606797749979},"505":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"512":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"406":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"190":{"tf":2.0},"191":{"tf":1.4142135623730951}}}}}}}}},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":8,"docs":{"448":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":2.6457513110645907},"457":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"33":{"tf":1.4142135623730951},"349":{"tf":1.0},"358":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":10,"docs":{"131":{"tf":1.0},"132":{"tf":3.3166247903554},"294":{"tf":1.0},"304":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":8,"docs":{"184":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"343":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"243":{"tf":1.0},"253":{"tf":1.0},"281":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"235":{"tf":1.0},"447":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"189":{"tf":2.0},"190":{"tf":3.605551275463989},"191":{"tf":3.3166247903554},"192":{"tf":2.8284271247461903},"193":{"tf":2.23606797749979},"196":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"455":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":8,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"173":{"tf":1.0},"234":{"tf":1.0},"297":{"tf":1.0},"369":{"tf":1.0},"512":{"tf":1.0},"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"173":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"185":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"391":{"tf":1.0},"410":{"tf":1.0}}}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"457":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"190":{"tf":1.0},"406":{"tf":1.7320508075688772}}}},"z":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"143":{"tf":1.0},"243":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":2.0},"369":{"tf":2.23606797749979},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"507":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"367":{"tf":2.0},"369":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":57,"docs":{"1":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"179":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"275":{"tf":1.4142135623730951},"277":{"tf":1.0},"286":{"tf":1.4142135623730951},"288":{"tf":1.0},"306":{"tf":1.7320508075688772},"308":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"336":{"tf":1.4142135623730951},"338":{"tf":1.0},"340":{"tf":1.0},"347":{"tf":1.4142135623730951},"365":{"tf":1.0},"377":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"399":{"tf":1.4142135623730951},"401":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.0},"423":{"tf":1.4142135623730951},"425":{"tf":1.0},"436":{"tf":1.4142135623730951},"448":{"tf":1.0},"465":{"tf":1.4142135623730951},"467":{"tf":1.0},"479":{"tf":1.4142135623730951},"481":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.4142135623730951},"495":{"tf":1.0},"511":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"193":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"106":{"tf":2.0},"193":{"tf":1.4142135623730951}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"131":{"tf":1.0},"360":{"tf":1.4142135623730951},"400":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"359":{"tf":1.0},"360":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"473":{"tf":1.0}}}},"o":{"df":2,"docs":{"260":{"tf":1.0},"266":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"226":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"466":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"383":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"129":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":2.23606797749979},"243":{"tf":1.0},"47":{"tf":3.1622776601683795},"48":{"tf":1.7320508075688772},"501":{"tf":2.6457513110645907},"507":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"129":{"tf":1.0},"241":{"tf":1.0},"497":{"tf":1.4142135623730951},"505":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"54":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":2.0},"54":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"54":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"208":{"tf":1.4142135623730951},"343":{"tf":3.7416573867739413},"355":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"308":{"tf":1.0},"313":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"409":{"tf":1.0},"497":{"tf":1.0}}}},"t":{"a":{"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"185":{"tf":1.0},"352":{"tf":1.4142135623730951},"407":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"o":{"df":5,"docs":{"189":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"315":{"tf":1.0},"47":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"150":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"235":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"df":2,"docs":{"343":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"343":{"tf":1.4142135623730951},"352":{"tf":1.0},"406":{"tf":1.0},"486":{"tf":1.0}}},"t":{"df":3,"docs":{"360":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0}}}},"d":{"df":9,"docs":{"164":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"365":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"503":{"tf":1.0},"512":{"tf":1.0}},"i":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"185":{"tf":1.4142135623730951},"362":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"201":{"tf":1.0},"209":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"298":{"tf":1.0},"370":{"tf":1.0},"505":{"tf":1.0}}}},"z":{"df":2,"docs":{"236":{"tf":1.0},"357":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"131":{"tf":1.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":12,"docs":{"132":{"tf":2.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"326":{"tf":1.0},"334":{"tf":1.0},"370":{"tf":1.0},"403":{"tf":1.0},"507":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"164":{"tf":1.4142135623730951},"193":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"439":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"303":{"tf":1.0},"313":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"297":{"tf":1.0},"98":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"22":{"tf":1.0},"253":{"tf":1.0},"397":{"tf":1.0},"48":{"tf":1.0}}},"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":6,"docs":{"109":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":14,"docs":{"104":{"tf":1.0},"143":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":2.23606797749979},"194":{"tf":1.7320508075688772},"243":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"50":{"tf":1.0},"507":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"124":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"123":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"276":{"tf":1.0},"58":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"u":{"c":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"224":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.4142135623730951},"429":{"tf":1.0},"458":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"444":{"tf":1.0},"458":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"243":{"tf":1.0},"451":{"tf":1.0},"48":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}},"df":13,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"194":{"tf":1.0},"369":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":2.23606797749979},"486":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":68,"docs":{"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.4142135623730951},"181":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"335":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"356":{"tf":1.0},"362":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"376":{"tf":1.4142135623730951},"384":{"tf":1.0},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"43":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"467":{"tf":1.0},"47":{"tf":1.0},"478":{"tf":1.4142135623730951},"48":{"tf":2.0},"481":{"tf":1.0},"492":{"tf":1.4142135623730951},"495":{"tf":1.0},"50":{"tf":1.0},"510":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":3,"docs":{"253":{"tf":1.0},"292":{"tf":1.0},"427":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"133":{"tf":1.0},"253":{"tf":1.7320508075688772},"255":{"tf":1.0},"281":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"401":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"192":{"tf":1.0},"407":{"tf":1.0},"421":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"407":{"tf":1.0}}}},"m":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"407":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"146":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"133":{"tf":1.0},"207":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"191":{"tf":3.0}}},"df":9,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":5.196152422706632},"191":{"tf":6.082762530298219},"193":{"tf":1.0},"194":{"tf":4.0},"351":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"355":{"tf":1.0},"356":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"191":{"tf":2.449489742783178},"194":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"165":{"tf":1.0},"172":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"294":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":3.1622776601683795},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":2.6457513110645907},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0}}}},"df":25,"docs":{"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"448":{"tf":2.449489742783178},"449":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.7320508075688772},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":2.449489742783178},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"107":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.6457513110645907},"191":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"454":{"tf":1.7320508075688772},"457":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"297":{"tf":1.0},"298":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"253":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":62,"docs":{"1":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"198":{"tf":1.4142135623730951},"201":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.0},"337":{"tf":1.4142135623730951},"365":{"tf":1.0},"378":{"tf":1.4142135623730951},"384":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.4142135623730951},"41":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"437":{"tf":1.4142135623730951},"448":{"tf":1.0},"455":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"494":{"tf":1.7320508075688772},"495":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"x":{"df":1,"docs":{"486":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"262":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":64,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":3.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"193":{"tf":2.0},"194":{"tf":2.449489742783178},"198":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.0},"233":{"tf":2.23606797749979},"234":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"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},"288":{"tf":2.23606797749979},"289":{"tf":1.4142135623730951},"290":{"tf":2.23606797749979},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"297":{"tf":2.6457513110645907},"298":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"306":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"499":{"tf":1.0},"500":{"tf":1.7320508075688772}}}},"df":16,"docs":{"131":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"191":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"47":{"tf":1.0},"497":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.4142135623730951},"72":{"tf":3.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"115":{"tf":1.0},"133":{"tf":1.0},"165":{"tf":1.0},"195":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"96":{"tf":1.0}}}},"df":1,"docs":{"403":{"tf":1.0}},"v":{"df":8,"docs":{"120":{"tf":1.0},"194":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"216":{"tf":1.0},"512":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"13":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"262":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.0},"383":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"98":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":17,"docs":{"106":{"tf":1.4142135623730951},"163":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"306":{"tf":1.0},"343":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"457":{"tf":1.0},"50":{"tf":1.4142135623730951},"63":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"297":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"369":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.7320508075688772}},"v":{"2":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"369":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":54,"docs":{"100":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":2.0},"194":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":2.449489742783178},"261":{"tf":1.0},"276":{"tf":1.0},"297":{"tf":1.4142135623730951},"302":{"tf":1.0},"338":{"tf":2.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.7320508075688772},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":2.0},"375":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"429":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"399":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"297":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"402":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"189":{"tf":2.8284271247461903},"190":{"tf":2.8284271247461903},"191":{"tf":4.123105625617661},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"262":{"tf":1.4142135623730951},"274":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":2.23606797749979},"406":{"tf":2.8284271247461903},"407":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}}}}}}}}},"df":1,"docs":{"454":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":19,"docs":{"448":{"tf":2.449489742783178},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.0},"452":{"tf":1.0},"453":{"tf":2.23606797749979},"454":{"tf":2.6457513110645907},"455":{"tf":2.0},"456":{"tf":2.23606797749979},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"239":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":24,"docs":{"220":{"tf":1.0},"241":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"347":{"tf":1.0},"369":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":3,"docs":{"367":{"tf":1.7320508075688772},"369":{"tf":1.4142135623730951},"371":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"369":{"tf":2.0},"371":{"tf":1.4142135623730951}}}}}},"o":{"df":6,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"285":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"279":{"tf":1.0},"8":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":18,"docs":{"111":{"tf":1.7320508075688772},"184":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"207":{"tf":1.4142135623730951},"241":{"tf":1.0},"251":{"tf":1.0},"307":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"369":{"tf":1.0},"404":{"tf":1.0},"442":{"tf":1.4142135623730951},"483":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"q":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"1":{"df":1,"docs":{"133":{"tf":1.0}}},"2":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"343":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":34,"docs":{"0":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":3.7416573867739413},"143":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"343":{"tf":2.8284271247461903},"365":{"tf":2.23606797749979},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":3.605551275463989},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"380":{"tf":1.0},"383":{"tf":1.0},"398":{"tf":1.0},"447":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":84,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"14":{"tf":2.0},"150":{"tf":1.0},"164":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"235":{"tf":1.7320508075688772},"260":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"281":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.4142135623730951},"362":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":1.0},"386":{"tf":1.4142135623730951},"39":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.0},"4":{"tf":1.4142135623730951},"403":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"454":{"tf":2.23606797749979},"457":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"296":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":2,"docs":{"262":{"tf":1.4142135623730951},"263":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"187":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"353":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"459":{"tf":1.0},"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"111":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"406":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":2.0},"455":{"tf":1.0},"458":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"403":{"tf":1.0},"406":{"tf":3.1622776601683795},"407":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"184":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":23,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"190":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.0},"288":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"299":{"tf":1.0},"302":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"143":{"tf":1.0},"169":{"tf":1.0},"292":{"tf":1.0},"3":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"389":{"tf":1.0},"414":{"tf":1.0},"433":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"132":{"tf":1.4142135623730951},"239":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":17,"docs":{"11":{"tf":1.7320508075688772},"132":{"tf":2.0},"14":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"202":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":1.0},"29":{"tf":1.0},"343":{"tf":1.4142135623730951},"369":{"tf":2.23606797749979},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"407":{"tf":1.0},"450":{"tf":1.0},"505":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":4,"docs":{"110":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"402":{"tf":1.0},"406":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":29,"docs":{"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.0},"343":{"tf":3.0},"344":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"165":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"193":{"tf":1.0},"310":{"tf":1.0},"455":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"439":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":20,"docs":{"132":{"tf":1.0},"150":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"207":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":2.8284271247461903},"340":{"tf":1.0},"343":{"tf":7.280109889280518},"385":{"tf":1.0},"389":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"42":{"tf":1.0},"442":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"189":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"407":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":21,"docs":{"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.23606797749979},"379":{"tf":2.23606797749979},"380":{"tf":2.23606797749979},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":2.8284271247461903},"407":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"403":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"197":{"tf":1.4142135623730951},"280":{"tf":1.0},"392":{"tf":1.0},"427":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"253":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"229":{"tf":1.0},"401":{"tf":2.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"485":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"122":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"204":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"269":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"453":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"c":{"#":{"0":{"0":{"0":{"1":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":513,"docs":{"0":{"tf":1.0},"1":{"tf":2.0},"10":{"tf":1.0},"100":{"tf":1.7320508075688772},"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},"11":{"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},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.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},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"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.7320508075688772},"16":{"tf":1.0},"160":{"tf":2.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"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},"17":{"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},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":2.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":2.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"237":{"tf":2.449489742783178},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":2.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":2.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":2.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.7320508075688772},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":2.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.7320508075688772},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.7320508075688772},"349":{"tf":2.0},"35":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":2.449489742783178},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"365":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":2.0},"38":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"384":{"tf":2.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":2.23606797749979},"402":{"tf":1.0},"403":{"tf":1.7320508075688772},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"410":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.7320508075688772},"425":{"tf":2.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"429":{"tf":1.4142135623730951},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.0},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.7320508075688772},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"46":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":2.0},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":2.449489742783178},"487":{"tf":1.7320508075688772},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":2.0},"496":{"tf":2.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"51":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":15,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"328":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"392":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"61":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":4,"docs":{"146":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"172":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"355":{"tf":1.0}}},"k":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"184":{"tf":1.0},"269":{"tf":1.7320508075688772},"282":{"tf":1.0},"296":{"tf":1.0},"360":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"296":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"298":{"tf":1.0},"403":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"270":{"tf":1.0},"459":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"252":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"84":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"195":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"p":{"df":11,"docs":{"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":4.898979485566356},"166":{"tf":3.1622776601683795},"168":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"162":{"tf":1.0}}},"t":{"df":26,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"266":{"tf":1.7320508075688772},"297":{"tf":1.0},"369":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"243":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"128":{"tf":1.0},"131":{"tf":1.0},"190":{"tf":1.0},"35":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"296":{"tf":1.0},"366":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"296":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"p":{"c":{"df":4,"docs":{"102":{"tf":1.0},"235":{"tf":1.7320508075688772},"421":{"tf":1.0},"512":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"457":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}},"n":{"df":18,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":103,"docs":{"102":{"tf":1.4142135623730951},"115":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":2.6457513110645907},"145":{"tf":2.23606797749979},"146":{"tf":2.6457513110645907},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"151":{"tf":2.23606797749979},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"277":{"tf":2.449489742783178},"278":{"tf":1.0},"279":{"tf":2.0},"280":{"tf":1.7320508075688772},"281":{"tf":2.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"287":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.7320508075688772},"338":{"tf":2.23606797749979},"339":{"tf":1.4142135623730951},"340":{"tf":3.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":4.58257569495584},"344":{"tf":2.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"359":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":2.23606797749979},"385":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"387":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.7320508075688772},"390":{"tf":1.7320508075688772},"391":{"tf":2.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":2.23606797749979},"429":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"445":{"tf":1.0},"457":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":3.0},"484":{"tf":1.0},"485":{"tf":2.6457513110645907},"486":{"tf":2.0},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"494":{"tf":1.0},"511":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"399":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"81":{"tf":2.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"121":{"tf":1.0},"33":{"tf":1.0},"485":{"tf":1.0}}}}},"·":{"df":1,"docs":{"48":{"tf":1.0}},"s":{")":{"/":{"(":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{")":{"/":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"/":{"2":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"143":{"tf":1.0},"42":{"tf":1.0},"455":{"tf":1.0}}}},"k":{"a":{"c":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"193":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"253":{"tf":1.0},"255":{"tf":1.0},"308":{"tf":2.449489742783178},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":2.8284271247461903},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"190":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":29,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":4.58257569495584},"191":{"tf":3.0},"193":{"tf":3.3166247903554},"199":{"tf":1.7320508075688772},"208":{"tf":1.0},"349":{"tf":2.23606797749979},"350":{"tf":2.0},"351":{"tf":2.0},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"383":{"tf":2.6457513110645907},"406":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"191":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"391":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.7320508075688772},"47":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"494":{"tf":1.0},"505":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":45,"docs":{"23":{"tf":2.6457513110645907},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"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.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.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}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"340":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"130":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"328":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":2.0}}}}},"df":21,"docs":{"102":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"217":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"290":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"343":{"tf":1.4142135623730951},"355":{"tf":1.0},"360":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":2.0},"51":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"251":{"tf":1.0}}},"n":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":7,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":9,"docs":{"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"194":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"296":{"tf":1.7320508075688772}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"194":{"tf":1.0},"369":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":9,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"27":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"494":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"#":{"1":{"7":{"8":{"1":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"7":{"9":{"6":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"3":{"3":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"2":{"1":{"7":{"7":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"154":{"tf":1.0},"196":{"tf":1.0}}}},"df":2,"docs":{"343":{"tf":1.0},"48":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"438":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"182":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"238":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.4142135623730951},"408":{"tf":1.0},"429":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":2.449489742783178},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0}}}}},"df":11,"docs":{"106":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"391":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"107":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":2.0},"162":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"41":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":74,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":2.0},"201":{"tf":1.0},"211":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.7320508075688772},"249":{"tf":1.0},"256":{"tf":1.4142135623730951},"260":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"277":{"tf":1.0},"283":{"tf":1.4142135623730951},"288":{"tf":1.0},"290":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"308":{"tf":1.0},"317":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.4142135623730951},"365":{"tf":1.0},"371":{"tf":1.7320508075688772},"384":{"tf":1.0},"393":{"tf":1.7320508075688772},"402":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.7320508075688772},"423":{"tf":1.0},"425":{"tf":1.0},"431":{"tf":1.4142135623730951},"448":{"tf":1.0},"459":{"tf":1.4142135623730951},"467":{"tf":1.0},"473":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.0},"487":{"tf":1.4142135623730951},"495":{"tf":1.0},"505":{"tf":1.7320508075688772},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"196":{"tf":1.0}},"e":{"d":{"df":4,"docs":{"253":{"tf":1.0},"343":{"tf":1.7320508075688772},"43":{"tf":1.0},"471":{"tf":1.0}}},"df":27,"docs":{"101":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"258":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":5,"docs":{"253":{"tf":1.0},"262":{"tf":1.0},"279":{"tf":1.0},"402":{"tf":1.0},"450":{"tf":1.0}}},"m":{"df":4,"docs":{"152":{"tf":1.0},"403":{"tf":1.0},"408":{"tf":1.4142135623730951},"423":{"tf":1.0}}},"n":{"df":4,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"173":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"35":{"tf":1.4142135623730951},"406":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"190":{"tf":1.0},"215":{"tf":2.23606797749979},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":3.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.0},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{"df":9,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"194":{"tf":1.4142135623730951},"253":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"l":{"df":4,"docs":{"182":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"351":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"193":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"217":{"tf":1.0},"296":{"tf":1.0}}}},"n":{"d":{"df":17,"docs":{"132":{"tf":1.0},"164":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"243":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":2.0},"371":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"328":{"tf":1.0},"334":{"tf":1.0},"471":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"313":{"tf":1.0}}}}},"s":{"df":6,"docs":{"297":{"tf":1.0},"383":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"298":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"t":{"df":7,"docs":{"106":{"tf":1.0},"208":{"tf":1.0},"239":{"tf":1.0},"328":{"tf":1.0},"369":{"tf":1.4142135623730951},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":1.0},"189":{"tf":1.0},"240":{"tf":1.0},"280":{"tf":1.0},"402":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"23":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":9,"docs":{"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":1,"docs":{"448":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"367":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":15,"docs":{"200":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":2.449489742783178},"503":{"tf":1.0},"512":{"tf":1.7320508075688772},"54":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"373":{"tf":1.0}}}},"i":{"c":{"df":7,"docs":{"184":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"125":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"225":{"tf":1.0},"298":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"477":{"tf":1.0},"500":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":14,"docs":{"467":{"tf":2.23606797749979},"468":{"tf":2.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":2.23606797749979},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"471":{"tf":1.0}},"s":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":47,"docs":{"111":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":2.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":1.7320508075688772},"193":{"tf":2.0},"205":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"308":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.7320508075688772},"404":{"tf":1.0},"416":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":2.0},"471":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"166":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"185":{"tf":1.0}}},"r":{"df":9,"docs":{"10":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"220":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0}}}}}},"h":{"a":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"0":{"df":0,"docs":{},"f":{"1":{"2":{"8":{"7":{"2":{"4":{"4":{"7":{"9":{"5":{"8":{"d":{"5":{"0":{"a":{"a":{"7":{"b":{"9":{"3":{"7":{"b":{"0":{"1":{"0":{"6":{"5":{"6":{"1":{"a":{"5":{"8":{"8":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"2":{"6":{"2":{"8":{"d":{"3":{"3":{"df":0,"docs":{},"f":{"8":{"1":{"b":{"5":{"3":{"6":{"1":{"b":{"1":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"8":{"d":{"df":0,"docs":{},"f":{"7":{"0":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"241":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"156":{"tf":1.4142135623730951},"191":{"tf":3.0},"233":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.7320508075688772},"359":{"tf":1.0},"363":{"tf":1.0},"439":{"tf":1.0},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"355":{"tf":1.0},"357":{"tf":1.0},"406":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"184":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"192":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"408":{"tf":1.0}}}},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"276":{"tf":1.0},"370":{"tf":1.0},"408":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":2.0},"121":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"137":{"tf":1.0}},"n":{"df":3,"docs":{"314":{"tf":1.0},"444":{"tf":1.0},"51":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"352":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":41,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.4142135623730951},"203":{"tf":1.0},"239":{"tf":1.7320508075688772},"270":{"tf":1.0},"281":{"tf":1.0},"328":{"tf":1.0},"338":{"tf":2.23606797749979},"339":{"tf":1.4142135623730951},"340":{"tf":2.23606797749979},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":2.0},"356":{"tf":1.4142135623730951},"357":{"tf":2.449489742783178},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.0},"423":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"343":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"99":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"23":{"tf":1.4142135623730951},"343":{"tf":2.449489742783178},"344":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"442":{"tf":1.0},"45":{"tf":5.0},"471":{"tf":2.6457513110645907},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":2.8284271247461903},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":17,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"191":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"471":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"108":{"tf":1.0},"45":{"tf":1.0}}},"df":29,"docs":{"100":{"tf":1.7320508075688772},"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.4142135623730951},"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":2.0},"43":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"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":4,"docs":{"168":{"tf":1.0},"329":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0}}}}}}},"df":6,"docs":{"164":{"tf":1.0},"177":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"406":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":1,"docs":{"230":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"190":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"43":{"tf":1.0},"485":{"tf":1.0},"499":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"293":{"tf":1.0},"344":{"tf":1.0},"369":{"tf":1.0},"502":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":13,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"250":{"tf":1.0},"297":{"tf":1.0},"337":{"tf":1.0},"362":{"tf":1.0},"398":{"tf":1.0},"420":{"tf":1.0},"51":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"293":{"tf":1.0},"297":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"369":{"tf":1.0},"407":{"tf":1.0}}},"df":10,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"293":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"407":{"tf":1.0}},"f":{"df":1,"docs":{"483":{"tf":1.0}},"i":{"df":3,"docs":{"297":{"tf":1.0},"400":{"tf":1.0},"44":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"297":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":19,"docs":{"111":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"204":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.0},"253":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"426":{"tf":1.0},"429":{"tf":2.0},"48":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"122":{"tf":1.0},"145":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"355":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"43":{"tf":1.0},"486":{"tf":1.7320508075688772},"497":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"408":{"tf":1.0}}},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":27,"docs":{"113":{"tf":1.7320508075688772},"129":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"239":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":4.898979485566356},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"371":{"tf":2.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":2.23606797749979},"442":{"tf":1.7320508075688772},"445":{"tf":1.4142135623730951},"453":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"393":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"369":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"295":{"tf":1.0},"296":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"395":{"tf":1.0},"406":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"114":{"tf":1.0},"347":{"tf":1.0},"360":{"tf":1.0},"407":{"tf":1.0},"472":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"357":{"tf":1.0},"359":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":22,"docs":{"184":{"tf":1.7320508075688772},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.7320508075688772},"23":{"tf":2.0},"24":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":3.872983346207417},"51":{"tf":4.123105625617661},"52":{"tf":2.0},"53":{"tf":1.0}}},"w":{"df":4,"docs":{"151":{"tf":1.0},"165":{"tf":1.0},"255":{"tf":1.0},"352":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"373":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"129":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"239":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":1.0},"414":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"194":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.0},"50":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"160":{"tf":2.23606797749979},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"168":{"tf":3.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"454":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"187":{"tf":1.4142135623730951},"205":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"196":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":15,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":2.23606797749979},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"359":{"tf":2.0},"406":{"tf":1.0},"408":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}},"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"t":{"df":19,"docs":{"150":{"tf":1.0},"169":{"tf":1.0},"186":{"tf":2.6457513110645907},"193":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"240":{"tf":1.0},"276":{"tf":1.0},"352":{"tf":2.23606797749979},"362":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":2.6457513110645907},"453":{"tf":1.4142135623730951},"466":{"tf":1.0},"485":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"143":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"497":{"tf":1.0},"512":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"2":{"df":1,"docs":{"194":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"254":{"tf":1.4142135623730951},"312":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"134":{"tf":1.0},"512":{"tf":1.0},"85":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"165":{"tf":1.0},"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"491":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":36,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"182":{"tf":1.0},"485":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}},"n":{"df":5,"docs":{"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"194":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"128":{"tf":1.0},"184":{"tf":1.0}}}},"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":8,"docs":{"114":{"tf":1.0},"129":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"235":{"tf":1.4142135623730951},"253":{"tf":1.0},"410":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"202":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":43,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"235":{"tf":2.449489742783178},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"326":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.4142135623730951},"393":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":2.6457513110645907},"198":{"tf":1.0},"237":{"tf":1.0},"313":{"tf":1.0},"369":{"tf":1.4142135623730951},"454":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"151":{"tf":1.0},"347":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"254":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"414":{"tf":2.23606797749979},"416":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"296":{"tf":1.0},"386":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"391":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"407":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"23":{"tf":1.0},"230":{"tf":1.0},"66":{"tf":2.23606797749979}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"313":{"tf":1.4142135623730951},"316":{"tf":1.0},"383":{"tf":1.0}}}},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"190":{"tf":1.0},"235":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"162":{"tf":1.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"164":{"tf":1.7320508075688772},"174":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"240":{"tf":1.7320508075688772},"340":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":5,"docs":{"150":{"tf":1.0},"187":{"tf":1.0},"275":{"tf":1.0},"298":{"tf":1.0},"455":{"tf":1.7320508075688772}}}},"k":{"df":0,"docs":{},"e":{"df":15,"docs":{"122":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":2.23606797749979},"230":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.7320508075688772},"295":{"tf":2.23606797749979},"297":{"tf":4.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"427":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":67,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":2.0},"195":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951},"249":{"tf":1.0},"252":{"tf":1.7320508075688772},"260":{"tf":1.0},"264":{"tf":1.4142135623730951},"277":{"tf":1.0},"28":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"288":{"tf":1.0},"291":{"tf":1.4142135623730951},"3":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.4142135623730951},"338":{"tf":1.0},"341":{"tf":1.7320508075688772},"349":{"tf":1.0},"353":{"tf":1.7320508075688772},"365":{"tf":1.0},"368":{"tf":1.4142135623730951},"379":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"387":{"tf":1.4142135623730951},"401":{"tf":1.0},"404":{"tf":1.7320508075688772},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"425":{"tf":1.0},"428":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.4142135623730951},"448":{"tf":1.0},"452":{"tf":1.4142135623730951},"467":{"tf":1.0},"470":{"tf":1.4142135623730951},"481":{"tf":1.0},"484":{"tf":1.4142135623730951},"495":{"tf":1.0},"498":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":6,"docs":{"206":{"tf":1.0},"211":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":1,"docs":{"5":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}}}},"t":{"df":51,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":2.23606797749979},"349":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"449":{"tf":1.0},"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":27,"docs":{"133":{"tf":1.0},"14":{"tf":2.0},"164":{"tf":1.0},"18":{"tf":1.4142135623730951},"290":{"tf":2.449489742783178},"293":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"343":{"tf":1.0},"378":{"tf":1.0},"403":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"72":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":2,"docs":{"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"189":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.4142135623730951},"343":{"tf":1.0},"456":{"tf":1.0}}}},"y":{"df":3,"docs":{"190":{"tf":1.0},"297":{"tf":1.0},"356":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.0}}}},"m":{"df":1,"docs":{"18":{"tf":1.0}}},"p":{"df":13,"docs":{"106":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":2.449489742783178},"255":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"334":{"tf":1.0},"39":{"tf":1.0},"429":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":19,"docs":{"130":{"tf":1.0},"133":{"tf":1.4142135623730951},"151":{"tf":1.0},"159":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"262":{"tf":1.0},"281":{"tf":1.4142135623730951},"294":{"tf":1.0},"397":{"tf":1.0},"403":{"tf":1.7320508075688772},"408":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":3.4641016151377544}}},"r":{"a":{"df":0,"docs":{},"g":{"df":33,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"297":{"tf":1.0},"343":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"369":{"tf":2.23606797749979},"370":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"407":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":2.6457513110645907},"442":{"tf":1.4142135623730951},"453":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":10,"docs":{"438":{"tf":2.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"_":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"132":{"tf":1.0},"233":{"tf":2.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"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},"367":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.7320508075688772},"455":{"tf":1.7320508075688772},"456":{"tf":1.0},"457":{"tf":1.7320508075688772},"47":{"tf":1.0},"497":{"tf":1.7320508075688772},"505":{"tf":1.0}}},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"326":{"tf":1.0},"357":{"tf":1.0}}}}},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":9,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"407":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"370":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"280":{"tf":1.4142135623730951},"281":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"403":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"125":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.0},"290":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"186":{"tf":1.0},"240":{"tf":1.4142135623730951},"257":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"485":{"tf":1.0},"489":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"239":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":2,"docs":{"104":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"185":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"458":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"437":{"tf":1.0},"485":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"194":{"tf":2.23606797749979},"239":{"tf":1.0},"369":{"tf":1.0},"471":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"279":{"tf":1.0},"32":{"tf":2.23606797749979},"410":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"b":{"0":{"df":1,"docs":{"437":{"tf":1.0}}},"df":4,"docs":{"189":{"tf":1.0},"294":{"tf":1.0},"304":{"tf":1.0},"326":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"200":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"t":{"df":10,"docs":{"164":{"tf":1.7320508075688772},"297":{"tf":1.0},"36":{"tf":1.0},"406":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"22":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}},"t":{"df":6,"docs":{"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"38":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"a":{"c":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"421":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"170":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"340":{"tf":1.0},"466":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"173":{"tf":1.0},"237":{"tf":2.0},"326":{"tf":1.0},"328":{"tf":1.0},"345":{"tf":1.0},"387":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"239":{"tf":1.0},"325":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":12,"docs":{"143":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"455":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"486":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"191":{"tf":1.0},"209":{"tf":1.4142135623730951},"298":{"tf":1.0},"343":{"tf":3.1622776601683795},"383":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"191":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"457":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":36,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"217":{"tf":1.4142135623730951},"22":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"254":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"371":{"tf":1.7320508075688772},"373":{"tf":1.0},"383":{"tf":1.0},"408":{"tf":1.0},"434":{"tf":1.4142135623730951},"449":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"243":{"tf":1.0},"360":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"185":{"tf":1.0},"189":{"tf":1.0},"367":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"102":{"tf":1.0},"178":{"tf":1.0},"241":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"427":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"22":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.0},"399":{"tf":1.0},"402":{"tf":1.0},"450":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"150":{"tf":1.0},"16":{"tf":1.0},"279":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"185":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":60,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.4142135623730951},"425":{"tf":1.0},"426":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"343":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":1.0},"500":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"351":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":44,"docs":{"117":{"tf":1.0},"133":{"tf":1.7320508075688772},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"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.7320508075688772},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.4142135623730951},"297":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":3,"docs":{"373":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.0},"239":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"483":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}},"g":{"df":1,"docs":{"360":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"163":{"tf":1.0},"343":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"383":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"378":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"348":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"280":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"239":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"223":{"tf":1.0},"295":{"tf":1.0}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"386":{"tf":1.0},"391":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"s":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"128":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"132":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":93,"docs":{"11":{"tf":1.4142135623730951},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"189":{"tf":2.6457513110645907},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":2.23606797749979},"216":{"tf":1.4142135623730951},"217":{"tf":2.8284271247461903},"218":{"tf":2.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"238":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":2.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"296":{"tf":1.4142135623730951},"297":{"tf":3.1622776601683795},"298":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.0},"35":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}}},"·":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"0":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"50":{"tf":1.0}}},"4":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"df":1,"docs":{"50":{"tf":1.0}}},":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"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":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":32,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":20,"docs":{"117":{"tf":1.0},"182":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"207":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.4142135623730951},"417":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":3,"docs":{"225":{"tf":1.0},"343":{"tf":1.0},"74":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"384":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"k":{"df":1,"docs":{"489":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":17,"docs":{"155":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"241":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":2.23606797749979},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":2.23606797749979},"505":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"100":{"tf":1.0},"143":{"tf":1.0},"189":{"tf":2.8284271247461903},"190":{"tf":1.4142135623730951},"191":{"tf":2.0},"194":{"tf":4.58257569495584},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"262":{"tf":1.0},"406":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"193":{"tf":1.0},"33":{"tf":2.449489742783178},"357":{"tf":1.7320508075688772},"48":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":18,"docs":{"100":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.7320508075688772},"25":{"tf":1.0},"251":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"281":{"tf":1.0},"353":{"tf":1.0},"387":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"441":{"tf":1.0},"446":{"tf":1.0},"450":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":21,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"172":{"tf":1.0},"194":{"tf":1.0},"216":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"310":{"tf":1.4142135623730951},"326":{"tf":1.0},"407":{"tf":1.4142135623730951},"411":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":8,"docs":{"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"404":{"tf":1.0},"95":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"429":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"152":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"402":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"241":{"tf":1.0},"255":{"tf":1.0},"276":{"tf":1.4142135623730951},"400":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.4142135623730951},"505":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":57,"docs":{"1":{"tf":1.0},"115":{"tf":1.7320508075688772},"123":{"tf":1.0},"135":{"tf":1.7320508075688772},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"160":{"tf":1.0},"174":{"tf":1.7320508075688772},"181":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":2.6457513110645907},"201":{"tf":1.0},"211":{"tf":1.7320508075688772},"215":{"tf":1.0},"223":{"tf":2.0},"225":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.4142135623730951},"249":{"tf":1.0},"256":{"tf":1.4142135623730951},"260":{"tf":1.0},"270":{"tf":1.7320508075688772},"277":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"288":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.7320508075688772},"308":{"tf":1.0},"317":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.4142135623730951},"365":{"tf":1.0},"371":{"tf":1.4142135623730951},"384":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":2.0},"412":{"tf":1.0},"418":{"tf":1.4142135623730951},"425":{"tf":1.0},"431":{"tf":1.7320508075688772},"448":{"tf":1.0},"459":{"tf":1.7320508075688772},"467":{"tf":1.0},"473":{"tf":2.0},"481":{"tf":1.0},"487":{"tf":1.4142135623730951},"495":{"tf":1.0},"505":{"tf":1.4142135623730951},"56":{"tf":2.0},"68":{"tf":1.0},"74":{"tf":2.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"197":{"tf":1.0},"270":{"tf":1.0},"298":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"357":{"tf":1.4142135623730951}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"367":{"tf":1.0},"371":{"tf":1.0},"410":{"tf":1.0}}}},"t":{"'":{"df":1,"docs":{"326":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"220":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"383":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":2.449489742783178},"502":{"tf":1.0},"503":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"i":{"df":2,"docs":{"240":{"tf":1.0},"407":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"13":{"tf":1.0},"282":{"tf":1.0},"486":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"192":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.0},"383":{"tf":1.0},"429":{"tf":1.0},"440":{"tf":1.0},"458":{"tf":1.0},"47":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"132":{"tf":1.0},"325":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.4142135623730951},"489":{"tf":1.0}}},"k":{"df":2,"docs":{"220":{"tf":1.0},"236":{"tf":1.0}}}},"r":{"d":{"df":3,"docs":{"154":{"tf":1.0},"207":{"tf":1.0},"312":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"119":{"tf":1.0},"166":{"tf":1.7320508075688772},"202":{"tf":1.0},"262":{"tf":1.0},"290":{"tf":1.0},"310":{"tf":1.0},"383":{"tf":1.0},"429":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"162":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"340":{"tf":1.0},"458":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"410":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"296":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.0},"454":{"tf":1.0},"485":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"427":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"371":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"220":{"tf":1.0},"262":{"tf":1.0},"340":{"tf":1.0},"383":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.4142135623730951},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"406":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"164":{"tf":1.0},"179":{"tf":1.0},"296":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.0},"25":{"tf":1.0},"250":{"tf":1.0},"257":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.0},"367":{"tf":2.0},"371":{"tf":1.0},"427":{"tf":1.0},"477":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":15,"docs":{"23":{"tf":3.0},"35":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"38":{"tf":2.0},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"48":{"tf":5.291502622129181},"49":{"tf":2.449489742783178},"50":{"tf":3.7416573867739413},"51":{"tf":2.6457513110645907},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"i":{"d":{"df":2,"docs":{"48":{"tf":2.23606797749979},"50":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"326":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"400":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"456":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"e":{"df":61,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.7320508075688772},"150":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"274":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"310":{"tf":1.7320508075688772},"312":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.8284271247461903},"367":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"381":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":1.4142135623730951},"427":{"tf":2.0},"429":{"tf":1.4142135623730951},"440":{"tf":2.23606797749979},"450":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"415":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"190":{"tf":2.6457513110645907},"191":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":3.872983346207417}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.4142135623730951}}}}}}},"k":{"df":1,"docs":{"50":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"159":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"99":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"164":{"tf":1.0},"166":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"353":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":2.23606797749979},"404":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"217":{"tf":1.0},"269":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"349":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"114":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"149":{"tf":1.0},"165":{"tf":1.0},"262":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"137":{"tf":1.0},"163":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"237":{"tf":1.0},"464":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":3.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"194":{"tf":1.4142135623730951},"243":{"tf":1.0},"314":{"tf":1.0},"380":{"tf":1.0},"454":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"507":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"190":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0}}},"df":29,"docs":{"132":{"tf":1.0},"140":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"297":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":2.23606797749979},"413":{"tf":1.4142135623730951},"414":{"tf":3.0},"415":{"tf":1.4142135623730951},"416":{"tf":2.23606797749979},"417":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.449489742783178},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"122":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"194":{"tf":1.0},"353":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.0},"173":{"tf":1.4142135623730951}}}}},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"243":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}},"t":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"392":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":37,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":2.0},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"206":{"tf":1.0},"217":{"tf":2.449489742783178},"218":{"tf":1.0},"220":{"tf":1.0},"262":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"324":{"tf":2.449489742783178},"325":{"tf":2.0},"326":{"tf":2.8284271247461903},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"329":{"tf":1.7320508075688772},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"42":{"tf":1.0},"44":{"tf":2.449489742783178},"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":9,"docs":{"113":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"367":{"tf":1.0},"406":{"tf":1.4142135623730951},"444":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":2,"docs":{"207":{"tf":1.0},"406":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"105":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.4142135623730951},"121":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"290":{"tf":2.23606797749979},"367":{"tf":1.0},"408":{"tf":1.0},"491":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"109":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":3,"docs":{"110":{"tf":2.0},"132":{"tf":1.0},"99":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"343":{"tf":1.0}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"412":{"tf":2.23606797749979},"413":{"tf":1.4142135623730951},"414":{"tf":2.23606797749979},"415":{"tf":1.4142135623730951},"416":{"tf":2.0},"417":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"424":{"tf":1.0}},"i":{"df":16,"docs":{"120":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.4142135623730951},"292":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":3.1622776601683795},"414":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"104":{"tf":1.0},"194":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"102":{"tf":2.6457513110645907},"103":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"132":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":5,"docs":{"129":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"399":{"tf":1.0},"407":{"tf":1.0},"497":{"tf":1.0}},"e":{"df":6,"docs":{"129":{"tf":1.0},"235":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":3.872983346207417},"370":{"tf":1.0},"440":{"tf":2.0}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"143":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"194":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"366":{"tf":1.0}},"l":{"df":1,"docs":{"360":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.0},"193":{"tf":1.4142135623730951},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"427":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.4142135623730951},"163":{"tf":1.0},"369":{"tf":2.0},"407":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"184":{"tf":1.0},"217":{"tf":1.7320508075688772},"240":{"tf":1.0},"248":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"403":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"429":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"427":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"238":{"tf":1.0},"340":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":37,"docs":{"149":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.0},"206":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"295":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"334":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"454":{"tf":1.4142135623730951},"483":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"72":{"tf":1.0}},"x":{"6":{"4":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"104":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"104":{"tf":1.0}}}}},"df":30,"docs":{"102":{"tf":2.0},"104":{"tf":3.605551275463989},"149":{"tf":1.4142135623730951},"181":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"194":{"tf":3.7416573867739413},"201":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"23":{"tf":1.0},"253":{"tf":1.0},"294":{"tf":1.0},"32":{"tf":1.4142135623730951},"326":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"369":{"tf":1.0},"407":{"tf":1.4142135623730951},"421":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":2.0},"476":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":9,"docs":{"204":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"370":{"tf":1.0},"423":{"tf":1.0},"445":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":1,"docs":{"357":{"tf":1.0}}}}},"·":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{".":{"df":1,"docs":{"313":{"tf":1.0}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"131":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":2.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"442":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"442":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"102":{"tf":1.7320508075688772},"194":{"tf":1.0},"42":{"tf":1.4142135623730951},"471":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.7320508075688772}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0}}}}}}}},"c":{"'":{"df":1,"docs":{"402":{"tf":1.0}}},"df":11,"docs":{"184":{"tf":1.0},"186":{"tf":2.23606797749979},"189":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"350":{"tf":1.0},"380":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0}}},"df":1,"docs":{"357":{"tf":1.0}},"i":{"df":2,"docs":{"257":{"tf":1.0},"291":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"122":{"tf":1.0},"251":{"tf":1.0},"403":{"tf":1.0},"417":{"tf":1.0},"427":{"tf":1.0},"99":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"189":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"269":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"189":{"tf":1.0},"207":{"tf":1.0},"457":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"347":{"tf":1.4142135623730951},"373":{"tf":1.0},"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"349":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"429":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"426":{"tf":1.0},"429":{"tf":1.7320508075688772}}}}},"r":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"173":{"tf":1.0}}}}},"df":11,"docs":{"130":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"221":{"tf":1.0},"362":{"tf":1.0},"383":{"tf":1.0},"429":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.0},"501":{"tf":1.7320508075688772},"82":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"37":{"tf":1.0},"408":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"189":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"434":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"203":{"tf":1.0},"207":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"297":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"164":{"tf":1.0},"383":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":1,"docs":{"391":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"326":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"146":{"tf":1.0},"400":{"tf":1.0},"70":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"296":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":10,"docs":{"13":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.4142135623730951},"204":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"450":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"223":{"tf":1.0},"322":{"tf":1.0},"406":{"tf":1.0},"7":{"tf":2.0},"74":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}}}}}}},"df":1,"docs":{"72":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":7,"docs":{"165":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.0},"213":{"tf":1.4142135623730951},"440":{"tf":1.0},"510":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"32":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"164":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"184":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":2.0},"268":{"tf":1.0},"274":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"326":{"tf":1.0},"383":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"125":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"307":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"449":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":52,"docs":{"1":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"179":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"275":{"tf":1.4142135623730951},"277":{"tf":1.0},"286":{"tf":1.4142135623730951},"288":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"336":{"tf":1.4142135623730951},"338":{"tf":1.0},"347":{"tf":1.4142135623730951},"365":{"tf":1.0},"377":{"tf":1.4142135623730951},"384":{"tf":1.0},"399":{"tf":1.4142135623730951},"401":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.0},"423":{"tf":1.4142135623730951},"425":{"tf":1.0},"436":{"tf":1.4142135623730951},"448":{"tf":1.0},"465":{"tf":1.4142135623730951},"467":{"tf":1.0},"479":{"tf":1.4142135623730951},"481":{"tf":1.0},"493":{"tf":1.4142135623730951},"495":{"tf":1.0},"511":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"442":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"292":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"24":{"tf":1.0},"241":{"tf":1.0},"267":{"tf":1.0},"343":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.4142135623730951},"505":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"192":{"tf":1.0},"240":{"tf":1.0},"439":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"270":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"194":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"48":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"134":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"194":{"tf":1.7320508075688772},"223":{"tf":1.0},"235":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"266":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.7320508075688772},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"397":{"tf":1.0},"421":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.7320508075688772},"54":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.0},"220":{"tf":1.4142135623730951},"235":{"tf":1.0},"241":{"tf":1.0},"262":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"355":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.4142135623730951},"48":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.4142135623730951},"505":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":16,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":3.1622776601683795},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"156":{"tf":1.0},"195":{"tf":1.4142135623730951},"227":{"tf":1.0},"266":{"tf":1.0},"281":{"tf":1.0},"359":{"tf":1.0},"446":{"tf":1.0},"457":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"371":{"tf":1.0},"457":{"tf":1.0},"486":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"120":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"280":{"tf":1.0},"403":{"tf":1.0},"450":{"tf":1.0},"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"129":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":21,"docs":{"118":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"168":{"tf":2.449489742783178},"169":{"tf":1.0},"176":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"366":{"tf":1.0},"383":{"tf":1.0},"41":{"tf":1.0},"421":{"tf":1.0},"445":{"tf":1.0},"476":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"21":{"tf":1.0}}}},"c":{"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":3,"docs":{"13":{"tf":1.4142135623730951},"177":{"tf":1.0},"313":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"313":{"tf":1.7320508075688772}}}},"df":116,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":2.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"241":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.4142135623730951},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":2.23606797749979},"343":{"tf":2.449489742783178},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"357":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.7320508075688772},"373":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.7320508075688772},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"462":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"48":{"tf":2.6457513110645907},"485":{"tf":1.7320508075688772},"49":{"tf":1.0},"501":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"511":{"tf":1.0},"512":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":2.449489742783178},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"297":{"tf":1.0}}},"df":30,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"297":{"tf":1.4142135623730951},"303":{"tf":1.0},"391":{"tf":1.0},"397":{"tf":1.0},"404":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.4142135623730951},"454":{"tf":1.0},"469":{"tf":1.7320508075688772},"472":{"tf":1.0},"476":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"471":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":27,"docs":{"164":{"tf":1.4142135623730951},"166":{"tf":2.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"35":{"tf":1.0},"383":{"tf":1.4142135623730951},"396":{"tf":1.0},"403":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.0},"52":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"235":{"tf":1.0}}}},"v":{"0":{"df":2,"docs":{"102":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},".":{"0":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"149":{"tf":2.0},"150":{"tf":2.0},"152":{"tf":1.4142135623730951},"156":{"tf":1.0},"163":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"2":{"+":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"454":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"454":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"457":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":59,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"133":{"tf":2.8284271247461903},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.8284271247461903},"191":{"tf":1.0},"217":{"tf":2.0},"218":{"tf":1.0},"23":{"tf":1.7320508075688772},"234":{"tf":1.0},"24":{"tf":1.4142135623730951},"262":{"tf":1.0},"290":{"tf":1.7320508075688772},"294":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"429":{"tf":1.0},"45":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"451":{"tf":2.0},"453":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":2.449489742783178},"456":{"tf":1.0},"457":{"tf":2.0},"458":{"tf":1.0},"47":{"tf":2.0},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":3.1622776601683795},"49":{"tf":2.0},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"295":{"tf":1.0},"296":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"407":{"tf":1.4142135623730951}}}},"df":59,"docs":{"1":{"tf":1.0},"102":{"tf":2.23606797749979},"103":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"13":{"tf":2.449489742783178},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"193":{"tf":2.449489742783178},"194":{"tf":2.0},"207":{"tf":2.23606797749979},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":5.196152422706632},"351":{"tf":1.0},"356":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":3.605551275463989},"369":{"tf":2.6457513110645907},"371":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":2.0},"471":{"tf":1.4142135623730951},"48":{"tf":2.8284271247461903},"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.0},"501":{"tf":1.4142135623730951},"507":{"tf":1.0},"54":{"tf":1.7320508075688772},"7":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"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":{"343":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"239":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"104":{"tf":3.1622776601683795},"235":{"tf":1.0},"406":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"190":{"tf":1.0},"217":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":11,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"262":{"tf":1.0},"401":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"409":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"146":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"343":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{"c":{"!":{"[":{"(":{"a":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"325":{"tf":1.0},"326":{"tf":1.7320508075688772},"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"8":{"df":3,"docs":{"102":{"tf":2.0},"132":{"tf":1.4142135623730951},"471":{"tf":2.0}}},"df":0,"docs":{}}},"df":3,"docs":{"194":{"tf":3.0},"325":{"tf":1.0},"328":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":27,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"262":{"tf":1.4142135623730951},"303":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.7320508075688772},"383":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"499":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":13,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"23":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"473":{"tf":1.0},"52":{"tf":2.0},"83":{"tf":1.0},"95":{"tf":1.4142135623730951}},"i":{"df":17,"docs":{"122":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"240":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"144":{"tf":1.0},"145":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":39,"docs":{"102":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.449489742783178},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"156":{"tf":1.0},"235":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":5.916079783099616},"348":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.0},"434":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":3.4641016151377544},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"l":{"df":2,"docs":{"450":{"tf":1.0},"485":{"tf":1.0}}}},"df":22,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"227":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"355":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"187":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}},"i":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"390":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"169":{"tf":1.0},"184":{"tf":1.0},"343":{"tf":3.4641016151377544}}}},"df":1,"docs":{"191":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"350":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"165":{"tf":1.0}},"p":{"df":1,"docs":{"204":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"295":{"tf":1.0},"298":{"tf":1.0}}},"d":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"383":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":20,"docs":{"143":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"262":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"425":{"tf":2.23606797749979},"426":{"tf":3.4641016151377544},"427":{"tf":2.449489742783178},"428":{"tf":1.0},"429":{"tf":4.47213595499958},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}},"r":{"df":4,"docs":{"220":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}},"s":{"(":{"1":{"6":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}},"s":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":9,"docs":{"23":{"tf":2.23606797749979},"41":{"tf":2.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"61":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"42":{"tf":2.0},"43":{"tf":2.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"43":{"tf":2.23606797749979},"44":{"tf":1.0},"45":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"51":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":2.0},"45":{"tf":2.8284271247461903},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"423":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"217":{"tf":1.0}}}}}}},"·":{"2":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"310":{"tf":1.0},"322":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"193":{"tf":1.4142135623730951},"367":{"tf":1.0},"407":{"tf":1.0},"455":{"tf":1.0},"491":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"367":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.7320508075688772},"241":{"tf":1.0},"254":{"tf":1.0},"360":{"tf":1.0},"410":{"tf":1.0},"434":{"tf":1.0},"466":{"tf":1.0},"497":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":3,"docs":{"378":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"329":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"262":{"tf":1.7320508075688772},"263":{"tf":1.4142135623730951},"269":{"tf":1.0}}}}}}}}},"df":10,"docs":{"146":{"tf":1.7320508075688772},"150":{"tf":2.0},"155":{"tf":1.0},"165":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.0},"483":{"tf":2.23606797749979},"485":{"tf":2.0},"486":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"162":{"tf":1.0},"296":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"48":{"tf":1.0}}}},"y":{"df":36,"docs":{"111":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"22":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"414":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"505":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":2,"docs":{"485":{"tf":1.0},"489":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772}}}},"b":{"3":{"df":6,"docs":{"162":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"190":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"407":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"160":{"tf":1.0},"168":{"tf":2.449489742783178},"176":{"tf":1.0},"194":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":2.23606797749979},"442":{"tf":1.0},"447":{"tf":1.0},"475":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"169":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"434":{"tf":1.0},"455":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"281":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"189":{"tf":1.0},"191":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"192":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"132":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"423":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"190":{"tf":1.0},"217":{"tf":1.0},"424":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"312":{"tf":1.0},"369":{"tf":1.7320508075688772},"500":{"tf":1.0},"502":{"tf":1.0},"505":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"164":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"185":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"407":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"48":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"407":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"328":{"tf":1.0},"369":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"420":{"tf":1.0}}},"h":{"df":4,"docs":{"253":{"tf":1.0},"406":{"tf":1.0},"415":{"tf":1.0},"429":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":3,"docs":{"164":{"tf":1.7320508075688772},"168":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"163":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"27":{"tf":1.0},"295":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"328":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.4142135623730951},"35":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":2.0},"407":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"511":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"122":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"184":{"tf":1.0},"203":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"408":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"453":{"tf":1.0},"455":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":5,"docs":{"181":{"tf":1.0},"201":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"131":{"tf":1.0},"328":{"tf":1.0},"369":{"tf":1.7320508075688772},"406":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":26,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.7320508075688772},"241":{"tf":1.0},"280":{"tf":1.4142135623730951},"293":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"367":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"194":{"tf":3.1622776601683795},"209":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"191":{"tf":1.4142135623730951},"194":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"185":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"165":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"340":{"tf":1.0},"373":{"tf":1.0},"403":{"tf":1.0},"409":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"177":{"tf":1.0},"190":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"343":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"164":{"tf":1.0},"238":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":5.656854249492381}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"163":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.4142135623730951},"326":{"tf":1.0},"343":{"tf":2.6457513110645907}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{".":{"0":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"d":{"df":1,"docs":{"357":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"169":{"tf":1.4142135623730951}},"m":{"df":25,"docs":{"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.4142135623730951},"223":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}},"df":3,"docs":{"33":{"tf":2.6457513110645907},"357":{"tf":1.0},"48":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}},"df":1,"docs":{"191":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"357":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"156":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"408":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"144":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"128":{"tf":1.4142135623730951},"177":{"tf":1.0},"193":{"tf":1.4142135623730951},"208":{"tf":1.0},"343":{"tf":2.0}}}}},"k":{"df":6,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"164":{"tf":1.0},"178":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"title":{"root":{"0":{"0":{"0":{"0":{"df":2,"docs":{"1":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":1,"docs":{"338":{"tf":1.0}}},"6":{"df":1,"docs":{"349":{"tf":1.0}}},"7":{"df":1,"docs":{"215":{"tf":1.0}}},"8":{"df":1,"docs":{"233":{"tf":1.0}}},"9":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"379":{"tf":1.0}}},"2":{"df":1,"docs":{"249":{"tf":1.0}}},"3":{"df":1,"docs":{"384":{"tf":1.0}}},"4":{"df":1,"docs":{"260":{"tf":1.0}}},"5":{"df":1,"docs":{"401":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"412":{"tf":1.0}}},"2":{"df":1,"docs":{"277":{"tf":1.0}}},"6":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"288":{"tf":1.0}}},"5":{"df":1,"docs":{"425":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"81":{"tf":1.0}}},"3":{"df":1,"docs":{"438":{"tf":1.0}}},"4":{"df":1,"docs":{"448":{"tf":1.0}}},"7":{"df":1,"docs":{"123":{"tf":1.0}}},"8":{"df":1,"docs":{"467":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"308":{"tf":1.0}}},"4":{"df":1,"docs":{"481":{"tf":1.0}}},"6":{"df":1,"docs":{"324":{"tf":1.0}}},"9":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"61":{"tf":1.0}}},"1":{"df":1,"docs":{"62":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"64":{"tf":1.0}}},"2":{"df":1,"docs":{"65":{"tf":1.0}}},"3":{"df":1,"docs":{"66":{"tf":1.0}}},"4":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"63":{"tf":1.0}}},"df":2,"docs":{"181":{"tf":1.0},"25":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"2":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"3":{".":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"2":{"df":1,"docs":{"33":{"tf":1.0}}},"3":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"2":{"df":1,"docs":{"37":{"tf":1.0}}},"3":{"df":1,"docs":{"38":{"tf":1.0}}},"4":{"df":1,"docs":{"39":{"tf":1.0}}},"5":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}},"5":{".":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"2":{"df":1,"docs":{"43":{"tf":1.0}}},"3":{"df":1,"docs":{"44":{"tf":1.0}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"201":{"tf":1.0},"41":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.0}}},"3":{"df":1,"docs":{"49":{"tf":1.0}}},"4":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"df":1,"docs":{"51":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}}},"7":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}}},"7":{"df":1,"docs":{"55":{"tf":1.0}}},"8":{"df":1,"docs":{"56":{"tf":1.0}}},"9":{".":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"3":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"57":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"d":{"df":3,"docs":{"160":{"tf":1.0},"495":{"tf":1.0},"81":{"tf":1.0}}},"df":1,"docs":{"249":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"144":{"tf":1.0},"168":{"tf":1.0},"296":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"213":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"384":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":28,"docs":{"120":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"305":{"tf":1.0},"322":{"tf":1.0},"335":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0},"376":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0},"422":{"tf":1.0},"435":{"tf":1.0},"447":{"tf":1.0},"464":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0},"510":{"tf":1.0},"61":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"313":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":5,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"123":{"tf":1.0},"131":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"129":{"tf":1.0},"130":{"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":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"169":{"tf":1.0},"448":{"tf":1.0},"495":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"407":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"d":{"df":2,"docs":{"38":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"384":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"438":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"349":{"tf":1.0},"406":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"495":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"111":{"tf":1.0},"191":{"tf":1.0},"233":{"tf":1.0},"503":{"tf":1.0},"64":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"267":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"123":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"150":{"tf":1.0},"365":{"tf":1.0},"481":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"128":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"249":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":49,"docs":{"116":{"tf":1.0},"119":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"196":{"tf":1.0},"20":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"273":{"tf":1.0},"284":{"tf":1.0},"301":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"443":{"tf":1.0},"446":{"tf":1.0},"460":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"488":{"tf":1.0},"491":{"tf":1.0},"506":{"tf":1.0},"509":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"481":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"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":{"360":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"412":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"389":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"384":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"181":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"349":{"tf":1.0},"379":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"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":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"+":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"32":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"425":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"297":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"8":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"401":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"165":{"tf":1.0},"29":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":23,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"337":{"tf":1.0},"378":{"tf":1.0},"400":{"tf":1.0},"424":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"480":{"tf":1.0},"494":{"tf":1.0},"512":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"495":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"229":{"tf":1.0},"408":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"208":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":29,"docs":{"112":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"173":{"tf":1.0},"199":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0},"240":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0},"329":{"tf":1.0},"345":{"tf":1.0},"361":{"tf":1.0},"370":{"tf":1.0},"392":{"tf":1.0},"409":{"tf":1.0},"417":{"tf":1.0},"430":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"412":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"456":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":49,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"257":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"m":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":2,"docs":{"169":{"tf":1.0},"171":{"tf":1.0}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":30,"docs":{"101":{"tf":1.0},"127":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"188":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0},"237":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"312":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"354":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"388":{"tf":1.0},"405":{"tf":1.0},"416":{"tf":1.0},"429":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"485":{"tf":1.0},"499":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"12":{"tf":1.0},"131":{"tf":1.0},"191":{"tf":1.0},"295":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"357":{"tf":1.0},"438":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"408":{"tf":1.0},"9":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":25,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"337":{"tf":1.0},"348":{"tf":1.0},"363":{"tf":1.0},"378":{"tf":1.0},"400":{"tf":1.0},"424":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"480":{"tf":1.0},"494":{"tf":1.0},"512":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"467":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":1,"docs":{"481":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"338":{"tf":1.0},"343":{"tf":1.0},"438":{"tf":1.0}}}}},"u":{"b":{"df":2,"docs":{"1":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"260":{"tf":1.0},"365":{"tf":1.0},"438":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"!":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"165":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"230":{"tf":1.0},"42":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"144":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"201":{"tf":1.0},"294":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"438":{"tf":1.0}},"t":{"df":3,"docs":{"0":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"1":{"tf":1.0},"298":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"209":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"192":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"337":{"tf":1.0},"378":{"tf":1.0},"400":{"tf":1.0},"424":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"480":{"tf":1.0},"494":{"tf":1.0},"512":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"m":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"260":{"tf":1.0},"495":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"338":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"105":{"tf":1.0}}},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"293":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"169":{"tf":1.0},"448":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"412":{"tf":1.0},"425":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":31,"docs":{"125":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"183":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"262":{"tf":1.0},"279":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.0},"310":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"403":{"tf":1.0},"414":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"469":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"97":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"132":{"tf":1.0},"239":{"tf":1.0},"365":{"tf":1.0}}}}}}},"w":{"df":6,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.0},"343":{"tf":1.0}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"495":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"95":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"324":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"189":{"tf":1.0},"355":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"467":{"tf":1.0}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"481":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"456":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"233":{"tf":1.0},"260":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"457":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":49,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.0},"284":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"412":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"160":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"348":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"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":{"43":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"184":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"349":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":29,"docs":{"120":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"305":{"tf":1.0},"322":{"tf":1.0},"335":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0},"376":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0},"422":{"tf":1.0},"435":{"tf":1.0},"447":{"tf":1.0},"464":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0},"510":{"tf":1.0},"61":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":26,"docs":{"115":{"tf":1.0},"135":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"393":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"473":{"tf":1.0},"487":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"249":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"467":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"267":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"132":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"35":{"tf":1.0},"365":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"238":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"33":{"tf":1.0},"358":{"tf":1.0}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"121":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"21":{"tf":1.0},"231":{"tf":1.0},"247":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"286":{"tf":1.0},"306":{"tf":1.0},"323":{"tf":1.0},"336":{"tf":1.0},"347":{"tf":1.0},"377":{"tf":1.0},"399":{"tf":1.0},"411":{"tf":1.0},"423":{"tf":1.0},"436":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"o":{"df":1,"docs":{"266":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}}}}},"df":1,"docs":{"457":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"120":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"305":{"tf":1.0},"322":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"376":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0},"422":{"tf":1.0},"435":{"tf":1.0},"447":{"tf":1.0},"464":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0},"510":{"tf":1.0},"61":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}},"r":{"df":4,"docs":{"238":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"501":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"337":{"tf":1.0},"378":{"tf":1.0},"400":{"tf":1.0},"424":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"480":{"tf":1.0},"494":{"tf":1.0},"512":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}},"y":{"df":2,"docs":{"233":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"254":{"tf":1.0},"338":{"tf":1.0},"481":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"448":{"tf":1.0},"456":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"186":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"263":{"tf":1.0},"352":{"tf":1.0},"4":{"tf":1.0},"451":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"379":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"401":{"tf":1.0}}}}}}}},"f":{"c":{"df":31,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"277":{"tf":1.0},"338":{"tf":1.0},"384":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}}}}}},"s":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"308":{"tf":1.0},"313":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"349":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"502":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":27,"docs":{"115":{"tf":1.0},"135":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"174":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"393":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"473":{"tf":1.0},"487":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"467":{"tf":1.0}}}}}}}}}},"t":{"df":1,"docs":{"221":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"113":{"tf":1.0},"221":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"38":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"149":{"tf":1.0},"150":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"66":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":31,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"187":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"236":{"tf":1.0},"252":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"291":{"tf":1.0},"311":{"tf":1.0},"327":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"368":{"tf":1.0},"382":{"tf":1.0},"387":{"tf":1.0},"404":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"470":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"438":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"36":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":30,"docs":{"124":{"tf":1.0},"145":{"tf":1.0},"161":{"tf":1.0},"182":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"250":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.0},"339":{"tf":1.0},"350":{"tf":1.0},"366":{"tf":1.0},"380":{"tf":1.0},"385":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"439":{"tf":1.0},"449":{"tf":1.0},"468":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"130":{"tf":1.0}}}},"df":5,"docs":{"184":{"tf":1.0},"215":{"tf":1.0},"249":{"tf":1.0},"407":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"115":{"tf":1.0},"135":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"393":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"473":{"tf":1.0},"487":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"412":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"173":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"113":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"412":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"34":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"207":{"tf":1.0}}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"213":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":26,"docs":{"121":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"21":{"tf":1.0},"231":{"tf":1.0},"247":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"286":{"tf":1.0},"306":{"tf":1.0},"323":{"tf":1.0},"336":{"tf":1.0},"347":{"tf":1.0},"377":{"tf":1.0},"399":{"tf":1.0},"411":{"tf":1.0},"423":{"tf":1.0},"436":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"123":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"425":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":5,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"x":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"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":["introduction.html#introduction","proposed/000x-lowering-deposits-assethub.html#rfc-0000-lowering-nft-deposits-on-polkadot-and-kusama-asset-hubs","proposed/000x-lowering-deposits-assethub.html#summary","proposed/000x-lowering-deposits-assethub.html#motivation","proposed/000x-lowering-deposits-assethub.html#requirements","proposed/000x-lowering-deposits-assethub.html#stakeholders","proposed/000x-lowering-deposits-assethub.html#explanation","proposed/000x-lowering-deposits-assethub.html#current-code-structure","proposed/000x-lowering-deposits-assethub.html#proposed-modification-using-the-deposit-function","proposed/000x-lowering-deposits-assethub.html#enhanced-approach-to-further-lower-barriers-for-entry","proposed/000x-lowering-deposits-assethub.html#discussion-of-other-proposals","proposed/000x-lowering-deposits-assethub.html#enhanced-weak-governance-origin-model","proposed/000x-lowering-deposits-assethub.html#function-based-pricing-model","proposed/000x-lowering-deposits-assethub.html#linking-deposit-to-usdx-value","proposed/000x-lowering-deposits-assethub.html#drawbacks","proposed/000x-lowering-deposits-assethub.html#testing-security-and-privacy","proposed/000x-lowering-deposits-assethub.html#security-concerns","proposed/000x-lowering-deposits-assethub.html#performance-ergonomics-and-compatibility","proposed/000x-lowering-deposits-assethub.html#performance","proposed/000x-lowering-deposits-assethub.html#ergonomics","proposed/000x-lowering-deposits-assethub.html#compatibility","proposed/000x-lowering-deposits-assethub.html#unresolved-questions","proposed/000x-lowering-deposits-assethub.html#future-directions-and-related-material","proposed/0026-sassafras-consensus.html#rfc-0026-sassafras-consensus-protocol","proposed/0026-sassafras-consensus.html#abstract","proposed/0026-sassafras-consensus.html#1-motivation","proposed/0026-sassafras-consensus.html#11-relevance-to-implementors","proposed/0026-sassafras-consensus.html#12-supporting-sassafras-for-polkadot","proposed/0026-sassafras-consensus.html#2-stakeholders","proposed/0026-sassafras-consensus.html#21-blockchain-developers","proposed/0026-sassafras-consensus.html#22-polkadot-ecosystem-contributors","proposed/0026-sassafras-consensus.html#3-notation-and-convention","proposed/0026-sassafras-consensus.html#31-data-structures-definitions-and-encoding","proposed/0026-sassafras-consensus.html#32-pseudo-code","proposed/0026-sassafras-consensus.html#33-incremental-introduction-of-types-and-functions","proposed/0026-sassafras-consensus.html#4-protocol-introduction","proposed/0026-sassafras-consensus.html#41-submission-of-candidate-tickets","proposed/0026-sassafras-consensus.html#42-validation-of-candidate-tickets","proposed/0026-sassafras-consensus.html#43-tickets-and-slots-binding","proposed/0026-sassafras-consensus.html#44-claim-of-ticket-ownership","proposed/0026-sassafras-consensus.html#45-validation-of-ticket-ownership","proposed/0026-sassafras-consensus.html#5-bandersnatch-vrfs-cryptographic-primitives","proposed/0026-sassafras-consensus.html#51-vrf-input","proposed/0026-sassafras-consensus.html#52-vrf-preoutput","proposed/0026-sassafras-consensus.html#53-vrf-signature-data","proposed/0026-sassafras-consensus.html#54-vrf-signature","proposed/0026-sassafras-consensus.html#6-sassafras-protocol","proposed/0026-sassafras-consensus.html#61-epochs-first-block","proposed/0026-sassafras-consensus.html#62-creation-and-submission-of-candidate-tickets","proposed/0026-sassafras-consensus.html#63-validation-of-candidate-tickets","proposed/0026-sassafras-consensus.html#64-ticket-slot-binding","proposed/0026-sassafras-consensus.html#65-slot-claim-production","proposed/0026-sassafras-consensus.html#66-slot-claim-verification","proposed/0026-sassafras-consensus.html#661-primary-method","proposed/0026-sassafras-consensus.html#67-randomness-accumulator","proposed/0026-sassafras-consensus.html#7-drawbacks","proposed/0026-sassafras-consensus.html#8-testing-security-and-privacy","proposed/0026-sassafras-consensus.html#9-performance-ergonomics-and-compatibility","proposed/0026-sassafras-consensus.html#91-performance","proposed/0026-sassafras-consensus.html#92-ergonomics","proposed/0026-sassafras-consensus.html#93-compatibility","proposed/0026-sassafras-consensus.html#10-prior-art-and-references","proposed/0026-sassafras-consensus.html#11-unresolved-questions","proposed/0026-sassafras-consensus.html#12-future-directions-and-related-material","proposed/0026-sassafras-consensus.html#121-interactions-with-on-chain-code","proposed/0026-sassafras-consensus.html#122-deployment-strategies","proposed/0026-sassafras-consensus.html#123-zk-snark-srs-initialization","proposed/0026-sassafras-consensus.html#124-anonymous-submission-of-tickets","proposed/0034-xcm-absolute-location-account-derivation.html#rfc-34-xcm-absolute-location-account-derivation","proposed/0034-xcm-absolute-location-account-derivation.html#summary","proposed/0034-xcm-absolute-location-account-derivation.html#motivation","proposed/0034-xcm-absolute-location-account-derivation.html#stakeholders","proposed/0034-xcm-absolute-location-account-derivation.html#explanation","proposed/0034-xcm-absolute-location-account-derivation.html#drawbacks","proposed/0034-xcm-absolute-location-account-derivation.html#testing-security-and-privacy","proposed/0034-xcm-absolute-location-account-derivation.html#performance-ergonomics-and-compatibility","proposed/0034-xcm-absolute-location-account-derivation.html#performance","proposed/0034-xcm-absolute-location-account-derivation.html#ergonomics","proposed/0034-xcm-absolute-location-account-derivation.html#compatibility","proposed/0034-xcm-absolute-location-account-derivation.html#prior-art-and-references","proposed/0034-xcm-absolute-location-account-derivation.html#unresolved-questions","proposed/0042-extrinsics-state-version.html#rfc-0042-add-system-version-that-replaces-stateversion-on-runtimeversion","proposed/0042-extrinsics-state-version.html#summary","proposed/0042-extrinsics-state-version.html#motivation","proposed/0042-extrinsics-state-version.html#stakeholders","proposed/0042-extrinsics-state-version.html#explanation","proposed/0042-extrinsics-state-version.html#drawbacks","proposed/0042-extrinsics-state-version.html#testing-security-and-privacy","proposed/0042-extrinsics-state-version.html#performance-ergonomics-and-compatibility","proposed/0042-extrinsics-state-version.html#performance","proposed/0042-extrinsics-state-version.html#ergonomics","proposed/0042-extrinsics-state-version.html#compatibility","proposed/0042-extrinsics-state-version.html#prior-art-and-references","proposed/0042-extrinsics-state-version.html#unresolved-questions","proposed/0042-extrinsics-state-version.html#future-directions-and-related-material","proposed/0046-metadata-for-offline-signers.html#rfc-0000-metadata-for-offline-signers","proposed/0046-metadata-for-offline-signers.html#summary","proposed/0046-metadata-for-offline-signers.html#motivation","proposed/0046-metadata-for-offline-signers.html#background","proposed/0046-metadata-for-offline-signers.html#solution-requirements","proposed/0046-metadata-for-offline-signers.html#stakeholders","proposed/0046-metadata-for-offline-signers.html#explanation","proposed/0046-metadata-for-offline-signers.html#definitions","proposed/0046-metadata-for-offline-signers.html#general-flow","proposed/0046-metadata-for-offline-signers.html#metadata-modularization","proposed/0046-metadata-for-offline-signers.html#merging-protocol","proposed/0046-metadata-for-offline-signers.html#complete-binary-merkle-tree-construction-protocol","proposed/0046-metadata-for-offline-signers.html#digest","proposed/0046-metadata-for-offline-signers.html#chain-verification","proposed/0046-metadata-for-offline-signers.html#drawbacks","proposed/0046-metadata-for-offline-signers.html#increased-transaction-size","proposed/0046-metadata-for-offline-signers.html#transition-overhead","proposed/0046-metadata-for-offline-signers.html#testing-security-and-privacy","proposed/0046-metadata-for-offline-signers.html#performance-ergonomics-and-compatibility","proposed/0046-metadata-for-offline-signers.html#performance","proposed/0046-metadata-for-offline-signers.html#ergonomics","proposed/0046-metadata-for-offline-signers.html#compatibility","proposed/0046-metadata-for-offline-signers.html#prior-art-and-references","proposed/0046-metadata-for-offline-signers.html#unresolved-questions","proposed/0046-metadata-for-offline-signers.html#future-directions-and-related-material","proposed/0047-assignment-of-availability-chunks.html#rfc-0047-assignment-of-availability-chunks-to-validators","proposed/0047-assignment-of-availability-chunks.html#summary","proposed/0047-assignment-of-availability-chunks.html#motivation","proposed/0047-assignment-of-availability-chunks.html#stakeholders","proposed/0047-assignment-of-availability-chunks.html#explanation","proposed/0047-assignment-of-availability-chunks.html#systematic-erasure-codes","proposed/0047-assignment-of-availability-chunks.html#availability-recovery-at-present","proposed/0047-assignment-of-availability-chunks.html#availability-recovery-from-systematic-chunks","proposed/0047-assignment-of-availability-chunks.html#chunk-assignment-function","proposed/0047-assignment-of-availability-chunks.html#network-protocol","proposed/0047-assignment-of-availability-chunks.html#upgrade-path","proposed/0047-assignment-of-availability-chunks.html#drawbacks","proposed/0047-assignment-of-availability-chunks.html#testing-security-and-privacy","proposed/0047-assignment-of-availability-chunks.html#performance-ergonomics-and-compatibility","proposed/0047-assignment-of-availability-chunks.html#performance","proposed/0047-assignment-of-availability-chunks.html#ergonomics","proposed/0047-assignment-of-availability-chunks.html#compatibility","proposed/0047-assignment-of-availability-chunks.html#prior-art-and-references","proposed/0047-assignment-of-availability-chunks.html#unresolved-questions","proposed/0047-assignment-of-availability-chunks.html#future-directions-and-related-material","proposed/0047-assignment-of-availability-chunks.html#appendix-a","proposed/0059-nodes-capabilities-discovery.html#rfc-0059-add-a-discovery-mechanism-for-nodes-based-on-their-capabilities","proposed/0059-nodes-capabilities-discovery.html#summary","proposed/0059-nodes-capabilities-discovery.html#motivation","proposed/0059-nodes-capabilities-discovery.html#stakeholders","proposed/0059-nodes-capabilities-discovery.html#explanation","proposed/0059-nodes-capabilities-discovery.html#capabilities","proposed/0059-nodes-capabilities-discovery.html#dht-provider-registration","proposed/0059-nodes-capabilities-discovery.html#secondary-dhts","proposed/0059-nodes-capabilities-discovery.html#head-of-the-chain-providers","proposed/0059-nodes-capabilities-discovery.html#drawbacks","proposed/0059-nodes-capabilities-discovery.html#testing-security-and-privacy","proposed/0059-nodes-capabilities-discovery.html#performance-ergonomics-and-compatibility","proposed/0059-nodes-capabilities-discovery.html#performance","proposed/0059-nodes-capabilities-discovery.html#ergonomics","proposed/0059-nodes-capabilities-discovery.html#compatibility","proposed/0059-nodes-capabilities-discovery.html#prior-art-and-references","proposed/0059-nodes-capabilities-discovery.html#unresolved-questions","proposed/0059-nodes-capabilities-discovery.html#future-directions-and-related-material","proposed/0061-allocator-inside-of-runtime.html#rfc-0061-support-allocator-inside-of-runtime","proposed/0061-allocator-inside-of-runtime.html#summary","proposed/0061-allocator-inside-of-runtime.html#motivation","proposed/0061-allocator-inside-of-runtime.html#stakeholders","proposed/0061-allocator-inside-of-runtime.html#explanation","proposed/0061-allocator-inside-of-runtime.html#runtime-side-spec","proposed/0061-allocator-inside-of-runtime.html#client-side-spec","proposed/0061-allocator-inside-of-runtime.html#drawbacks","proposed/0061-allocator-inside-of-runtime.html#testing-security-and-privacy","proposed/0061-allocator-inside-of-runtime.html#performance-ergonomics-and-compatibility","proposed/0061-allocator-inside-of-runtime.html#performance","proposed/0061-allocator-inside-of-runtime.html#ergonomics","proposed/0061-allocator-inside-of-runtime.html#compatibility","proposed/0061-allocator-inside-of-runtime.html#prior-art-and-references","proposed/0061-allocator-inside-of-runtime.html#unresolved-questions","proposed/0061-allocator-inside-of-runtime.html#future-directions-and-related-material","proposed/0066-add-smartcontracts-to-assethub.html#rfc-0066-add-evmink-contracts-pallets-to-asset-hub-for-polkadot","proposed/0066-add-smartcontracts-to-assethub.html#summary","proposed/0066-add-smartcontracts-to-assethub.html#motivation","proposed/0066-add-smartcontracts-to-assethub.html#definft-applications-need-smart-contracts-on-assethub","proposed/0066-add-smartcontracts-to-assethub.html#rollups-need-smart-contracts-on-assethub","proposed/0066-add-smartcontracts-to-assethub.html#ink-on-assethub-will-lead-to-coreplay-developers--on-assethub","proposed/0066-add-smartcontracts-to-assethub.html#stakeholders","proposed/0066-add-smartcontracts-to-assethub.html#explanation","proposed/0066-add-smartcontracts-to-assethub.html#limit-smart-contract-weight-allocation","proposed/0066-add-smartcontracts-to-assethub.html#model-assethub-assets-inside-evm-smart-contracts-based-on-astar","proposed/0066-add-smartcontracts-to-assethub.html#new-dot-revenue-sources","proposed/0066-add-smartcontracts-to-assethub.html#new-revenue-from-assethub-evm-contracts","proposed/0066-add-smartcontracts-to-assethub.html#new-revenue-for-inkcoreplay-contracts","proposed/0066-add-smartcontracts-to-assethub.html#drawbacks-and-tradeoffs","proposed/0066-add-smartcontracts-to-assethub.html#testing-security-and-privacy","proposed/0066-add-smartcontracts-to-assethub.html#performance-ergonomics-and-compatibility","proposed/0066-add-smartcontracts-to-assethub.html#performance","proposed/0066-add-smartcontracts-to-assethub.html#ergonomics","proposed/0066-add-smartcontracts-to-assethub.html#compatibility","proposed/0066-add-smartcontracts-to-assethub.html#unresolved-questions","proposed/0066-add-smartcontracts-to-assethub.html#future-directions-and-related-material","approved/0001-agile-coretime.html#rfc-1-agile-coretime","approved/0001-agile-coretime.html#summary","approved/0001-agile-coretime.html#motivation","approved/0001-agile-coretime.html#present-system","approved/0001-agile-coretime.html#problems","approved/0001-agile-coretime.html#requirements","approved/0001-agile-coretime.html#stakeholders","approved/0001-agile-coretime.html#explanation","approved/0001-agile-coretime.html#overview","approved/0001-agile-coretime.html#detail","approved/0001-agile-coretime.html#specific-functions-of-the-coretime-chain","approved/0001-agile-coretime.html#notes-on-the-instantaneous-coretime-market","approved/0001-agile-coretime.html#notes-on-economics","approved/0001-agile-coretime.html#notes-on-types","approved/0001-agile-coretime.html#rollout","approved/0001-agile-coretime.html#performance-ergonomics-and-compatibility","approved/0001-agile-coretime.html#testing-security-and-privacy","approved/0001-agile-coretime.html#future-directions-and-related-material","approved/0001-agile-coretime.html#drawbacks-alternatives-and-unknowns","approved/0001-agile-coretime.html#prior-art-and-references","approved/0005-coretime-interface.html#rfc-5-coretime-interface","approved/0005-coretime-interface.html#summary","approved/0005-coretime-interface.html#motivation","approved/0005-coretime-interface.html#requirements","approved/0005-coretime-interface.html#stakeholders","approved/0005-coretime-interface.html#explanation","approved/0005-coretime-interface.html#ump-message-types","approved/0005-coretime-interface.html#dmp-message-types","approved/0005-coretime-interface.html#realistic-limits-of-the-usage","approved/0005-coretime-interface.html#performance-ergonomics-and-compatibility","approved/0005-coretime-interface.html#testing-security-and-privacy","approved/0005-coretime-interface.html#future-directions-and-related-material","approved/0005-coretime-interface.html#drawbacks-alternatives-and-unknowns","approved/0005-coretime-interface.html#prior-art-and-references","approved/0007-system-collator-selection.html#rfc-0007-system-collator-selection","approved/0007-system-collator-selection.html#summary","approved/0007-system-collator-selection.html#motivation","approved/0007-system-collator-selection.html#requirements","approved/0007-system-collator-selection.html#stakeholders","approved/0007-system-collator-selection.html#explanation","approved/0007-system-collator-selection.html#set-size","approved/0007-system-collator-selection.html#drawbacks","approved/0007-system-collator-selection.html#testing-security-and-privacy","approved/0007-system-collator-selection.html#performance-ergonomics-and-compatibility","approved/0007-system-collator-selection.html#performance","approved/0007-system-collator-selection.html#ergonomics","approved/0007-system-collator-selection.html#compatibility","approved/0007-system-collator-selection.html#prior-art-and-references","approved/0007-system-collator-selection.html#written-discussions","approved/0007-system-collator-selection.html#prior-feedback-and-input-from","approved/0007-system-collator-selection.html#unresolved-questions","approved/0007-system-collator-selection.html#future-directions-and-related-material","approved/0008-parachain-bootnodes-dht.html#rfc-0008-store-parachain-bootnodes-in-relay-chain-dht","approved/0008-parachain-bootnodes-dht.html#summary","approved/0008-parachain-bootnodes-dht.html#motivation","approved/0008-parachain-bootnodes-dht.html#stakeholders","approved/0008-parachain-bootnodes-dht.html#explanation","approved/0008-parachain-bootnodes-dht.html#dht-provider-registration","approved/0008-parachain-bootnodes-dht.html#new-networking-protocol","approved/0008-parachain-bootnodes-dht.html#drawbacks","approved/0008-parachain-bootnodes-dht.html#testing-security-and-privacy","approved/0008-parachain-bootnodes-dht.html#performance-ergonomics-and-compatibility","approved/0008-parachain-bootnodes-dht.html#performance","approved/0008-parachain-bootnodes-dht.html#ergonomics","approved/0008-parachain-bootnodes-dht.html#compatibility","approved/0008-parachain-bootnodes-dht.html#prior-art-and-references","approved/0008-parachain-bootnodes-dht.html#unresolved-questions","approved/0008-parachain-bootnodes-dht.html#future-directions-and-related-material","approved/0012-process-for-adding-new-collectives.html#rfc-0012-process-for-adding-new-system-collectives","approved/0012-process-for-adding-new-collectives.html#summary","approved/0012-process-for-adding-new-collectives.html#motivation","approved/0012-process-for-adding-new-collectives.html#stakeholders","approved/0012-process-for-adding-new-collectives.html#explanation","approved/0012-process-for-adding-new-collectives.html#removing-collectives","approved/0012-process-for-adding-new-collectives.html#drawbacks","approved/0012-process-for-adding-new-collectives.html#testing-security-and-privacy","approved/0012-process-for-adding-new-collectives.html#performance-ergonomics-and-compatibility","approved/0012-process-for-adding-new-collectives.html#prior-art-and-references","approved/0012-process-for-adding-new-collectives.html#unresolved-questions","approved/0014-improve-locking-mechanism-for-parachains.html#rfc-0014-improve-locking-mechanism-for-parachains","approved/0014-improve-locking-mechanism-for-parachains.html#summary","approved/0014-improve-locking-mechanism-for-parachains.html#motivation","approved/0014-improve-locking-mechanism-for-parachains.html#requirements","approved/0014-improve-locking-mechanism-for-parachains.html#stakeholders","approved/0014-improve-locking-mechanism-for-parachains.html#explanation","approved/0014-improve-locking-mechanism-for-parachains.html#status-quo","approved/0014-improve-locking-mechanism-for-parachains.html#proposed-changes","approved/0014-improve-locking-mechanism-for-parachains.html#migration","approved/0014-improve-locking-mechanism-for-parachains.html#drawbacks","approved/0014-improve-locking-mechanism-for-parachains.html#testing-security-and-privacy","approved/0014-improve-locking-mechanism-for-parachains.html#performance","approved/0014-improve-locking-mechanism-for-parachains.html#ergonomics","approved/0014-improve-locking-mechanism-for-parachains.html#compatibility","approved/0014-improve-locking-mechanism-for-parachains.html#prior-art-and-references","approved/0014-improve-locking-mechanism-for-parachains.html#unresolved-questions","approved/0014-improve-locking-mechanism-for-parachains.html#future-directions-and-related-material","approved/0022-adopt-encointer-runtime.html#rfc-0022-adopt-encointer-runtime","approved/0022-adopt-encointer-runtime.html#summary","approved/0022-adopt-encointer-runtime.html#motivation","approved/0022-adopt-encointer-runtime.html#stakeholders","approved/0022-adopt-encointer-runtime.html#explanation","approved/0022-adopt-encointer-runtime.html#drawbacks","approved/0022-adopt-encointer-runtime.html#testing-security-and-privacy","approved/0022-adopt-encointer-runtime.html#performance-ergonomics-and-compatibility","approved/0022-adopt-encointer-runtime.html#prior-art-and-references","approved/0022-adopt-encointer-runtime.html#unresolved-questions","approved/0022-adopt-encointer-runtime.html#future-directions-and-related-material","approved/0032-minimal-relay.html#rfc-0032-minimal-relay","approved/0032-minimal-relay.html#summary","approved/0032-minimal-relay.html#motivation","approved/0032-minimal-relay.html#stakeholders","approved/0032-minimal-relay.html#explanation","approved/0032-minimal-relay.html#migrations","approved/0032-minimal-relay.html#interfaces","approved/0032-minimal-relay.html#functional-architecture","approved/0032-minimal-relay.html#resource-allocation","approved/0032-minimal-relay.html#deployment","approved/0032-minimal-relay.html#kusama","approved/0032-minimal-relay.html#drawbacks","approved/0032-minimal-relay.html#testing-security-and-privacy","approved/0032-minimal-relay.html#performance-ergonomics-and-compatibility","approved/0032-minimal-relay.html#performance","approved/0032-minimal-relay.html#ergonomics","approved/0032-minimal-relay.html#compatibility","approved/0032-minimal-relay.html#prior-art-and-references","approved/0032-minimal-relay.html#unresolved-questions","approved/0032-minimal-relay.html#future-directions-and-related-material","approved/0050-fellowship-salaries.html#rfc-0050-fellowship-salaries","approved/0050-fellowship-salaries.html#summary","approved/0050-fellowship-salaries.html#motivation","approved/0050-fellowship-salaries.html#stakeholders","approved/0050-fellowship-salaries.html#explanation","approved/0050-fellowship-salaries.html#salary-asset","approved/0050-fellowship-salaries.html#projections","approved/0050-fellowship-salaries.html#updates","approved/0050-fellowship-salaries.html#drawbacks","approved/0050-fellowship-salaries.html#testing-security-and-privacy","approved/0050-fellowship-salaries.html#performance-ergonomics-and-compatibility","approved/0050-fellowship-salaries.html#performance","approved/0050-fellowship-salaries.html#ergonomics","approved/0050-fellowship-salaries.html#compatibility","approved/0050-fellowship-salaries.html#prior-art-and-references","approved/0050-fellowship-salaries.html#unresolved-questions","approved/0056-one-transaction-per-notification.html#rfc-0056-enforce-only-one-transaction-per-notification","approved/0056-one-transaction-per-notification.html#summary","approved/0056-one-transaction-per-notification.html#motivation","approved/0056-one-transaction-per-notification.html#stakeholders","approved/0056-one-transaction-per-notification.html#explanation","approved/0056-one-transaction-per-notification.html#drawbacks","approved/0056-one-transaction-per-notification.html#testing-security-and-privacy","approved/0056-one-transaction-per-notification.html#performance-ergonomics-and-compatibility","approved/0056-one-transaction-per-notification.html#performance","approved/0056-one-transaction-per-notification.html#ergonomics","approved/0056-one-transaction-per-notification.html#compatibility","approved/0056-one-transaction-per-notification.html#prior-art-and-references","approved/0056-one-transaction-per-notification.html#unresolved-questions","approved/0056-one-transaction-per-notification.html#future-directions-and-related-material","stale/0004-remove-unnecessary-allocator-usage.html#rfc-0004-remove-the-host-side-runtime-memory-allocator","stale/0004-remove-unnecessary-allocator-usage.html#summary","stale/0004-remove-unnecessary-allocator-usage.html#motivation","stale/0004-remove-unnecessary-allocator-usage.html#stakeholders","stale/0004-remove-unnecessary-allocator-usage.html#explanation","stale/0004-remove-unnecessary-allocator-usage.html#new-host-functions","stale/0004-remove-unnecessary-allocator-usage.html#other-changes","stale/0004-remove-unnecessary-allocator-usage.html#drawbacks","stale/0004-remove-unnecessary-allocator-usage.html#prior-art","stale/0004-remove-unnecessary-allocator-usage.html#unresolved-questions","stale/0004-remove-unnecessary-allocator-usage.html#future-possibilities","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#rfc-0006-dynamic-pricing-for-bulk-coretime-sales","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#summary","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#motivation","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#requirements","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#stakeholders","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#explanation","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#overview","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#parameters","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#function","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#pseudo-code","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#properties-of-the-curve","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#example-configurations","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#drawbacks","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#prior-art-and-references","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#future-possibilities","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#references","stale/0009-improved-net-light-client-requests.html#rfc-0009-improved-light-client-requests-networking-protocol","stale/0009-improved-net-light-client-requests.html#summary","stale/0009-improved-net-light-client-requests.html#motivation","stale/0009-improved-net-light-client-requests.html#stakeholders","stale/0009-improved-net-light-client-requests.html#explanation","stale/0009-improved-net-light-client-requests.html#drawbacks","stale/0009-improved-net-light-client-requests.html#testing-security-and-privacy","stale/0009-improved-net-light-client-requests.html#performance-ergonomics-and-compatibility","stale/0009-improved-net-light-client-requests.html#performance","stale/0009-improved-net-light-client-requests.html#ergonomics","stale/0009-improved-net-light-client-requests.html#compatibility","stale/0009-improved-net-light-client-requests.html#prior-art-and-references","stale/0009-improved-net-light-client-requests.html#unresolved-questions","stale/0009-improved-net-light-client-requests.html#future-directions-and-related-material","stale/0010-burn-coretime-revenue.html#rfc-0010-burn-coretime-revenue","stale/0010-burn-coretime-revenue.html#summary","stale/0010-burn-coretime-revenue.html#motivation","stale/0010-burn-coretime-revenue.html#stakeholders","stale/0010-burn-coretime-revenue.html#explanation","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#rfc-0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#summary","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#motivation","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#stakeholders","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#explanation","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#coreinitialize_block","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#blockbuilderlast_inherent","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#combined","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#drawbacks","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#testing-security-and-privacy","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#performance-ergonomics-and-compatibility","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#performance","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#ergonomics","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#compatibility","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#prior-art-and-references","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#unresolved-questions","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#future-directions-and-related-material","stale/0015-market-design-revisit.html#rfc-0015-market-design-revisit","stale/0015-market-design-revisit.html#summary","stale/0015-market-design-revisit.html#motivation","stale/0015-market-design-revisit.html#stakeholders","stale/0015-market-design-revisit.html#explanation","stale/0015-market-design-revisit.html#bulk-markets","stale/0015-market-design-revisit.html#benefits-of-this-system","stale/0015-market-design-revisit.html#further-discussion-points","stale/0015-market-design-revisit.html#drawbacks","stale/0015-market-design-revisit.html#prior-art-and-references","stale/0015-market-design-revisit.html#unresolved-questions","stale/0020-treasurer-track-confirmation-period-duration-modification.html#rfc-0020-treasurer-track-confirmation-period-duration-modification","stale/0020-treasurer-track-confirmation-period-duration-modification.html#summary","stale/0020-treasurer-track-confirmation-period-duration-modification.html#motivation","stale/0020-treasurer-track-confirmation-period-duration-modification.html#stakeholders","stale/0020-treasurer-track-confirmation-period-duration-modification.html#explanation","stale/0020-treasurer-track-confirmation-period-duration-modification.html#drawbacks","stale/0020-treasurer-track-confirmation-period-duration-modification.html#testing-security-and-privacy","stale/0020-treasurer-track-confirmation-period-duration-modification.html#performance-ergonomics-and-compatibility","stale/0020-treasurer-track-confirmation-period-duration-modification.html#performance","stale/0020-treasurer-track-confirmation-period-duration-modification.html#ergonomics--compatibility","stale/0020-treasurer-track-confirmation-period-duration-modification.html#prior-art-and-references","stale/0020-treasurer-track-confirmation-period-duration-modification.html#unresolved-questions","stale/0020-treasurer-track-confirmation-period-duration-modification.html#future-directions-and-related-material","stale/0035-conviction-voting-delegation-modifications.html#rfc-0035-conviction-voting-delegation-modifications","stale/0035-conviction-voting-delegation-modifications.html#summary","stale/0035-conviction-voting-delegation-modifications.html#motivation","stale/0035-conviction-voting-delegation-modifications.html#stakeholders","stale/0035-conviction-voting-delegation-modifications.html#explanation","stale/0035-conviction-voting-delegation-modifications.html#drawbacks","stale/0035-conviction-voting-delegation-modifications.html#testing-security-and-privacy","stale/0035-conviction-voting-delegation-modifications.html#performance-ergonomics-and-compatibility","stale/0035-conviction-voting-delegation-modifications.html#performance","stale/0035-conviction-voting-delegation-modifications.html#ergonomics--compatibility","stale/0035-conviction-voting-delegation-modifications.html#prior-art-and-references","stale/0035-conviction-voting-delegation-modifications.html#unresolved-questions","stale/0035-conviction-voting-delegation-modifications.html#future-directions-and-related-material","stale/0043-storage-proof-size-hostfunction.html#rfc-0043-introduce-storage_proof_size-host-function-for-improved-parachain-block-utilization","stale/0043-storage-proof-size-hostfunction.html#summary","stale/0043-storage-proof-size-hostfunction.html#motivation","stale/0043-storage-proof-size-hostfunction.html#stakeholders","stale/0043-storage-proof-size-hostfunction.html#explanation","stale/0043-storage-proof-size-hostfunction.html#performance-ergonomics-and-compatibility","stale/0043-storage-proof-size-hostfunction.html#performance","stale/0043-storage-proof-size-hostfunction.html#ergonomics","stale/0043-storage-proof-size-hostfunction.html#compatibility","stale/0043-storage-proof-size-hostfunction.html#prior-art-and-references","stale/0044-rent-based-registration.html#rfc-0044-rent-based-registration-model","stale/0044-rent-based-registration.html#summary","stale/0044-rent-based-registration.html#motivation","stale/0044-rent-based-registration.html#requirements","stale/0044-rent-based-registration.html#stakeholders","stale/0044-rent-based-registration.html#explanation","stale/0044-rent-based-registration.html#registering-an-on-demand-parachain","stale/0044-rent-based-registration.html#on-demand-parachain-pruning","stale/0044-rent-based-registration.html#ensuring-rent-is-paid","stale/0044-rent-based-registration.html#on-demand-para-re-registration","stale/0044-rent-based-registration.html#drawbacks","stale/0044-rent-based-registration.html#testing-security-and-privacy","stale/0044-rent-based-registration.html#performance-ergonomics-and-compatibility","stale/0044-rent-based-registration.html#performance","stale/0044-rent-based-registration.html#ergonomics","stale/0044-rent-based-registration.html#compatibility","stale/0044-rent-based-registration.html#prior-art-and-references","stale/0044-rent-based-registration.html#unresolved-questions","stale/0044-rent-based-registration.html#future-directions-and-related-material","stale/0048-session-keys-runtime-api.html#rfc-0048-generate-ownership-proof-for-sessionkeys","stale/0048-session-keys-runtime-api.html#summary","stale/0048-session-keys-runtime-api.html#motivation","stale/0048-session-keys-runtime-api.html#stakeholders","stale/0048-session-keys-runtime-api.html#explanation","stale/0048-session-keys-runtime-api.html#drawbacks","stale/0048-session-keys-runtime-api.html#testing-security-and-privacy","stale/0048-session-keys-runtime-api.html#performance-ergonomics-and-compatibility","stale/0048-session-keys-runtime-api.html#performance","stale/0048-session-keys-runtime-api.html#ergonomics","stale/0048-session-keys-runtime-api.html#compatibility","stale/0048-session-keys-runtime-api.html#prior-art-and-references","stale/0048-session-keys-runtime-api.html#unresolved-questions","stale/0048-session-keys-runtime-api.html#future-directions-and-related-material","stale/0054-remove-heap-pages.html#rfc-0054-remove-the-concept-of-heap-pages-from-the-client","stale/0054-remove-heap-pages.html#summary","stale/0054-remove-heap-pages.html#motivation","stale/0054-remove-heap-pages.html#stakeholders","stale/0054-remove-heap-pages.html#explanation","stale/0054-remove-heap-pages.html#drawbacks","stale/0054-remove-heap-pages.html#testing-security-and-privacy","stale/0054-remove-heap-pages.html#performance-ergonomics-and-compatibility","stale/0054-remove-heap-pages.html#performance","stale/0054-remove-heap-pages.html#ergonomics","stale/0054-remove-heap-pages.html#compatibility","stale/0054-remove-heap-pages.html#prior-art-and-references","stale/0054-remove-heap-pages.html#unresolved-questions","stale/0054-remove-heap-pages.html#future-directions-and-related-material"],"index":{"documentStore":{"docInfo":{"0":{"body":16,"breadcrumbs":2,"title":1},"1":{"body":92,"breadcrumbs":18,"title":9},"10":{"body":12,"breadcrumbs":11,"title":2},"100":{"body":53,"breadcrumbs":6,"title":1},"101":{"body":19,"breadcrumbs":6,"title":1},"102":{"body":232,"breadcrumbs":6,"title":1},"103":{"body":28,"breadcrumbs":7,"title":2},"104":{"body":133,"breadcrumbs":7,"title":2},"105":{"body":9,"breadcrumbs":7,"title":2},"106":{"body":104,"breadcrumbs":11,"title":6},"107":{"body":42,"breadcrumbs":6,"title":1},"108":{"body":80,"breadcrumbs":7,"title":2},"109":{"body":0,"breadcrumbs":6,"title":1},"11":{"body":79,"breadcrumbs":14,"title":5},"110":{"body":15,"breadcrumbs":8,"title":3},"111":{"body":31,"breadcrumbs":7,"title":2},"112":{"body":40,"breadcrumbs":8,"title":3},"113":{"body":0,"breadcrumbs":8,"title":3},"114":{"body":23,"breadcrumbs":6,"title":1},"115":{"body":10,"breadcrumbs":6,"title":1},"116":{"body":18,"breadcrumbs":6,"title":1},"117":{"body":14,"breadcrumbs":8,"title":3},"118":{"body":12,"breadcrumbs":7,"title":2},"119":{"body":42,"breadcrumbs":9,"title":4},"12":{"body":60,"breadcrumbs":13,"title":4},"120":{"body":67,"breadcrumbs":12,"title":6},"121":{"body":20,"breadcrumbs":7,"title":1},"122":{"body":66,"breadcrumbs":7,"title":1},"123":{"body":5,"breadcrumbs":7,"title":1},"124":{"body":0,"breadcrumbs":7,"title":1},"125":{"body":77,"breadcrumbs":9,"title":3},"126":{"body":94,"breadcrumbs":9,"title":3},"127":{"body":82,"breadcrumbs":10,"title":4},"128":{"body":99,"breadcrumbs":9,"title":3},"129":{"body":261,"breadcrumbs":8,"title":2},"13":{"body":89,"breadcrumbs":13,"title":4},"130":{"body":172,"breadcrumbs":8,"title":2},"131":{"body":59,"breadcrumbs":7,"title":1},"132":{"body":11,"breadcrumbs":9,"title":3},"133":{"body":0,"breadcrumbs":9,"title":3},"134":{"body":45,"breadcrumbs":7,"title":1},"135":{"body":1,"breadcrumbs":7,"title":1},"136":{"body":19,"breadcrumbs":7,"title":1},"137":{"body":6,"breadcrumbs":9,"title":3},"138":{"body":1,"breadcrumbs":8,"title":2},"139":{"body":13,"breadcrumbs":10,"title":4},"14":{"body":161,"breadcrumbs":10,"title":1},"140":{"body":217,"breadcrumbs":7,"title":1},"141":{"body":60,"breadcrumbs":16,"title":8},"142":{"body":32,"breadcrumbs":9,"title":1},"143":{"body":98,"breadcrumbs":9,"title":1},"144":{"body":9,"breadcrumbs":9,"title":1},"145":{"body":23,"breadcrumbs":9,"title":1},"146":{"body":225,"breadcrumbs":9,"title":1},"147":{"body":125,"breadcrumbs":11,"title":3},"148":{"body":44,"breadcrumbs":10,"title":2},"149":{"body":65,"breadcrumbs":11,"title":3},"15":{"body":0,"breadcrumbs":12,"title":3},"150":{"body":2,"breadcrumbs":9,"title":1},"151":{"body":94,"breadcrumbs":11,"title":3},"152":{"body":0,"breadcrumbs":11,"title":3},"153":{"body":91,"breadcrumbs":9,"title":1},"154":{"body":1,"breadcrumbs":9,"title":1},"155":{"body":1,"breadcrumbs":9,"title":1},"156":{"body":1,"breadcrumbs":11,"title":3},"157":{"body":21,"breadcrumbs":10,"title":2},"158":{"body":74,"breadcrumbs":12,"title":4},"159":{"body":56,"breadcrumbs":12,"title":6},"16":{"body":9,"breadcrumbs":11,"title":2},"160":{"body":33,"breadcrumbs":7,"title":1},"161":{"body":122,"breadcrumbs":7,"title":1},"162":{"body":4,"breadcrumbs":7,"title":1},"163":{"body":0,"breadcrumbs":7,"title":1},"164":{"body":150,"breadcrumbs":9,"title":3},"165":{"body":100,"breadcrumbs":9,"title":3},"166":{"body":34,"breadcrumbs":7,"title":1},"167":{"body":33,"breadcrumbs":9,"title":3},"168":{"body":0,"breadcrumbs":9,"title":3},"169":{"body":19,"breadcrumbs":7,"title":1},"17":{"body":0,"breadcrumbs":12,"title":3},"170":{"body":16,"breadcrumbs":7,"title":1},"171":{"body":47,"breadcrumbs":7,"title":1},"172":{"body":8,"breadcrumbs":9,"title":3},"173":{"body":2,"breadcrumbs":8,"title":2},"174":{"body":22,"breadcrumbs":10,"title":4},"175":{"body":108,"breadcrumbs":18,"title":9},"176":{"body":53,"breadcrumbs":10,"title":1},"177":{"body":89,"breadcrumbs":10,"title":1},"178":{"body":122,"breadcrumbs":15,"title":6},"179":{"body":273,"breadcrumbs":14,"title":5},"18":{"body":35,"breadcrumbs":10,"title":1},"180":{"body":107,"breadcrumbs":15,"title":6},"181":{"body":83,"breadcrumbs":10,"title":1},"182":{"body":0,"breadcrumbs":10,"title":1},"183":{"body":170,"breadcrumbs":14,"title":5},"184":{"body":91,"breadcrumbs":18,"title":9},"185":{"body":23,"breadcrumbs":13,"title":4},"186":{"body":24,"breadcrumbs":14,"title":5},"187":{"body":43,"breadcrumbs":13,"title":4},"188":{"body":76,"breadcrumbs":11,"title":2},"189":{"body":25,"breadcrumbs":12,"title":3},"19":{"body":20,"breadcrumbs":10,"title":1},"190":{"body":0,"breadcrumbs":12,"title":3},"191":{"body":20,"breadcrumbs":10,"title":1},"192":{"body":40,"breadcrumbs":10,"title":1},"193":{"body":34,"breadcrumbs":10,"title":1},"194":{"body":22,"breadcrumbs":11,"title":2},"195":{"body":17,"breadcrumbs":13,"title":4},"196":{"body":65,"breadcrumbs":8,"title":4},"197":{"body":50,"breadcrumbs":5,"title":1},"198":{"body":0,"breadcrumbs":5,"title":1},"199":{"body":124,"breadcrumbs":6,"title":2},"2":{"body":38,"breadcrumbs":10,"title":1},"20":{"body":7,"breadcrumbs":10,"title":1},"200":{"body":153,"breadcrumbs":5,"title":1},"201":{"body":90,"breadcrumbs":5,"title":1},"202":{"body":54,"breadcrumbs":5,"title":1},"203":{"body":0,"breadcrumbs":5,"title":1},"204":{"body":438,"breadcrumbs":5,"title":1},"205":{"body":562,"breadcrumbs":5,"title":1},"206":{"body":630,"breadcrumbs":8,"title":4},"207":{"body":103,"breadcrumbs":8,"title":4},"208":{"body":410,"breadcrumbs":6,"title":2},"209":{"body":905,"breadcrumbs":6,"title":2},"21":{"body":25,"breadcrumbs":11,"title":2},"210":{"body":52,"breadcrumbs":5,"title":1},"211":{"body":33,"breadcrumbs":7,"title":3},"212":{"body":40,"breadcrumbs":7,"title":3},"213":{"body":35,"breadcrumbs":8,"title":4},"214":{"body":49,"breadcrumbs":7,"title":3},"215":{"body":34,"breadcrumbs":7,"title":3},"216":{"body":55,"breadcrumbs":8,"title":4},"217":{"body":43,"breadcrumbs":5,"title":1},"218":{"body":37,"breadcrumbs":5,"title":1},"219":{"body":73,"breadcrumbs":5,"title":1},"22":{"body":35,"breadcrumbs":13,"title":4},"220":{"body":21,"breadcrumbs":5,"title":1},"221":{"body":39,"breadcrumbs":5,"title":1},"222":{"body":235,"breadcrumbs":7,"title":3},"223":{"body":86,"breadcrumbs":7,"title":3},"224":{"body":32,"breadcrumbs":7,"title":3},"225":{"body":2,"breadcrumbs":7,"title":3},"226":{"body":11,"breadcrumbs":7,"title":3},"227":{"body":20,"breadcrumbs":8,"title":4},"228":{"body":2,"breadcrumbs":7,"title":3},"229":{"body":1,"breadcrumbs":7,"title":3},"23":{"body":176,"breadcrumbs":10,"title":5},"230":{"body":53,"breadcrumbs":10,"title":5},"231":{"body":40,"breadcrumbs":6,"title":1},"232":{"body":203,"breadcrumbs":6,"title":1},"233":{"body":34,"breadcrumbs":6,"title":1},"234":{"body":8,"breadcrumbs":6,"title":1},"235":{"body":176,"breadcrumbs":6,"title":1},"236":{"body":18,"breadcrumbs":7,"title":2},"237":{"body":11,"breadcrumbs":6,"title":1},"238":{"body":25,"breadcrumbs":8,"title":3},"239":{"body":14,"breadcrumbs":8,"title":3},"24":{"body":38,"breadcrumbs":6,"title":1},"240":{"body":21,"breadcrumbs":6,"title":1},"241":{"body":16,"breadcrumbs":6,"title":1},"242":{"body":8,"breadcrumbs":6,"title":1},"243":{"body":0,"breadcrumbs":8,"title":3},"244":{"body":16,"breadcrumbs":7,"title":2},"245":{"body":21,"breadcrumbs":8,"title":3},"246":{"body":2,"breadcrumbs":7,"title":2},"247":{"body":13,"breadcrumbs":9,"title":4},"248":{"body":57,"breadcrumbs":16,"title":8},"249":{"body":29,"breadcrumbs":9,"title":1},"25":{"body":34,"breadcrumbs":7,"title":2},"250":{"body":185,"breadcrumbs":9,"title":1},"251":{"body":15,"breadcrumbs":9,"title":1},"252":{"body":60,"breadcrumbs":9,"title":1},"253":{"body":110,"breadcrumbs":11,"title":3},"254":{"body":153,"breadcrumbs":11,"title":3},"255":{"body":96,"breadcrumbs":9,"title":1},"256":{"body":144,"breadcrumbs":11,"title":3},"257":{"body":0,"breadcrumbs":11,"title":3},"258":{"body":110,"breadcrumbs":9,"title":1},"259":{"body":1,"breadcrumbs":9,"title":1},"26":{"body":21,"breadcrumbs":8,"title":3},"260":{"body":1,"breadcrumbs":9,"title":1},"261":{"body":1,"breadcrumbs":11,"title":3},"262":{"body":21,"breadcrumbs":10,"title":2},"263":{"body":11,"breadcrumbs":12,"title":4},"264":{"body":44,"breadcrumbs":14,"title":7},"265":{"body":43,"breadcrumbs":8,"title":1},"266":{"body":81,"breadcrumbs":8,"title":1},"267":{"body":10,"breadcrumbs":8,"title":1},"268":{"body":101,"breadcrumbs":8,"title":1},"269":{"body":70,"breadcrumbs":9,"title":2},"27":{"body":24,"breadcrumbs":9,"title":4},"270":{"body":16,"breadcrumbs":8,"title":1},"271":{"body":1,"breadcrumbs":10,"title":3},"272":{"body":39,"breadcrumbs":10,"title":3},"273":{"body":7,"breadcrumbs":10,"title":3},"274":{"body":2,"breadcrumbs":9,"title":2},"275":{"body":48,"breadcrumbs":12,"title":6},"276":{"body":35,"breadcrumbs":7,"title":1},"277":{"body":152,"breadcrumbs":7,"title":1},"278":{"body":32,"breadcrumbs":7,"title":1},"279":{"body":4,"breadcrumbs":7,"title":1},"28":{"body":0,"breadcrumbs":7,"title":2},"280":{"body":0,"breadcrumbs":7,"title":1},"281":{"body":92,"breadcrumbs":8,"title":2},"282":{"body":52,"breadcrumbs":8,"title":2},"283":{"body":32,"breadcrumbs":7,"title":1},"284":{"body":111,"breadcrumbs":7,"title":1},"285":{"body":19,"breadcrumbs":9,"title":3},"286":{"body":4,"breadcrumbs":7,"title":1},"287":{"body":8,"breadcrumbs":7,"title":1},"288":{"body":5,"breadcrumbs":7,"title":1},"289":{"body":26,"breadcrumbs":9,"title":3},"29":{"body":10,"breadcrumbs":8,"title":3},"290":{"body":2,"breadcrumbs":8,"title":2},"291":{"body":34,"breadcrumbs":10,"title":4},"292":{"body":48,"breadcrumbs":10,"title":5},"293":{"body":20,"breadcrumbs":6,"title":1},"294":{"body":30,"breadcrumbs":6,"title":1},"295":{"body":52,"breadcrumbs":6,"title":1},"296":{"body":73,"breadcrumbs":6,"title":1},"297":{"body":38,"breadcrumbs":6,"title":1},"298":{"body":7,"breadcrumbs":8,"title":3},"299":{"body":1,"breadcrumbs":8,"title":3},"3":{"body":72,"breadcrumbs":10,"title":1},"30":{"body":18,"breadcrumbs":9,"title":4},"300":{"body":4,"breadcrumbs":8,"title":3},"301":{"body":2,"breadcrumbs":7,"title":2},"302":{"body":4,"breadcrumbs":9,"title":4},"303":{"body":54,"breadcrumbs":8,"title":4},"304":{"body":22,"breadcrumbs":5,"title":1},"305":{"body":85,"breadcrumbs":5,"title":1},"306":{"body":16,"breadcrumbs":5,"title":1},"307":{"body":42,"breadcrumbs":5,"title":1},"308":{"body":62,"breadcrumbs":5,"title":1},"309":{"body":62,"breadcrumbs":5,"title":1},"31":{"body":10,"breadcrumbs":8,"title":3},"310":{"body":127,"breadcrumbs":6,"title":2},"311":{"body":101,"breadcrumbs":6,"title":2},"312":{"body":324,"breadcrumbs":5,"title":1},"313":{"body":117,"breadcrumbs":5,"title":1},"314":{"body":12,"breadcrumbs":5,"title":1},"315":{"body":13,"breadcrumbs":7,"title":3},"316":{"body":6,"breadcrumbs":7,"title":3},"317":{"body":12,"breadcrumbs":5,"title":1},"318":{"body":35,"breadcrumbs":5,"title":1},"319":{"body":17,"breadcrumbs":5,"title":1},"32":{"body":46,"breadcrumbs":10,"title":5},"320":{"body":7,"breadcrumbs":7,"title":3},"321":{"body":14,"breadcrumbs":6,"title":2},"322":{"body":23,"breadcrumbs":8,"title":4},"323":{"body":48,"breadcrumbs":8,"title":4},"324":{"body":16,"breadcrumbs":5,"title":1},"325":{"body":70,"breadcrumbs":5,"title":1},"326":{"body":4,"breadcrumbs":5,"title":1},"327":{"body":78,"breadcrumbs":5,"title":1},"328":{"body":92,"breadcrumbs":6,"title":2},"329":{"body":67,"breadcrumbs":5,"title":1},"33":{"body":109,"breadcrumbs":8,"title":3},"330":{"body":12,"breadcrumbs":5,"title":1},"331":{"body":13,"breadcrumbs":5,"title":1},"332":{"body":1,"breadcrumbs":7,"title":3},"333":{"body":0,"breadcrumbs":7,"title":3},"334":{"body":1,"breadcrumbs":5,"title":1},"335":{"body":1,"breadcrumbs":5,"title":1},"336":{"body":1,"breadcrumbs":5,"title":1},"337":{"body":12,"breadcrumbs":7,"title":3},"338":{"body":2,"breadcrumbs":6,"title":2},"339":{"body":51,"breadcrumbs":14,"title":7},"34":{"body":22,"breadcrumbs":10,"title":5},"340":{"body":44,"breadcrumbs":8,"title":1},"341":{"body":100,"breadcrumbs":8,"title":1},"342":{"body":3,"breadcrumbs":8,"title":1},"343":{"body":121,"breadcrumbs":8,"title":1},"344":{"body":33,"breadcrumbs":8,"title":1},"345":{"body":1,"breadcrumbs":10,"title":3},"346":{"body":0,"breadcrumbs":10,"title":3},"347":{"body":1,"breadcrumbs":8,"title":1},"348":{"body":1,"breadcrumbs":8,"title":1},"349":{"body":19,"breadcrumbs":8,"title":1},"35":{"body":35,"breadcrumbs":8,"title":3},"350":{"body":1,"breadcrumbs":10,"title":3},"351":{"body":1,"breadcrumbs":9,"title":2},"352":{"body":4,"breadcrumbs":11,"title":4},"353":{"body":45,"breadcrumbs":16,"title":8},"354":{"body":10,"breadcrumbs":9,"title":1},"355":{"body":156,"breadcrumbs":9,"title":1},"356":{"body":4,"breadcrumbs":9,"title":1},"357":{"body":0,"breadcrumbs":9,"title":1},"358":{"body":1723,"breadcrumbs":11,"title":3},"359":{"body":52,"breadcrumbs":9,"title":1},"36":{"body":16,"breadcrumbs":9,"title":4},"360":{"body":12,"breadcrumbs":9,"title":1},"361":{"body":10,"breadcrumbs":10,"title":2},"362":{"body":71,"breadcrumbs":10,"title":2},"363":{"body":26,"breadcrumbs":10,"title":2},"364":{"body":54,"breadcrumbs":14,"title":7},"365":{"body":68,"breadcrumbs":8,"title":1},"366":{"body":87,"breadcrumbs":8,"title":1},"367":{"body":59,"breadcrumbs":8,"title":1},"368":{"body":18,"breadcrumbs":8,"title":1},"369":{"body":0,"breadcrumbs":8,"title":1},"37":{"body":13,"breadcrumbs":9,"title":4},"370":{"body":64,"breadcrumbs":8,"title":1},"371":{"body":66,"breadcrumbs":8,"title":1},"372":{"body":142,"breadcrumbs":8,"title":1},"373":{"body":19,"breadcrumbs":9,"title":2},"374":{"body":104,"breadcrumbs":9,"title":2},"375":{"body":151,"breadcrumbs":9,"title":2},"376":{"body":2,"breadcrumbs":8,"title":1},"377":{"body":28,"breadcrumbs":10,"title":3},"378":{"body":7,"breadcrumbs":9,"title":2},"379":{"body":10,"breadcrumbs":8,"title":1},"38":{"body":14,"breadcrumbs":9,"title":4},"380":{"body":52,"breadcrumbs":16,"title":8},"381":{"body":16,"breadcrumbs":9,"title":1},"382":{"body":224,"breadcrumbs":9,"title":1},"383":{"body":5,"breadcrumbs":9,"title":1},"384":{"body":482,"breadcrumbs":9,"title":1},"385":{"body":87,"breadcrumbs":9,"title":1},"386":{"body":137,"breadcrumbs":11,"title":3},"387":{"body":0,"breadcrumbs":11,"title":3},"388":{"body":23,"breadcrumbs":9,"title":1},"389":{"body":1,"breadcrumbs":9,"title":1},"39":{"body":16,"breadcrumbs":9,"title":4},"390":{"body":11,"breadcrumbs":9,"title":1},"391":{"body":6,"breadcrumbs":11,"title":3},"392":{"body":1,"breadcrumbs":10,"title":2},"393":{"body":17,"breadcrumbs":12,"title":4},"394":{"body":23,"breadcrumbs":10,"title":5},"395":{"body":36,"breadcrumbs":6,"title":1},"396":{"body":21,"breadcrumbs":6,"title":1},"397":{"body":4,"breadcrumbs":6,"title":1},"398":{"body":290,"breadcrumbs":6,"title":1},"399":{"body":55,"breadcrumbs":16,"title":8},"4":{"body":8,"breadcrumbs":10,"title":1},"40":{"body":7,"breadcrumbs":9,"title":4},"400":{"body":24,"breadcrumbs":9,"title":1},"401":{"body":67,"breadcrumbs":9,"title":1},"402":{"body":27,"breadcrumbs":9,"title":1},"403":{"body":0,"breadcrumbs":9,"title":1},"404":{"body":27,"breadcrumbs":9,"title":1},"405":{"body":15,"breadcrumbs":9,"title":1},"406":{"body":106,"breadcrumbs":9,"title":1},"407":{"body":13,"breadcrumbs":9,"title":1},"408":{"body":29,"breadcrumbs":11,"title":3},"409":{"body":0,"breadcrumbs":11,"title":3},"41":{"body":48,"breadcrumbs":10,"title":5},"410":{"body":17,"breadcrumbs":9,"title":1},"411":{"body":17,"breadcrumbs":9,"title":1},"412":{"body":16,"breadcrumbs":9,"title":1},"413":{"body":24,"breadcrumbs":11,"title":3},"414":{"body":30,"breadcrumbs":10,"title":2},"415":{"body":37,"breadcrumbs":12,"title":4},"416":{"body":48,"breadcrumbs":10,"title":5},"417":{"body":65,"breadcrumbs":6,"title":1},"418":{"body":190,"breadcrumbs":6,"title":1},"419":{"body":25,"breadcrumbs":6,"title":1},"42":{"body":91,"breadcrumbs":8,"title":3},"420":{"body":0,"breadcrumbs":6,"title":1},"421":{"body":367,"breadcrumbs":7,"title":2},"422":{"body":218,"breadcrumbs":7,"title":2},"423":{"body":80,"breadcrumbs":8,"title":3},"424":{"body":46,"breadcrumbs":6,"title":1},"425":{"body":23,"breadcrumbs":8,"title":3},"426":{"body":4,"breadcrumbs":7,"title":2},"427":{"body":48,"breadcrumbs":16,"title":8},"428":{"body":12,"breadcrumbs":9,"title":1},"429":{"body":102,"breadcrumbs":9,"title":1},"43":{"body":104,"breadcrumbs":8,"title":3},"430":{"body":44,"breadcrumbs":9,"title":1},"431":{"body":58,"breadcrumbs":9,"title":1},"432":{"body":19,"breadcrumbs":9,"title":1},"433":{"body":40,"breadcrumbs":11,"title":3},"434":{"body":0,"breadcrumbs":11,"title":3},"435":{"body":15,"breadcrumbs":9,"title":1},"436":{"body":49,"breadcrumbs":10,"title":2},"437":{"body":1,"breadcrumbs":11,"title":3},"438":{"body":62,"breadcrumbs":10,"title":2},"439":{"body":18,"breadcrumbs":12,"title":4},"44":{"body":58,"breadcrumbs":9,"title":4},"440":{"body":40,"breadcrumbs":12,"title":6},"441":{"body":61,"breadcrumbs":7,"title":1},"442":{"body":101,"breadcrumbs":7,"title":1},"443":{"body":15,"breadcrumbs":7,"title":1},"444":{"body":187,"breadcrumbs":7,"title":1},"445":{"body":17,"breadcrumbs":7,"title":1},"446":{"body":12,"breadcrumbs":9,"title":3},"447":{"body":0,"breadcrumbs":9,"title":3},"448":{"body":11,"breadcrumbs":7,"title":1},"449":{"body":40,"breadcrumbs":8,"title":2},"45":{"body":199,"breadcrumbs":8,"title":3},"450":{"body":1,"breadcrumbs":9,"title":3},"451":{"body":1,"breadcrumbs":8,"title":2},"452":{"body":39,"breadcrumbs":10,"title":4},"453":{"body":42,"breadcrumbs":20,"title":10},"454":{"body":28,"breadcrumbs":11,"title":1},"455":{"body":121,"breadcrumbs":11,"title":1},"456":{"body":15,"breadcrumbs":11,"title":1},"457":{"body":70,"breadcrumbs":11,"title":1},"458":{"body":0,"breadcrumbs":13,"title":3},"459":{"body":26,"breadcrumbs":11,"title":1},"46":{"body":0,"breadcrumbs":8,"title":3},"460":{"body":26,"breadcrumbs":11,"title":1},"461":{"body":7,"breadcrumbs":11,"title":1},"462":{"body":19,"breadcrumbs":13,"title":3},"463":{"body":61,"breadcrumbs":12,"title":6},"464":{"body":34,"breadcrumbs":7,"title":1},"465":{"body":92,"breadcrumbs":7,"title":1},"466":{"body":67,"breadcrumbs":7,"title":1},"467":{"body":4,"breadcrumbs":7,"title":1},"468":{"body":77,"breadcrumbs":7,"title":1},"469":{"body":237,"breadcrumbs":9,"title":3},"47":{"body":313,"breadcrumbs":9,"title":4},"470":{"body":124,"breadcrumbs":9,"title":3},"471":{"body":41,"breadcrumbs":9,"title":3},"472":{"body":106,"breadcrumbs":10,"title":4},"473":{"body":51,"breadcrumbs":7,"title":1},"474":{"body":27,"breadcrumbs":9,"title":3},"475":{"body":0,"breadcrumbs":9,"title":3},"476":{"body":4,"breadcrumbs":7,"title":1},"477":{"body":13,"breadcrumbs":7,"title":1},"478":{"body":3,"breadcrumbs":7,"title":1},"479":{"body":5,"breadcrumbs":9,"title":3},"48":{"body":491,"breadcrumbs":10,"title":5},"480":{"body":2,"breadcrumbs":8,"title":2},"481":{"body":37,"breadcrumbs":10,"title":4},"482":{"body":50,"breadcrumbs":12,"title":6},"483":{"body":46,"breadcrumbs":7,"title":1},"484":{"body":24,"breadcrumbs":7,"title":1},"485":{"body":8,"breadcrumbs":7,"title":1},"486":{"body":134,"breadcrumbs":7,"title":1},"487":{"body":21,"breadcrumbs":7,"title":1},"488":{"body":19,"breadcrumbs":9,"title":3},"489":{"body":0,"breadcrumbs":9,"title":3},"49":{"body":41,"breadcrumbs":9,"title":4},"490":{"body":8,"breadcrumbs":7,"title":1},"491":{"body":11,"breadcrumbs":7,"title":1},"492":{"body":19,"breadcrumbs":7,"title":1},"493":{"body":1,"breadcrumbs":9,"title":3},"494":{"body":1,"breadcrumbs":8,"title":2},"495":{"body":3,"breadcrumbs":10,"title":4},"496":{"body":49,"breadcrumbs":14,"title":7},"497":{"body":14,"breadcrumbs":8,"title":1},"498":{"body":113,"breadcrumbs":8,"title":1},"499":{"body":6,"breadcrumbs":8,"title":1},"5":{"body":69,"breadcrumbs":10,"title":1},"50":{"body":146,"breadcrumbs":9,"title":4},"500":{"body":180,"breadcrumbs":8,"title":1},"501":{"body":91,"breadcrumbs":8,"title":1},"502":{"body":25,"breadcrumbs":10,"title":3},"503":{"body":0,"breadcrumbs":10,"title":3},"504":{"body":44,"breadcrumbs":8,"title":1},"505":{"body":13,"breadcrumbs":8,"title":1},"506":{"body":31,"breadcrumbs":8,"title":1},"507":{"body":1,"breadcrumbs":10,"title":3},"508":{"body":1,"breadcrumbs":9,"title":2},"509":{"body":12,"breadcrumbs":11,"title":4},"51":{"body":332,"breadcrumbs":9,"title":4},"52":{"body":54,"breadcrumbs":9,"title":4},"53":{"body":93,"breadcrumbs":8,"title":3},"54":{"body":75,"breadcrumbs":8,"title":3},"55":{"body":1,"breadcrumbs":7,"title":2},"56":{"body":17,"breadcrumbs":9,"title":4},"57":{"body":0,"breadcrumbs":9,"title":4},"58":{"body":32,"breadcrumbs":7,"title":2},"59":{"body":2,"breadcrumbs":7,"title":2},"6":{"body":43,"breadcrumbs":10,"title":1},"60":{"body":22,"breadcrumbs":7,"title":2},"61":{"body":25,"breadcrumbs":9,"title":4},"62":{"body":1,"breadcrumbs":8,"title":3},"63":{"body":15,"breadcrumbs":10,"title":5},"64":{"body":42,"breadcrumbs":9,"title":4},"65":{"body":19,"breadcrumbs":8,"title":3},"66":{"body":43,"breadcrumbs":10,"title":5},"67":{"body":24,"breadcrumbs":9,"title":4},"68":{"body":45,"breadcrumbs":14,"title":7},"69":{"body":22,"breadcrumbs":8,"title":1},"7":{"body":113,"breadcrumbs":12,"title":3},"70":{"body":37,"breadcrumbs":8,"title":1},"71":{"body":2,"breadcrumbs":8,"title":1},"72":{"body":202,"breadcrumbs":8,"title":1},"73":{"body":3,"breadcrumbs":8,"title":1},"74":{"body":26,"breadcrumbs":10,"title":3},"75":{"body":0,"breadcrumbs":10,"title":3},"76":{"body":8,"breadcrumbs":8,"title":1},"77":{"body":6,"breadcrumbs":8,"title":1},"78":{"body":8,"breadcrumbs":8,"title":1},"79":{"body":10,"breadcrumbs":10,"title":3},"8":{"body":115,"breadcrumbs":14,"title":5},"80":{"body":7,"breadcrumbs":9,"title":2},"81":{"body":49,"breadcrumbs":16,"title":8},"82":{"body":33,"breadcrumbs":9,"title":1},"83":{"body":94,"breadcrumbs":9,"title":1},"84":{"body":6,"breadcrumbs":9,"title":1},"85":{"body":97,"breadcrumbs":9,"title":1},"86":{"body":11,"breadcrumbs":9,"title":1},"87":{"body":4,"breadcrumbs":11,"title":3},"88":{"body":8,"breadcrumbs":11,"title":3},"89":{"body":4,"breadcrumbs":9,"title":1},"9":{"body":142,"breadcrumbs":15,"title":6},"90":{"body":3,"breadcrumbs":9,"title":1},"91":{"body":3,"breadcrumbs":9,"title":1},"92":{"body":12,"breadcrumbs":11,"title":3},"93":{"body":4,"breadcrumbs":10,"title":2},"94":{"body":9,"breadcrumbs":12,"title":4},"95":{"body":74,"breadcrumbs":10,"title":5},"96":{"body":53,"breadcrumbs":6,"title":1},"97":{"body":0,"breadcrumbs":6,"title":1},"98":{"body":170,"breadcrumbs":6,"title":1},"99":{"body":161,"breadcrumbs":7,"title":2}},"docs":{"0":{"body":"This book contains the Polkadot Fellowship Requests for Comments (RFCs) detailing proposed changes to the technical implementation of the Polkadot network. polkadot-fellows/RFCs","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"(source) Table of Contents RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs Summary Motivation Requirements Stakeholders Explanation Current code structure Proposed Modification Using the Deposit Function Enhanced Approach to Further Lower Barriers for Entry Discussion of Other Proposals Enhanced Weak Governance Origin Model Function-Based Pricing Model Linking Deposit to USD(x) Value Drawbacks Testing, Security, and Privacy Security concerns Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Unresolved Questions Future Directions and Related Material Start Date 2 November 2023 Description A proposal to reduce the minimum deposit required for collection creation on the Polkadot and Kusama Asset Hub, making it more accessible and affordable for artists. Authors Aurora Poppyseed , Just_Luuuu , Viki Val","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs","id":"1","title":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs"},"10":{"body":"Several innovative proposals have been considered to enhance the network's adaptability and manage deposit requirements more effectively:","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Discussion of Other Proposals","id":"10","title":"Discussion of Other Proposals"},"100":{"body":"All chain teams are stakeholders, as implementing this feature would require timely effort on their side and would impact compatibility with older tools. This feature is essential for all offline signer tools; many regular signing tools might make use of it. In general, this RFC greatly improves security of any network implementing it, as many governing keys are used with offline signers. Implementing this RFC would remove requirement to maintain metadata portals manually, as task of metadata verification would be effectively moved to consensus mechanism of the chain.","breadcrumbs":"RFC-0000: Metadata for offline signers » Stakeholders","id":"100","title":"Stakeholders"},"101":{"body":"Detailed description of metadata shortening and digest process is provided in metadata-shortener crate (see cargo doc --open and examples). Below are presented algorithms of the process.","breadcrumbs":"RFC-0000: Metadata for offline signers » Explanation","id":"101","title":"Explanation"},"102":{"body":"Metadata structure Metadata in general consists of four sections: Types registry Pallets Extrinsic metadata Runtime type Of these, only sections 1-3 contain information required for extrinsic decoding. The most important section is (1) Types registry, that is mostly used in extrinsic decoding. It is also the largest part, thus it is modularized for fractional transmission. Part (2) contains runtime version and is otherwise useless for transaction decoding; thus its contents are reduced to this parameter and included into Metadata Descriptor. Part (3) is included into Metadata Descriptor verbatim. Metadata descriptor Values for: u8 metadata shortening protocol version, SCALE-encoded ExtrinsicMetadata, SCALE-encoded spec_version String, SCALE-encoded spec_name String, u16 base58 prefix, u8 decimals value or 0u8 if no units are defined, SCALE-encoded tokenSymbol String defined on chain to identify the name of currency (available for example through system.properties() RPC call) or empty string if no base units are defined, enum MetadataDescriptor { V0, V1(MetadataDescriptorV1),\n} struct MetadataDescriptorV1 { extrinsic_metadata: Vec, // SCALE from `ExtrinsicMetadata` spec_version: Vec, // SCALE form `String` spec_name: Vec, // SCALE from `String` base58_prefix: u16, decimals: u8, token_symbol: Vec, // SCALE from `String`\n} constitute metadata descriptor. This is minimal information that is, together with (shortened) types registry, sufficient to decode any signable transaction. Merkle tree A Complete Binary Merkle Tree ( CBMT ) is proposed as digest structure. Every node of the proposed tree has a 32-bit value. A terminal node of the tree we call leaf . Its value is input for digest. The top node of the tree we call root . All node values for non-leave nodes are not terminal are computed through non-commutative merge procedure of child nodes. In CBMT, all layers must be populated, except for the last one, that must have complete filling from the left. Nodes are numbered top-down and left-to-right starting with 0 at the top of tree. Example 8-node tree 0 / \\ 1 2 / \\ / \\ 3 4 5 6 / \\\n7 8 Nodes 4, 5, 6, 7, 8 are leaves\nNode 0 is root","breadcrumbs":"RFC-0000: Metadata for offline signers » Definitions","id":"102","title":"Definitions"},"103":{"body":"The metadata is converted into lean modular form (vector of chunks) A Merkle tree is constructed from the metadata chunks A root of tree is merged with the hash of the MetadataDescriptor Resulting value is a constant to be included in additionalSigned to prove that the metadata seen by cold device is genuine","breadcrumbs":"RFC-0000: Metadata for offline signers » General flow","id":"103","title":"General flow"},"104":{"body":"Structure of types in shortened metadata exactly matches structure of types in scale-info at MetadataV14 state, but doc field is always empty struct Type { path: Path, // vector of strings type_params: Vec, type_def: TypeDef, // enum of various types doc: Vec,\n} struct TypeParams { name: String, ty: Option,\n} Types registry is stripped from docs fields. Types records are separated into chunks, with enum variants being individual chunks differing by variant index; each chunk consisting of id (same as in full metadata registry) and SCALE-encoded 'Type' description (reduced to 1-variant enum for enum variants). Enums with 0 variants are treated as regular types. Chunks are sorted by id in ascending order; chunks with same id are sorted by enum variant index in ascending order. types_registry = metadataV14.types\nmodularized_registry = EmptyVector\nfor (id, type) in types.registry.iterate_enumerate { type.doc = empty_vector if (type is ReduceableEnum) { // false for 0-variant enums for variant in type.variants.iterate { variant_type = Type { path: type.path type_params: empty_vector type_def: TypeDef::Variant(variants: [variant]) } modularized_registry.push(id, variant_type) } } else { modularized_registry.push(id, type) }\n} modularized_registry.sort(|a, b| { if a.id == b.id { //only possible for variants a.variant_index > b.variant_index } else { a.id > b.id } }\n)","breadcrumbs":"RFC-0000: Metadata for offline signers » Metadata modularization","id":"104","title":"Metadata modularization"},"105":{"body":"blake3 transformation of concatenated child nodes (blake3(left + right)) as merge procedure;","breadcrumbs":"RFC-0000: Metadata for offline signers » Merging protocol","id":"105","title":"Merging protocol"},"106":{"body":"Leaves are numbered in ascending order. Leaf index is associated with corresponding chunk. Merge is performed using the leaf with highest index as right and node with second to highest index as left children; result is pushed to the end of nodes queue and leaves are discarded. Step (2) is repeated until no leaves or just one leaf remains; in latter case, the last leaf is pushed to the front of the nodes queue. Right node and then left node is popped from the front of the nodes queue and merged; the result is sent to the end of the queue. Step (4) is repeated until only one node remains; this is tree root. queue = empty_queue while (leaves.length>1) { right = leaves.pop_last left = leaves.pop_last queue.push_back(merge(left, right))\n} if leaves.length == 1 { queue.push_front(leaves.last)\n} while queue.len() > 1 { right = queue.pop_front left = queue.pop_front queue.push_back(merge(left, right))\n} return queue.pop Resulting tree for metadata consisting of 5 nodes (numbered from 0 to 4): root / \\ * * / \\ / \\ * 0 1 2 / \\\n3 4","breadcrumbs":"RFC-0000: Metadata for offline signers » Complete Binary Merkle Tree construction protocol","id":"106","title":"Complete Binary Merkle Tree construction protocol"},"107":{"body":"Blake3 hash is computed for each chunk of modular short metadata registry. Complete Binary Merkle Tree is constructed as described above. Root hash of this tree (left) is merged with metadata descriptor blake3 hash (right); this is metadata digest. Version number and corresponding resulting metadata digest MUST be included into Signed Extensions as specified in Chain Verification section below.","breadcrumbs":"RFC-0000: Metadata for offline signers » Digest","id":"107","title":"Digest"},"108":{"body":"The root of metadata computed by cold device MAY be included into Signed Extensions; if it is included, the transaction will pass as valid iff hash of metadata as seen by cold storage device is identical to consensus hash of metadata, ensuring fair signing protocol. The Signed Extension representing metadata digest is a single byte representing both digest vaule inclusion and shortening protocol version; this MUST be included in Signed Extensions set. Depending on its value, a digest value is included as additionalSigned to signature computation according to following specification: signed extension value digest value comment 0x00 digest is not included 0x01 32-byte digest this represents protocol version 1 0x02 - 0xFF reserved reserved for future use","breadcrumbs":"RFC-0000: Metadata for offline signers » Chain verification","id":"108","title":"Chain verification"},"109":{"body":"","breadcrumbs":"RFC-0000: Metadata for offline signers » Drawbacks","id":"109","title":"Drawbacks"},"11":{"body":"The concept of a weak governance origin, controlled by a consortium like the System Collective, has been proposed. This model would allow for dynamic adjustments of NFT deposit requirements in response to market conditions, adhering to storage deposit norms. Enhancements and Concerns: Responsiveness : To address concerns about delayed responses, the model could incorporate automated triggers based on predefined market indicators, ensuring timely adjustments. Stability vs. Flexibility : Balancing stability with the need for flexibility is challenging. To mitigate the issue of frequent changes in DOT-based deposits, a mechanism for gradual and predictable adjustments could be introduced. Scalability : The model's scalability is a concern, given the numerous deposits across the system. A more centralized approach to deposit management might be needed to avoid constant, decentralized adjustments.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Enhanced Weak Governance Origin Model","id":"11","title":"Enhanced Weak Governance Origin Model"},"110":{"body":"A 1-byte increase in transaction size due to signed extension value. Digest is not included in transferred transaction, only in signing process.","breadcrumbs":"RFC-0000: Metadata for offline signers » Increased transaction size","id":"110","title":"Increased transaction size"},"111":{"body":"Some slightly out of spec systems might experience breaking changes as new content of signed extensions is added. It is important to note, that there is no real overhead in processing time nor complexity, as the metadata checking mechanism is voluntary. The only drawbacks are expected for tools that do not implement MetadataV14 self-descripting features.","breadcrumbs":"RFC-0000: Metadata for offline signers » Transition overhead","id":"111","title":"Transition overhead"},"112":{"body":"The metadata shortening protocol should be extensively tested on all available examples of metadata before releasing changes to either metadata or shortener. Careful code review should be performed on shortener implementation code to ensure security. The main metadata tree would inevitably be constructed on runtime build which would also ensure correctness. To be able to recall shortener protocol in case of vulnerability issues, a version byte is included.","breadcrumbs":"RFC-0000: Metadata for offline signers » Testing, Security, and Privacy","id":"112","title":"Testing, Security, and Privacy"},"113":{"body":"","breadcrumbs":"RFC-0000: Metadata for offline signers » Performance, Ergonomics, and Compatibility","id":"113","title":"Performance, Ergonomics, and Compatibility"},"114":{"body":"This is negligibly short pessimization during build time on the chain side. Cold wallets performance would improve mostly as metadata validity mechanism that was taking most of effort in cold wallet support would become trivial.","breadcrumbs":"RFC-0000: Metadata for offline signers » Performance","id":"114","title":"Performance"},"115":{"body":"The proposal was optimized for cold storage wallets usage with minimal impact on all other parts of the ecosystem","breadcrumbs":"RFC-0000: Metadata for offline signers » Ergonomics","id":"115","title":"Ergonomics"},"116":{"body":"Proposal in this form is not compatible with older tools that do not implement proper MetadataV14 self-descriptive features; those would have to be upgraded to include a new signed extensions field.","breadcrumbs":"RFC-0000: Metadata for offline signers » Compatibility","id":"116","title":"Compatibility"},"117":{"body":"This project was developed upon a Polkadot Treasury grant; relevant development links are located in metadata-offline-project repository.","breadcrumbs":"RFC-0000: Metadata for offline signers » Prior Art and References","id":"117","title":"Prior Art and References"},"118":{"body":"How would polkadot-js handle the transition? Where would non-rust tools like Ledger apps get shortened metadata content?","breadcrumbs":"RFC-0000: Metadata for offline signers » Unresolved Questions","id":"118","title":"Unresolved Questions"},"119":{"body":"Changes to code of all cold signers to implement this mechanism SHOULD be done when this is enabled; non-cold signers may perform extra metadata check for better security. Ultimately, signing anything without decoding it with verifiable metadata should become discouraged in all situations where a decision-making mechanism is involved (that is, outside of fully automated blind signers like trade bots or staking rewards payout tools).","breadcrumbs":"RFC-0000: Metadata for offline signers » Future Directions and Related Material","id":"119","title":"Future Directions and Related Material"},"12":{"body":"Another proposal is to use a mathematical function to regulate deposit prices, initially allowing low prices to encourage participation, followed by a gradual increase to prevent network bloat. Refinements: Choice of Function : A logarithmic or sigmoid function is favored over an exponential one, as these functions increase prices at a rate that encourages participation while preventing prohibitive costs. Adjustment of Constants : To finely tune the pricing rise, one of the function's constants could correlate with the total number of NFTs on AssetHub. This would align the deposit requirements with the actual usage and growth of the network.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Function-Based Pricing Model","id":"12","title":"Function-Based Pricing Model"},"120":{"body":"(source) Table of Contents RFC-0047: Assignment of availability chunks to validators Summary Motivation Stakeholders Explanation Systematic erasure codes Availability recovery at present Availability recovery from systematic chunks Chunk assignment function Network protocol Upgrade path Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Appendix A Start Date 03 November 2023 Description An evenly-distributing indirection layer between availability chunks and validators. Authors Alin Dima","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » RFC-0047: Assignment of availability chunks to validators","id":"120","title":"RFC-0047: Assignment of availability chunks to validators"},"121":{"body":"Propose a way of permuting the availability chunk indices assigned to validators, in the context of recovering available data from systematic chunks , with the purpose of fairly distributing network bandwidth usage.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Summary","id":"121","title":"Summary"},"122":{"body":"Currently, the ValidatorIndex is always identical to the ChunkIndex. Since the validator array is only shuffled once per session, naively using the ValidatorIndex as the ChunkIndex would pose an unreasonable stress on the first N/3 validators during an entire session, when favouring availability recovery from systematic chunks. Therefore, the relay chain node needs a deterministic way of evenly distributing the first ~(N_VALIDATORS / 3) systematic availability chunks to different validators, based on the relay chain block and core. The main purpose is to ensure fair distribution of network bandwidth usage for availability recovery in general and in particular for systematic chunk holders.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Motivation","id":"122","title":"Motivation"},"123":{"body":"Relay chain node core developers.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Stakeholders","id":"123","title":"Stakeholders"},"124":{"body":"","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Explanation","id":"124","title":"Explanation"},"125":{"body":"An erasure coding algorithm is considered systematic if it preserves the original unencoded data as part of the resulting code. The implementation of the erasure coding algorithm used for polkadot's availability data is systematic. Roughly speaking, the first N_VALIDATORS/3 chunks of data can be cheaply concatenated to retrieve the original data, without running the resource-intensive and time-consuming reconstruction algorithm. You can find the concatenation procedure of systematic chunks for polkadot's erasure coding algorithm here In a nutshell, it performs a column-wise concatenation with 2-byte chunks. The output could be zero-padded at the end, so scale decoding must be aware of the expected length in bytes and ignore trailing zeros (this assertion is already being made for regular reconstruction).","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Systematic erasure codes","id":"125","title":"Systematic erasure codes"},"126":{"body":"According to the polkadot protocol spec : A validator should request chunks by picking peers randomly and must recover at least f+1 chunks, where n=3f+k and k in {1,2,3}. For parity's polkadot node implementation, the process was further optimised. At this moment, it works differently based on the estimated size of the available data: (a) for small PoVs (up to 128 Kib), sequentially try requesting the unencoded data from the backing group, in a random order. If this fails, fallback to option (b). (b) for large PoVs (over 128 Kib), launch N parallel requests for the erasure coded chunks (currently, N has an upper limit of 50), until enough chunks were recovered. Validators are tried in a random order. Then, reconstruct the original data. All options require that after reconstruction, validators then re-encode the data and re-create the erasure chunks trie in order to check the erasure root.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Availability recovery at present","id":"126","title":"Availability recovery at present"},"127":{"body":"As part of the effort of increasing polkadot's resource efficiency, scalability and performance , work is under way to modify the Availability Recovery protocol by leveraging systematic chunks. See this comment for preliminary performance results. In this scheme, the relay chain node will first attempt to retrieve the ~N/3 systematic chunks from the validators that should hold them, before falling back to recovering from regular chunks, as before. A re-encoding step is still needed for verifying the erasure root, so the erasure coding overhead cannot be completely brought down to 0. Not being able to retrieve even one systematic chunk would make systematic reconstruction impossible. Therefore, backers can be used as a backup to retrieve a couple of missing systematic chunks, before falling back to retrieving regular chunks.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Availability recovery from systematic chunks","id":"127","title":"Availability recovery from systematic chunks"},"128":{"body":"Properties The function that decides the chunk index for a validator will be parameterized by at least (validator_index, core_index) and have the following properties: deterministic relatively quick to compute and resource-efficient. when considering a fixed core_index, the function should describe a permutation of the chunk indices the validators that map to the first N/3 chunk indices should have as little overlap as possible for different cores. In other words, we want a uniformly distributed, deterministic mapping from ValidatorIndex to ChunkIndex per core. It's desirable to not embed this function in the runtime, for performance and complexity reasons. However, this means that the function needs to be kept very simple and with minimal or no external dependencies. Any change to this function could result in parachains being stalled and needs to be coordinated via a runtime upgrade or governance call. Proposed function Pseudocode: pub fn get_chunk_index( n_validators: u32, validator_index: ValidatorIndex, core_index: CoreIndex\n) -> ChunkIndex { let threshold = systematic_threshold(n_validators); // Roughly n_validators/3 let core_start_pos = core_index * threshold; (core_start_pos + validator_index) % n_validators\n}","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Chunk assignment function","id":"128","title":"Chunk assignment function"},"129":{"body":"The request-response /req_chunk protocol will be bumped to a new version (from v1 to v2). For v1, the request and response payloads are: /// Request an availability chunk.\npub struct ChunkFetchingRequest { /// Hash of candidate we want a chunk for. pub candidate_hash: CandidateHash, /// The index of the chunk to fetch. pub index: ValidatorIndex,\n} /// Receive a requested erasure chunk.\npub enum ChunkFetchingResponse { /// The requested chunk data. Chunk(ChunkResponse), /// Node was not in possession of the requested chunk. NoSuchChunk,\n} /// This omits the chunk's index because it is already known by\n/// the requester and by not transmitting it, we ensure the requester is going to use his index\n/// value for validating the response, thus making sure he got what he requested.\npub struct ChunkResponse { /// The erasure-encoded chunk of data belonging to the candidate block. pub chunk: Vec, /// Proof for this chunk's branch in the Merkle tree. pub proof: Proof,\n} Version 2 will add an index field to ChunkResponse: #[derive(Debug, Clone, Encode, Decode)]\npub struct ChunkResponse { /// The erasure-encoded chunk of data belonging to the candidate block. pub chunk: Vec, /// Proof for this chunk's branch in the Merkle tree. pub proof: Proof, /// Chunk index. pub index: ChunkIndex\n} An important thing to note is that in version 1, the ValidatorIndex value is always equal to the ChunkIndex. Until the chunk rotation feature is enabled, this will also be true for version 2. However, after the feature is enabled, this will generally not be true. The requester will send the request to validator with index V. The responder will map the V validator index to the C chunk index and respond with the C-th chunk. This mapping can be seamless, by having each validator store their chunk by ValidatorIndex (just as before). The protocol implementation MAY check the returned ChunkIndex against the expected mapping to ensure that it received the right chunk. In practice, this is desirable during availability-distribution and systematic chunk recovery. However, regular recovery may not check this index, which is particularly useful when participating in disputes that don't allow for easy access to the validator->chunk mapping. See Appendix A for more details. In any case, the requester MUST verify the chunk's proof using the provided index. During availability-recovery, given that the requester may not know (if the mapping is not available) whether the received chunk corresponds to the requested validator index, it has to keep track of received chunk indices and ignore duplicates. Such duplicates should be considered the same as an invalid/garbage response (drop it and move on to the next validator - we can't punish via reputation changes, because we don't know which validator misbehaved).","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Network protocol","id":"129","title":"Network protocol"},"13":{"body":"This approach suggests pegging the deposit value to a stable currency like the USD, introducing predictability and stability for network users. Considerations and Challenges: Market Dynamics : One perspective is that fluctuations in native currency value naturally balance user participation and pricing, deterring network spam while encouraging higher-value collections. Conversely, there's an argument for allowing broader participation if the DOT/KSM value increases. Complexity and Risks : Implementing a USD-based pricing system could add complexity and potential risks. The implementation needs to be carefully designed to avoid unintended consequences, such as excessive reliance on external financial systems or currencies. Each of these proposals offers unique advantages and challenges. The optimal approach may involve a combination of these ideas, carefully adjusted to address the specific needs and dynamics of the Polkadot and Kusama networks.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Linking Deposit to USD(x) Value","id":"13","title":"Linking Deposit to USD(x) Value"},"130":{"body":"Step 1: Enabling new network protocol In the beginning, both /req_chunk/1 and /req_chunk/2 will be supported, until all validators and collators have upgraded to use the new version. V1 will be considered deprecated. During this step, the mapping will still be 1:1 (ValidatorIndex == ChunkIndex), regardless of protocol. Once all nodes are upgraded, a new release will be cut that removes the v1 protocol. Only once all nodes have upgraded to this version will step 2 commence. Step 2: Enabling the new validator->chunk mapping Considering that the Validator->Chunk mapping is critical to para consensus, the change needs to be enacted atomically via governance, only after all validators have upgraded the node to a version that is aware of this mapping, functionality-wise. It needs to be explicitly stated that after the governance enactment, validators that run older client versions that don't support this mapping will not be able to participate in parachain consensus. Additionally, an error will be logged when starting a validator with an older version, after the feature was enabled. On the other hand, collators will not be required to upgrade in this step (but are still require to upgrade for step 1), as regular chunk recovery will work as before, granted that version 1 of the networking protocol has been removed. Note that collators only perform availability-recovery in rare, adversarial scenarios, so it is fine to not optimise for this case and let them upgrade at their own pace. To support enabling this feature via the runtime, we will use the NodeFeatures bitfield of the HostConfiguration struct (added in https://github.com/paritytech/polkadot-sdk/pull/2177). Adding and enabling a feature with this scheme does not require a runtime upgrade, but only a referendum that issues a Configuration::set_node_feature extrinsic. Once the feature is enabled and new configuration is live, the validator->chunk mapping ceases to be a 1:1 mapping and systematic recovery may begin.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Upgrade path","id":"130","title":"Upgrade path"},"131":{"body":"Getting access to the core_index that used to be occupied by a candidate in some parts of the dispute protocol is very complicated (See appendix A ). This RFC assumes that availability-recovery processes initiated during disputes will only use regular recovery, as before. This is acceptable since disputes are rare occurrences in practice and is something that can be optimised later, if need be. Adding the core_index to the CandidateReceipt would mitigate this problem and will likely be needed in the future for CoreJam and/or Elastic scaling. Related discussion about updating CandidateReceipt It's a breaking change that requires all validators and collators to upgrade their node version at least once.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Drawbacks","id":"131","title":"Drawbacks"},"132":{"body":"Extensive testing will be conducted - both automated and manual. This proposal doesn't affect security or privacy.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Testing, Security, and Privacy","id":"132","title":"Testing, Security, and Privacy"},"133":{"body":"","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Performance, Ergonomics, and Compatibility","id":"133","title":"Performance, Ergonomics, and Compatibility"},"134":{"body":"This is a necessary data availability optimisation, as reed-solomon erasure coding has proven to be a top consumer of CPU time in polkadot as we scale up the parachain block size and number of availability cores. With this optimisation, preliminary performance results show that CPU time used for reed-solomon coding/decoding can be halved and total POV recovery time decrease by 80% for large POVs. See more here .","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Performance","id":"134","title":"Performance"},"135":{"body":"Not applicable.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Ergonomics","id":"135","title":"Ergonomics"},"136":{"body":"This is a breaking change. See upgrade path section above. All validators and collators need to have upgraded their node versions before the feature will be enabled via a governance call.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Compatibility","id":"136","title":"Compatibility"},"137":{"body":"See comments on the tracking issue and the in-progress PR","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Prior Art and References","id":"137","title":"Prior Art and References"},"138":{"body":"Not applicable.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Unresolved Questions","id":"138","title":"Unresolved Questions"},"139":{"body":"This enables future optimisations for the performance of availability recovery, such as retrieving batched systematic chunks from backers/approval-checkers.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Future Directions and Related Material","id":"139","title":"Future Directions and Related Material"},"14":{"body":"Modifying deposit requirements necessitates a balanced assessment of the potential drawbacks. Highlighted below are cogent points extracted from the discourse on the Polkadot Forum conversation , which provide critical perspectives on the implications of such changes: The discourse around modifying deposit requirements includes various perspectives: Adjusting NFT deposit requirements on Polkadot and Kusama Asset Hubs involves key challenges: State Growth and Technical Concerns : Lowering deposit requirements can lead to increased blockchain state size, potentially causing state bloat. This growth needs to be managed to prevent strain on the network's resources and maintain operational efficiency. Network Security and Market Response : Reduced deposits might increase transaction volume, potentially bloating the state, thereby impacting network security. Additionally, adapting to the cryptocurrency market's volatility is crucial. The mechanism for setting deposit amounts must be responsive yet stable, avoiding undue complexity for users. Economic Impact on Previous Stakeholders : The change could have varied economic effects on previous (before the change) creators, platform operators, and investors. Balancing these interests is essential to ensure the adjustment benefits the ecosystem without negatively impacting its value dynamics. However in the particular case of Polkadot and Kusama Asset Hub this does not pose a concern since there are very few collections currently and thus previous stakeholders wouldn't be much affected. As of date 9th January 2024 there are 42 collections on Polkadot Asset Hub and 191 on Kusama Asset Hub with a relatively low volume.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Drawbacks","id":"14","title":"Drawbacks"},"140":{"body":"This appendix details the intricacies of getting access to the core index of a candidate in parity's polkadot node. Here, core_index refers to the index of the core that a candidate was occupying while it was pending availability (from backing to inclusion). Availability-recovery can currently be triggered by the following phases in the polkadot protocol: During the approval voting process. By other collators of the same parachain. During disputes. Getting the right core index for a candidate can be troublesome. Here's a breakdown of how different parts of the node implementation can get access to it: The approval-voting process for a candidate begins after observing that the candidate was included. Therefore, the node has easy access to the block where the candidate got included (and also the core that it occupied). The pov_recovery task of the collators starts availability recovery in response to noticing a candidate getting backed, which enables easy access to the core index the candidate started occupying. Disputes may be initiated on a number of occasions: 3.a. is initiated by the validator as a result of finding an invalid candidate while participating in the approval-voting protocol. In this case, availability-recovery is not needed, since the validator already issued their vote. 3.b is initiated by the validator noticing dispute votes recorded on-chain. In this case, we can safely assume that the backing event for that candidate has been recorded and kept in memory. 3.c is initiated as a result of getting a dispute statement from another validator. It is possible that the dispute is happening on a fork that was not yet imported by this validator, so the subsystem may not have seen this candidate being backed. A naive attempt of solving 3.c would be to add a new version for the disputes request-response networking protocol. Blindly passing the core index in the network payload would not work, since there is no way of validating that the reported core_index was indeed the one occupied by the candidate at the respective relay parent. Another attempt could be to include in the message the relay block hash where the candidate was included. This information would be used in order to query the runtime API and retrieve the core index that the candidate was occupying. However, considering it's part of an unimported fork, the validator cannot call a runtime API on that block. Adding the core_index to the CandidateReceipt would solve this problem and would enable systematic recovery for all dispute scenarios.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Appendix A","id":"140","title":"Appendix A"},"141":{"body":"(source) Table of Contents RFC-0059: Add a discovery mechanism for nodes based on their capabilities Summary Motivation Stakeholders Explanation Capabilities DHT provider registration Secondary DHTs Head of the chain providers Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-12-18 Description Nodes having certain capabilities register themselves in the DHT to be discoverable Authors Pierre Krieger","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » RFC-0059: Add a discovery mechanism for nodes based on their capabilities","id":"141","title":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities"},"142":{"body":"This RFC proposes to make the mechanism of RFC #8 more generic by introducing the concept of \"capabilities\". Implementations can implement certain \"capabilities\", such as serving old block headers or being a parachain bootnode. The discovery mechanism of RFC #8 is extended to be able to discover nodes of specific capabilities.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Summary","id":"142","title":"Summary"},"143":{"body":"The Polkadot peer-to-peer network is made of nodes. Not all these nodes are equal. Some nodes store only the headers of recently blocks, some nodes store all the block headers and bodies since the genesis, some nodes store the storage of all blocks since the genesis, and so on. It is currently not possible to know ahead of time (without connecting to it and asking) which nodes have which data available, and it is not easily possible to build a list of nodes that have a specific piece of data available. If you want to download for example the header of block 500, you have to connect to a randomly-chosen node, ask it for block 500, and if it says that it doesn't have the block, disconnect and try another randomly-chosen node. In certain situations such as downloading the storage of old blocks, nodes that have the information are relatively rare, and finding through trial and error a node that has the data can take a long time. This RFC attempts to solve this problem by giving the possibility to build a list of nodes that are capable of serving specific data.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Motivation","id":"143","title":"Motivation"},"144":{"body":"Low-level client developers. People interested in accessing the archive of the chain.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Stakeholders","id":"144","title":"Stakeholders"},"145":{"body":"Reading RFC #8 first might help with comprehension, as this RFC is very similar. Please keep in mind while reading that everything below applies for both relay chains and parachains, except mentioned otherwise.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Explanation","id":"145","title":"Explanation"},"146":{"body":"This RFC defines a list of so-called capabilities : Head of chain provider . An implementation with this capability must be able to serve to other nodes block headers, block bodies, justifications, calls proofs, and storage proofs of \"recent\" (see below) blocks, and, for relay chains, to serve to other nodes warp sync proofs where the starting block is a session change block and must participate in Grandpa and Beefy gossip. History provider . An implementation with this capability must be able to serve to other nodes block headers and block bodies of any block since the genesis, and must be able to serve to other nodes justifications of any session change block since the genesis up until and including their currently finalized block. Archive provider . This capability is a superset of History provider . In addition to the requirements of History provider , an implementation with this capability must be able to serve call proofs and storage proof requests of any block since the genesis up until and including their currently finalized block. Parachain bootnode (only for relay chains). An implementation with this capability must be able to serve the network request described in RFC 8. In the context of the head of chain provider , the word \"recent\" means: any not-finalized-yet block that is equal to or an ancestor of a block that it has announced through a block announce, and any finalized block whose height is superior to its current finalized block minus 16 . This does not include blocks that have been pruned because they're not a descendant of its current finalized block. In other words, blocks that aren't a descendant of the current finalized block can be thrown away. A gap of blocks is required due to race conditions: when a node finalizes a block, it takes some time for its peers to be made aware of this, during which they might send requests concerning older blocks. The exact gap is arbitrary. Substrate is currently by default a head of chain provider provider. After it has finished warp syncing, it downloads the list of old blocks, after which it becomes a history provider . If Substrate is instead configured as an archive node, then it downloads the state of all blocks since the genesis, after which it becomes an archive provider , history provider , and head of chain provider . If blocks pruning is enabled and the chain is a relay chain, then Substrate unfortunately doesn't implement any of these capabilities, not even head of chain provider . This is considered as a bug that should be fixed, see https://github.com/paritytech/polkadot-sdk/issues/2733 .","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Capabilities","id":"146","title":"Capabilities"},"147":{"body":"This RFC heavily relies on the functionalities of the Kademlia DHT already in use by Polkadot. You can find a link to the specification here . Implementations that have the history provider capability should register themselves as providers under the key sha256(concat(\"history\", randomness)). Implementations that have the archive provider capability should register themselves as providers under the key sha256(concat(\"archive\", randomness)). Implementations that have the parachain bootnode capability should register themselves as provider under the key sha256(concat(scale_compact(para_id), randomness)), as described in RFC 8. \"Register themselves as providers\" consists in sending ADD_PROVIDER requests to nodes close to the key, as described in the Content provider advertisement section of the specification. The value of randomness can be found in the randomness field when calling the BabeApi_currentEpoch function. In order to avoid downtimes when the key changes, nodes should also register themselves as a secondary key that uses a value of randomness equal to the randomness field when calling BabeApi_nextEpoch. Implementers should be aware that their implementation of Kademlia might already hash the key before XOR'ing it. The key is not meant to be hashed twice. Implementations must not register themselves if they don't fulfill the capability yet . For example, a node configured to be an archive node but that is still building its archive state in the background must register itself only after it has finished building its archive.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » DHT provider registration","id":"147","title":"DHT provider registration"},"148":{"body":"Implementations that have the history provider capability must also participate in a secondary DHT that comprises only of nodes with that capability. The protocol name of that secondary DHT must be //kad/history. Similarly, implementations that have the archive provider capability must also participate in a secondary DHT that comprises only of nodes with that capability and whose protocol name is //kad/archive. Just like implementations must not register themselves if they don't fulfill their capability yet, they must also not participate in the secondary DHT if they don't fulfill their capability yet.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Secondary DHTs","id":"148","title":"Secondary DHTs"},"149":{"body":"Implementations that have the head of the chain provider capability do not register themselves as providers, but instead are the nodes that participate in the main DHT. In other words, they are the nodes that serve requests of the //kad protocol. Any implementation that isn't a head of the chain provider (read: light clients) must not participate in the main DHT. This is already presently the case. Implementations must not participate in the main DHT if they don't fulfill the capability yet. For example, a node that is still in the process of warp syncing must not participate in the main DHT. However, assuming that warp syncing doesn't last more than a few seconds, it is acceptable to ignore this requirement in order to avoid complicating implementations too much.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Head of the chain providers","id":"149","title":"Head of the chain providers"},"15":{"body":"","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Testing, Security, and Privacy","id":"15","title":"Testing, Security, and Privacy"},"150":{"body":"None that I can see.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Drawbacks","id":"150","title":"Drawbacks"},"151":{"body":"The content of this section is basically the same as the one in RFC 8. This mechanism doesn't add or remove any security by itself, as it relies on existing mechanisms. Due to the way Kademlia works, it would become the responsibility of the 20 Polkadot nodes whose sha256(peer_id) is closest to the key (described in the explanations section) to store the list of nodes that have specific capabilities. Furthermore, when a large number of providers are registered, only the providers closest to the key are kept, up to a certain implementation-defined limit. For this reason, an attacker can abuse this mechanism by randomly generating libp2p PeerIds until they find the 20 entries closest to the key representing the target capability. They are then in control of the list of nodes with that capability. While doing this can in no way be actually harmful, it could lead to eclipse attacks. Because the key changes periodically and isn't predictable, and assuming that the Polkadot DHT is sufficiently large, it is not realistic for an attack like this to be maintained in the long term.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Testing, Security, and Privacy","id":"151","title":"Testing, Security, and Privacy"},"152":{"body":"","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Performance, Ergonomics, and Compatibility","id":"152","title":"Performance, Ergonomics, and Compatibility"},"153":{"body":"The DHT mechanism generally has a low overhead, especially given that publishing providers is done only every 24 hours. Doing a Kademlia iterative query then sending a provider record shouldn't take more than around 50 kiB in total of bandwidth for the parachain bootnode. Assuming 1000 nodes with a specific capability, the 20 Polkadot full nodes corresponding to that capability will each receive a sudden spike of a few megabytes of networking traffic when the key rotates. Again, this is relatively negligible. If this becomes a problem, one can add a random delay before a node registers itself to be the provider of the key corresponding to BabeApi_next_epoch. Maybe the biggest uncertainty is the traffic that the 20 Polkadot full nodes will receive from light clients that desire knowing the nodes with a capability. If this every becomes a problem, this value of 20 is an arbitrary constant that can be increased for more redundancy.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Performance","id":"153","title":"Performance"},"154":{"body":"Irrelevant.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Ergonomics","id":"154","title":"Ergonomics"},"155":{"body":"Irrelevant.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Compatibility","id":"155","title":"Compatibility"},"156":{"body":"Unknown.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Prior Art and References","id":"156","title":"Prior Art and References"},"157":{"body":"While it fundamentally doesn't change much to this RFC, using BabeApi_currentEpoch and BabeApi_nextEpoch might be inappropriate. I'm not familiar enough with good practices within the runtime to have an opinion here. Should it be an entirely new pallet?","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Unresolved Questions","id":"157","title":"Unresolved Questions"},"158":{"body":"This RFC would make it possible to reliably discover archive nodes, which would make it possible to reliably send archive node requests, something that isn't currently possible. This could solve the problem of finding archive RPC node providers by migrating archive-related request to using the native peer-to-peer protocol rather than JSON-RPC. If we ever decide to break backwards compatibility, we could divide the \"history\" and \"archive\" capabilities in two, between nodes capable of serving older blocks and nodes capable of serving newer blocks. We could even add to the peer-to-peer network nodes that are only capable of serving older blocks (by reading from a database) but do not participate in the head of the chain, and that just exist for historical purposes.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Future Directions and Related Material","id":"158","title":"Future Directions and Related Material"},"159":{"body":"(source) Table of Contents RFC-0061: Support allocator inside of runtime Summary Motivation Stakeholders Explanation Runtime side spec Client side spec Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 27 December 2023 Description Supporting runtime built-in allocator makes the substrate runtime more versatile Authors Jiahao Ye","breadcrumbs":"RFC-0061: Support allocator inside of runtime » RFC-0061: Support allocator inside of runtime","id":"159","title":"RFC-0061: Support allocator inside of runtime"},"16":{"body":"The prevention of \"spam\" could be prevented by OpenGov proposal to forceDestoy list of collections that are not suitable.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Security concerns","id":"16","title":"Security concerns"},"160":{"body":"Currently, substrate runtime use an simple allocator defined by host side. Every runtime MUST import these allocator functions for normal execution. This situation make runtime code not versatile enough. So this RFC proposes to define a new spec for allocator part to make substrate runtime more generic.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Summary","id":"160","title":"Summary"},"161":{"body":"Since this RFC define a new way for allocator, we now regard the old one as legacy allocator. As we all know, since the allocator implementation details are defined by the substrate client, parachain/parathread cannot customize memory allocator algorithm, so the new specification allows the runtime to customize memory allocation, and then export the allocator function according to the specification for the client side to use. Another benefit is that some new host functions can be designed without allocating memory on the client, which may have potential performance improvements. Also it will help provide a unified and clean specification if substrate runtime support multi-targets(e.g. RISC-V). There is also a potential benefit. Many programming languages that support compilation to wasm may not be friendly to supporting external allocator. This is beneficial for other programming languages to enter the substrate runtime ecosystem. The last and most important benefit is that for offchain context execution, the runtime can fully support pure wasm. What this means here is that all imported host functions could not actually be called (as stub functions), then the various verification logic of the runtime can be converted into pure wasm, which provides the possibility for the substrate runtime to run block verification in other environments (such as in browsers and other non-substrate environments).","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Motivation","id":"161","title":"Motivation"},"162":{"body":"No attempt was made at convincing stakeholders.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Stakeholders","id":"162","title":"Stakeholders"},"163":{"body":"","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Explanation","id":"163","title":"Explanation"},"164":{"body":"This section contains a list of functions should be exported by substrate runtime. We define the spec as version 1, so the following dummy function v1 MUST be exported to hint client that runtime is using version 1 spec, otherwise rollback to legacy allocator. The function should never be used, and its name is only for version checking. (export \"v1\" (func $v1)) Choose this way is more generic than custom section since many other tools do not support custom section very well. But if an environment want to run it, it should always be possible to parse the export section. The allocator functions are: (export \"alloc\" (func $alloc))\n(export \"dealloc\" (func $dealloc))\n(export \"realloc\" (func $realloc)) Their signatures are: (func $alloc (param $size i32) (result i32))\n(func $dealloc (param $addr i32) (param $size i32))\n(func $realloc (param $addr i32) (param $size i32) (param $new_size i32) (result i32)) Note: dealloc/realloc is not used in substrate side currently, but for the functional integrity. The following imports are disabled. The two kind of allocators(leagcy and v1) cannot know each other, and importing them will cause abnormal memory allocation. (import \"env\" \"ext_allocator_free_version_1\" (func $ext_allocator_free_version_1 (type 0)))\n(import \"env\" \"ext_allocator_malloc_version_1\" (func $ext_allocator_malloc_version_1 (type 1))) The following export could be removed. The client side no need to know heap base. (export \"__heap_base\" (global 2))","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Runtime side spec","id":"164","title":"Runtime side spec"},"165":{"body":"During instantiating time, add a version checking stage for wasm executor before any other wasm module checking. Check if parsed wasm module contains a exported v1 function: If not exist, we predicate it using legacy allocator, just do normal checking like before. Set legacy allocator be Some while set v1 allocator be None. If exist, we predicate it using v1 allocator. And then we lookup and hold the exported alloc function for the total lifestyle of instance, return error if not exist. Set legacy allocator be None while set v1 allocator be Some. When wasm host functions or other entrypoint call(e.g. runtime_apis/validate_block) need to allocate memory, check if instance hold the alloc, if hold just call it otherwise call the legacy allocator. Detail-heavy explanation of the RFC, suitable for explanation to an implementer of the changeset. This should address corner cases in detail and provide justification behind decisions, and provide rationale for how the design meets the solution requirements.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Client side spec","id":"165","title":"Client side spec"},"166":{"body":"The allocator inside of the runtime will make code size bigger, but it's not obvious. The allocator inside of the runtime maybe slow down(or speed up) the runtime, still not obvious. We could ignore these drawbacks since they are not prominent. And the execution efficiency is highly decided by runtime developer. We could not prevent a poor efficiency if developer want to do it.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Drawbacks","id":"166","title":"Drawbacks"},"167":{"body":"Keep the legacy allocator runtime test cases, and add new feature to compile test cases for v1 allocator spec. And then update the test asserts. Update template runtime to enable v1 spec. Once the dev network runs well, it seems that the spec is implmented correctly.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Testing, Security, and Privacy","id":"167","title":"Testing, Security, and Privacy"},"168":{"body":"","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Performance, Ergonomics, and Compatibility","id":"168","title":"Performance, Ergonomics, and Compatibility"},"169":{"body":"As the above says, not obvious impact about performance. And polkadot-sdk could offer the best practice allocator for all chains. Third party also could customized by theirself. So the performance could be improved over time.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Performance","id":"169","title":"Performance"},"17":{"body":"","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Performance, Ergonomics, and Compatibility","id":"17","title":"Performance, Ergonomics, and Compatibility"},"170":{"body":"Only for runtime developer, Just need to import a new crate and enable a new feature. Maybe it's convienient for other wasm-target language to implment.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Ergonomics","id":"170","title":"Ergonomics"},"171":{"body":"It's 100% compatible. Only Some runtime configs and executor configs need to be depreacted. For support new runtime spec, we MUST upgrade the client binary to support new spec of client part firstly. We SHALL add an optional primtive crate to enable the version 1 spec and disable the legacy allocator by cargo feature. For the first year, we SHALL disable the v1 by default, and enable it by default start in the next year.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Compatibility","id":"171","title":"Compatibility"},"172":{"body":"Move the allocator inside of the runtime Add new allocator design","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Prior Art and References","id":"172","title":"Prior Art and References"},"173":{"body":"None at this time.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Unresolved Questions","id":"173","title":"Unresolved Questions"},"174":{"body":"The content discussed with RFC-0004 is basically orthogonal, but it could still be considered together, and it is preferred that this rfc be implmentented first. This feature could make substrate runtime be easier supported by other languages and integreted into other ecosystem.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Future Directions and Related Material","id":"174","title":"Future Directions and Related Material"},"175":{"body":"(source) Table of Contents RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot Summary Motivation Defi+NFT Applications need Smart Contracts on AssetHub Rollups need Smart Contracts on AssetHub ink! on AssetHub will lead to CorePlay Developers on AssetHub Stakeholders Explanation Limit Smart Contract Weight allocation Model AssetHub Assets inside EVM Smart Contracts based on Astar New DOT Revenue Sources New Revenue from AssetHub EVM Contracts New Revenue for ink!/Coreplay Contracts Drawbacks and Tradeoffs Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Unresolved Questions Future Directions and Related Material Start Date 14 January 2024 Description A proposal to add EVM + ink! Contracts to Asset Hub for Polkadot to support Polkadot Rollups and larger numbers of EVM/Coreplay smart contract developers and their users on Polkadot Rollups and AssetHub for Polkadot . Authors Sourabh Niyogi","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot","id":"175","title":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot"},"176":{"body":"This RFC proposes to add the two dominant smart contract programming languages in the Polkadot ecosystem to AssetHub: EVM + ink!/Coreplay. The objective is to increase DOT Revenue by making AssetHub accessible to (1) Polkadot Rollups; (2) EVM smart contract programmers; (3) Coreplay programmers who will benefit from easier-to-use smart contract environments. These changes in AssetHub are enabled by key Polkadot 2.0 technologies: PolkaVM supporting Coreplay, and hyper data availability in Blobs Chain.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Summary","id":"176","title":"Summary"},"177":{"body":"EVM Contracts are pervasive in the Web3 blockchain ecosystem, while Polkadot 2.0's Coreplay aims to surpass EVM Contracts in ease-of-use using PolkaVM's RISC architecture. Asset Hub for Polkadot does not have smart contract capabilities, even though dominant stablecoin assets such as USDC and USDT are originated there. In addition, in the RFC #32 - Minimal Relay Chain architecture , DOT balances are planned to be shifted to Asset Hub, to support Polkadot 2.0's CoreJam map-reduce architecture . In this 2.0 architecture, there is no room for synchronous contracts on the Polkadot relay chain -- doing so would waste precious resources that should be dedicated to sync+async composability. However, while Polkadot fellows have concluded the Polkadot relay chain should not support synchronous smart contracts, this is not applicable to AssetHub for Polkadot. The following sections argue for the need for Smart Contracts on AssetHub.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Motivation","id":"177","title":"Motivation"},"178":{"body":"EVM Smart Contract chains within Polkadot and outside are dominated by defi + NFT applications. While the assetConversion pallet (implementing Uniswap v1) is a start to having some basic defi on AssetHub, many programmers may be surprised to find that synchronous EVM smart contract capabilities (e.g. uniswap v2+v3) on other chains are not possible on AssetHub. Indeed, this is true for many Polkadot parachains, with the exception of the top 2 Polkadot parachains (by marketcap circa early 2024: Moonbeam + Astar) who do include the EVM pallets. This leads to a cumbersome Polkadot EVM smart contract programming experience between AssetHub and these 2 Polkadot parachains, making the Polkadot ecosystem hard to work with for asset-related applications from defi to NFTs. The ink! defi ecosystem remains nascent, having only Astar as a potential home, and empirically has almost no defi/NFT activity. Although e.g. uniswap translations have been written, An AssetHub for Polkadot deployment of EVM and ink! contracts, it is hoped, would likely support new applications for top assets (USDC and USDT) and spur many smart contract developers to develop end user applications with familiar synchronous programming constructs.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Defi+NFT Applications need Smart Contracts on AssetHub","id":"178","title":"Defi+NFT Applications need Smart Contracts on AssetHub"},"179":{"body":"Polkadot Data Availability technology is extremely promising but underutilized. We envision a new class of customer, \"Polkadot Rollups\" that can utilize Polkadot DA far better than Ethereum and other technology platforms. Unlike Ethereum's DA which is capped at a fixed throughput now extending to EIP-4844, Polkadot data availability is linear in the number of cores . This means Polkadot can support a much larger number of rollups than Ethereum now , and even more as the number of cores in Polkadot grows. This performance difference has not been widely appreciated in the blockchain community. Recently, a \"Blobs\" chain has been developed to expose Polkadot DA to rollups by senior Polkadot Fellows: ThrumDev Blobs on Kusama - ParaID 3338 ) Rollkit A rollup kit is mappable to widely used rollup platforms, such as OP Stack, Arbitrum Orbit or StarkNet Madara. A Blobs chain, currently deployed on Kusama (paraID 3338), enables rollups to utilize functionality outside the Polkadot 1.0 parachain architecture by having rollups submit transactions via a rollup kit abstraction. The Blobs chain write interface is simple blobs.submitBlob(namespaceId, blob) with a matching read interface. However, simply sending blobs is not enough to power a rollup. End users need to interact with a \"settlement layer\", while rollups require proof systems for security. Key functionality for optimistic rollups (e.g. OP Stack, Arbitrum Orbit) are: enabling the users of the rollup to deposit and withdraw the L1 native token (DOT) into the rollup and from the rollup. In an AssetHub context: Deposits: send DOT to the rollup from AssetHub, by calling an EVM Contract function on AssetHub; Withdrawal: withdraw DOT from the rollup by submitting a EVM transaction on the rollup. After some of days (e.g. 7 days on OP Stack), the user submits a transaction on AssetHub to claim their DOT, using a Merkle proof. enabling interactive fraud proofs. While this has rarely happened in practice, it is critical to rollup security. In an AssetHub context: Anyone monitoring a rollup, using the Blobs chain can access the recent history. When detecting invalid state transitions, anyone can interact with rollup and AssetHub's EVM to generate a fraud proof. Analogous functionality exist for ZK-rollup platforms (e.g. Polygon zkEVM, StarkNet Madara), with high potential for using the same Blobs+AssetHub chains. While it is possible to have the operations in EVM Contracts translated in FRAME pallets (e.g. an \"opstack\" pallet), we do not believe a pallet translation confers significant benefits. Instead, we believe the translation would require regular updates from the rollup platform, which have proven difficult to implement in practice.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Rollups need Smart Contracts on AssetHub","id":"179","title":"Rollups need Smart Contracts on AssetHub"},"18":{"body":"The primary performance consideration stems from the potential for state bloat due to increased activity from lower deposit requirements. It's vital to monitor and manage this to avoid any negative impact on the chain's performance. Strategies for mitigating state bloat, including efficient data management and periodic reviews of storage requirements, will be essential.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Performance","id":"18","title":"Performance"},"180":{"body":"While ink! WASM Smart Contracts have been promising technology, the adoption of ink! WASM Contracts amongst Polkadot parachains has been low, in practice just Astar to date, with nowhere near as many developers. This may be due to missing tooling, slow compile times, and/or simply because ink!/Rust is just harder to learn than Solidity, the dominant programming language of EVM Chains. Fortunately, ink! can compile to PolkaVM , a new RISC based VM that has the special capability of suspending and resuming the registers, supporting long-running computations. This has the key new promise of making smart contract languages easier to use -- instead of smart contract developers worrying about what can be done within the gas limits of a specific block or a specific transaction, Coreplay smart contracts can be much easier to program on (see here ). We believe AssetHub should support ink! as a precursor to support CorePlay's capabilities as soon as possible. To the best of our knowledge, release times of this are unknown but having ink! inside AssetHub would be natural for Polkadot 2.0.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » ink! on AssetHub will lead to CorePlay Developers on AssetHub","id":"180","title":"ink! on AssetHub will lead to CorePlay Developers on AssetHub"},"181":{"body":"Asset Hub Users : Those who call any extrinsic on Asset Hub for Polkadot. DOT Token Holders : Those who hold DOT on any chain in the Polkadot ecosystem. AssetHub Smart Contract Developers : Those who utilize EVM Smart Contracts, ink! Contracts or Coreplay Contracts on AssetHub. Ethereum Rollups : Rollups who utilize Ethereum as a settlement layer and interactive fraud proofs or ZK proofs to secure their rollup and utilize Ethereum DA to record transactions, provide security for their rollup, and have rollup users settle on Ethereum. Polkadot Rollups : Rollups who utilize AssetHub as a settlement layer and interactive fraud proofs or ZK proofs on Assethub and Blobs to record rollup transactions, provide security for their rollup, and have rollup users settle on AssetHub for Polkadot.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Stakeholders","id":"181","title":"Stakeholders"},"182":{"body":"","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Explanation","id":"182","title":"Explanation"},"183":{"body":"AssetHub is a major component of the Polkadot 2.0 Minimal Relay Chain architecture. It is critical that smart contract developers not be able to clog AssetHub's blockspace for other mission critical applications, such as Staking and Governance. As such, it is proposed that at most 50% of the available weight in AssetHub for Polkadot blocks be allocated to smart contracts pallets (EVM, ink! and/or Coreplay). While to date AssetHub has limited usage, it is believed (see here ) that imposing this limit on smart contracts pallet would limit the effect on non-smart contract usage. A excessively small weight limit like 10% or 20% may limit the attractiveness of Polkadot as a platform for Polkadot rollups and EVM Contracts. A excessively large weight like 90% or 100% may threaten AssetHub usage. In practice, this 50% weight limit would be used for 3 categories of smart contract usage: Defi/NFT applications: modern defi EVM Contracts would be expected to go beyond the capabilities of assetConversion pallet to support many common ERC20/ERC721/ERC1155 centric applications. Polkadot Rollups users: deposit and withdrawal operations would be expected to dominate here. Note the operations of recording blocks would be done on the Blobs Chains, while interactive fraud proofs would be extremely rare by comparison. Coreplay smart contract usage, at a future time. We expect the first category to dominate. If AssetHub smart contract usage increases so as to approach this 50% limit, the gas price will increase significantly. This likely motivates EVM contract developers to migrate to a EVM contract chain and/or rethink their application to work asynchronously within CoreJam, another major Polkadot 2.0 technology.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Limit Smart Contract Weight allocation","id":"183","title":"Limit Smart Contract Weight allocation"},"184":{"body":"It is essential to make AssetHub assets interface well with EVM Smart Contracts. Polkadot parachains Astar and Moonbeam have a mapping between assetIDs and \"virtual\" EVM Contracts. Astar XCM Asset List Moonbeam XC-20 We propose that AssetHub support a systemic mapping following Astar: (a) Native Relay DOT + KSM - should be mapped to 0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF on AssetHub for Polkadot and AssetHub for Kusama respectively (b) Other Assethubs assets should map into an EVM address using a 0xffffffff prefix https://docs.astar.network/docs/learn/interoperability/xcm/integration/tools#xc20-address The usage of the above has been made code-complete by Astar: xc-asset-config assets-erc20 pallet-assets extensions Polkadot parachains Astar and Moonbeam adopted two very different approaches of how end users interact with EVM Contracts. We propose that AssetHub for Polkadot adopt the Astar solution, mirroring it as closely as possible.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Model AssetHub Assets inside EVM Smart Contracts based on Astar","id":"184","title":"Model AssetHub Assets inside EVM Smart Contracts based on Astar"},"185":{"body":"A substantial motivation in this proposal is to increase demand for DOT via two key chains: AssetHub - from defi/NFT users, Polkadot Rollup users and AssetHub Smart Contract Developers Blobs - for Polkadot Rollups","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » New DOT Revenue Sources","id":"185","title":"New DOT Revenue Sources"},"186":{"body":"Enabling EVM Contracts on AssetHub will support DOT revenue from: defi/NFT users who use AssetHub directly rollup operators who utilize Blobs chain rollup users who buy DOT to utilize Polkadot Rollups","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » New Revenue from AssetHub EVM Contracts","id":"186","title":"New Revenue from AssetHub EVM Contracts"},"187":{"body":"Enabling ink! contracts will pave the way to a new class of AssetHub Smart Contract Developers. Given PolkaVM's proven reduced compile time and RISC architecture enabling register snapshots, it is natural to utilize these new technical capabilities on a flagship system chain. To the extent these capabilities are attractive to smart contract developers, this has the potential for bringing in new DOT revenue from a system chain.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » New Revenue for ink!/Coreplay Contracts","id":"187","title":"New Revenue for ink!/Coreplay Contracts"},"188":{"body":"Supporting EVM Contracts in AssetHub is seen by some as undercutting Polkadot's 1.0 parachain architecture, both special purpose appchains and smart contract developer platform parachains. We believe the lack of growth of parachains in the last 12-18 months, and the high potential of CorePlay motivates new options be pursued in system chains. Maintaining EVM Contracts on AssetHub may be seen as difficult and may require Substrate engineers to maintain EVM Pallets and manage the xcContracts. We believe this cost will be relatively small based on the proven deployment of Astar and Moonbeam. The cost will be justified compared to the potential upside of new DOT revenue from defi/NFT applications on AssetHub and the potential for utilizing Polkadot DA for Polkadot rollups.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Drawbacks and Tradeoffs","id":"188","title":"Drawbacks and Tradeoffs"},"189":{"body":"Testing the mapping between assetIDs and EVM Contracts thoroughly will be critical. Having a complete working OP Stack chain using AssetHub for Kusama (1000) and Blobs on Kusama (3338) would be highly desirable, but is unlikely to be required.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Testing, Security, and Privacy","id":"189","title":"Testing, Security, and Privacy"},"19":{"body":"The proposed change aims to enhance the user experience for artists, traders and utilizers of Kusama and Polkadot asset hub. Making Polkadot and Kusama more accessible and user-friendly.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Ergonomics","id":"19","title":"Ergonomics"},"190":{"body":"","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Performance, Ergonomics, and Compatibility","id":"190","title":"Performance, Ergonomics, and Compatibility"},"191":{"body":"The weight limit of 50% is expected to be adequate to limit excess smart contract usage at this time. Storage bloat is expected to kept to a minimum with the nominal 0.01 Existential Deposit.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Performance","id":"191","title":"Performance"},"192":{"body":"Note that the existential deposit is not 0 DOT but being lowered from 0.1 DOT to 0.01 DOT, which may pose problems for some developers. Many developers routinely deploy their EVM contracts on many different EVM Chains in parallel. This non-zero ED may pose problems for some developers The 0.01 DOT (worth $0.075 USD) is unlikely to pose significant issue.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Ergonomics","id":"192","title":"Ergonomics"},"193":{"body":"It is believed that EVM pallet (as deployed on Moonbeam + Astar) is sufficiently compatible with Ethereum, and that the ED of 0.01 DOT pose negligible issues. The messaging architecture for rollups are not compatible with Polkadot XCM. It is not clear if leading rollup platforms (OP Stack, Arbitrum Orbit, Polygon zkEVM) could be made compatible with XCM.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Compatibility","id":"193","title":"Compatibility"},"194":{"body":"It is highly desirable to know the throughput of Polkadot DA with popular rollup architectures OP Stack and Arbitrum Orbit. This would enable CEXs and EVM L2 builders to choose Polkadot over Ethereum.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Unresolved Questions","id":"194","title":"Unresolved Questions"},"195":{"body":"If accepted, this RFC could pave the way for CorePlay on Asset Hub for Polkadot/Kusama, a major component of Polkadot 2.0's smart contract future. The importance of precompiles should","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Future Directions and Related Material","id":"195","title":"Future Directions and Related Material"},"196":{"body":"(source) Table of Contents RFC-1: Agile Coretime Summary Motivation Present System Problems Requirements Stakeholders Explanation Overview Detail Specific functions of the Coretime-chain Notes on the Instantaneous Coretime Market Notes on Economics Notes on Types Rollout Performance, Ergonomics and Compatibility Testing, Security and Privacy Future Directions and Related Material Drawbacks, Alternatives and Unknowns Prior Art and References Start Date 30 June 2023 Description Agile periodic-sale-based model for assigning Coretime on the Polkadot Ubiquitous Computer. Authors Gavin Wood","breadcrumbs":"RFC-1: Agile Coretime » RFC-1: Agile Coretime","id":"196","title":"RFC-1: Agile Coretime"},"197":{"body":"This proposes a periodic, sale-based method for assigning Polkadot Coretime, the analogue of \"block space\" within the Polkadot Network. The method takes into account the need for long-term capital expenditure planning for teams building on Polkadot, yet also provides a means to allow Polkadot to capture long-term value in the resource which it sells. It supports the possibility of building rich and dynamic secondary markets to optimize resource allocation and largely avoids the need for parameterization.","breadcrumbs":"RFC-1: Agile Coretime » Summary","id":"197","title":"Summary"},"198":{"body":"","breadcrumbs":"RFC-1: Agile Coretime » Motivation","id":"198","title":"Motivation"},"199":{"body":"The Polkadot Ubiquitous Computer , or just Polkadot UC , represents the public service provided by the Polkadot Network. It is a trust-free, WebAssembly-based, multicore, internet-native omnipresent virtual machine which is highly resilient to interference and corruption. The present system of allocating the limited resources of the Polkadot Ubiquitous Computer is through a process known as parachain slot auctions . This is a parachain-centric paradigm whereby a single core is long-term allocated to a single parachain which itself implies a Substrate/Cumulus-based chain secured and connected via the Relay-chain. Slot auctions are on-chain candle auctions which proceed for several days and result in the core being assigned to the parachain for six months at a time up to 24 months in advance. Practically speaking, we only see two year periods being bid upon and leased. Funds behind the bids made in the slot auctions are merely locked, they are not consumed or paid and become unlocked and returned to the bidder on expiry of the lease period. A means of sharing the deposit trustlessly known as a crowdloan is available allowing token holders to contribute to the overall deposit of a chain without any counterparty risk.","breadcrumbs":"RFC-1: Agile Coretime » Present System","id":"199","title":"Present System"},"2":{"body":"This RFC proposes changing the current deposit requirements on the Polkadot and Kusama Asset Hub for creating NFT collection, minting an individual NFT, and lowering it's coresponding metadata and attribute deposit. The objective is to lower the barrier to entry for NFT creators, fostering a more inclusive and vibrant ecosystem while maintaining network integrity and preventing spam.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Summary","id":"2","title":"Summary"},"20":{"body":"The change does not impact compatibility as redeposit function is already implemented.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Compatibility","id":"20","title":"Compatibility"},"200":{"body":"The present system is based on a model of one-core-per-parachain. This is a legacy interpretation of the Polkadot platform and is not a reflection of its present capabilities. By restricting ownership and usage to this model, more dynamic and resource-efficient means of utilizing the Polkadot Ubiquitous Computer are lost. More specifically, it is impossible to lease out cores at anything less than six months, and apparently unrealistic to do so at anything less than two years. This removes the ability to dynamically manage the underlying resource, and generally experimentation, iteration and innovation suffer. It bakes into the platform an assumption of permanence for anything deployed into it and restricts the market's ability to find a more optimal allocation of the finite resource. There is no ability to determine capital requirements for hosting a parachain beyond two years from the point of its initial deployment onto Polkadot. While it would be unreasonable to have perfect and indefinite cost predictions for any real-world platform, not having any clarity whatsoever beyond \"market rates\" two years hence can be a very off-putting prospect for teams to buy into. However, quite possibly the most substantial problem is both a perceived and often real high barrier to entry of the Polkadot ecosystem. By forcing innovators to either raise seven-figure sums through investors or appeal to the wider token-holding community, Polkadot makes it difficult for a small band of innovators to deploy their technology into Polkadot. While not being actually permissioned, it is also far from the barrierless, permissionless ideal which an innovation platform such as Polkadot should be striving for.","breadcrumbs":"RFC-1: Agile Coretime » Problems","id":"200","title":"Problems"},"201":{"body":"The solution SHOULD provide an acceptable value-capture mechanism for the Polkadot network. The solution SHOULD allow parachains and other projects deployed on to the Polkadot UC to make long-term capital expenditure predictions for the cost of ongoing deployment. The solution SHOULD minimize the barriers to entry in the ecosystem. The solution SHOULD work well when the Polkadot UC has up to 1,000 cores. The solution SHOULD work when the number of cores which the Polkadot UC can support changes over time. The solution SHOULD facilitate the optimal allocation of work to cores of the Polkadot UC, including by facilitating the trade of regular core assignment at various intervals and for various spans. The solution SHOULD avoid creating additional dependencies on functionality which the Relay-chain need not strictly provide for the delivery of the Polkadot UC. Furthermore, the design SHOULD be implementable and deployable in a timely fashion; three months from the acceptance of this RFC should not be unreasonable.","breadcrumbs":"RFC-1: Agile Coretime » Requirements","id":"201","title":"Requirements"},"202":{"body":"Primary stakeholder sets are: Protocol researchers and developers, largely represented by the Polkadot Fellowship and Parity Technologies' Engineering division. Polkadot Parachain teams both present and future, and their users. Polkadot DOT token holders. Socialization: The essensials of this proposal were presented at Polkadot Decoded 2023 Copenhagen on the Main Stage. A small amount of socialization at the Parachain Summit preceeded it and some substantial discussion followed it. Parity Ecosystem team is currently soliciting views from ecosystem teams who would be key stakeholders.","breadcrumbs":"RFC-1: Agile Coretime » Stakeholders","id":"202","title":"Stakeholders"},"203":{"body":"","breadcrumbs":"RFC-1: Agile Coretime » Explanation","id":"203","title":"Explanation"},"204":{"body":"Upon implementation of this proposal, the parachain-centric slot auctions and associated crowdloans cease. Instead, Coretime on the Polkadot UC is sold by the Polkadot System in two separate formats: Bulk Coretime and Instantaneous Coretime . When a Polkadot Core is utilized, we say it is dedicated to a Task rather than a \"parachain\". The Task to which a Core is dedicated may change at every Relay-chain block and while one predominant type of Task is to secure a Cumulus-based blockchain (i.e. a parachain), other types of Tasks are envisioned. Bulk Coretime is sold periodically on a specialised system chain known as the Coretime-chain and allocated in advance of its usage, whereas Instantaneous Coretime is sold on the Relay-chain immediately prior to usage on a block-by-block basis. This proposal does not fix what should be done with revenue from sales of Coretime and leaves it for a further RFC process. Owners of Bulk Coretime are tracked on the Coretime-chain and the ownership status and properties of the owned Coretime are exposed over XCM as a non-fungible asset. At the request of the owner, the Coretime-chain allows a single Bulk Coretime asset, known as a Region , to be used in various ways including transferal to another owner, allocated to a particular task (e.g. a parachain) or placed in the Instantaneous Coretime Pool. Regions can also be split out, either into non-overlapping sub-spans or exactly-overlapping spans with less regularity. The Coretime-Chain periodically instructs the Relay-chain to assign its cores to alternative tasks as and when Core allocations change due to new Regions coming into effect. Renewal and Migration There is a renewal system which allows a Bulk Coretime assignment of a single core to be renewed unchanged with a known price increase from month to month. Renewals are processed in a period prior to regular purchases, effectively giving them precedence over a fixed number of cores available. Renewals are only enabled when a core's assignment does not include an Instantaneous Coretime allocation and has not been split into shorter segments. Thus, renewals are designed to ensure only that committed parachains get some guarantees about price for predicting future costs. This price-capped renewal system only allows cores to be reused for their same tasks from month to month. In any other context, Bulk Coretime would need to be purchased regularly. As a migration mechanism, pre-existing leases (from the legacy lease/slots/crowdloan framework) are initialized into the Coretime-chain and cores assigned to them prior to Bulk Coretime sales. In the sale where the lease expires, the system offers a renewal, as above, to allow a priority sale of Bulk Coretime and ensure that the Parachain suffers no downtime when transitioning from the legacy framework. Instantaneous Coretime Processing of Instantaneous Coretime happens in part on the Polkadot Relay-chain. Credit is purchased on the Coretime-chain for regular DOT tokens, and this results in a DOT-denominated Instantaneous Coretime Credit account on the Relay-chain being credited for the same amount. Though the Instantaneous Coretime Credit account records a balance for an account identifier (very likely controlled by a collator), it is non-transferable and non-refundable . It can only be consumed in order to purchase some Instantaneous Coretime with immediate availability. The Relay-chain reports this usage back to the Coretime-chain in order to allow it to reward the providers of the underlying Coretime, either the Polkadot System or owners of Bulk Coretime who contributed to the Instantaneous Coretime Pool. Specifically the Relay-chain is expected to be responsible for: holding non-transferable, non-refundable DOT-denominated Instantaneous Coretime Credit balance information. setting and adjusting the price of Instantaneous Coretime based on usage. allowing collators to consume their Instantaneous Coretime Credit at the current pricing in exchange for the ability to schedule one PoV for near-immediate usage. ensuring the Coretime-Chain has timely accounting information on Instantaneous Coretime Sales revenue. Coretime-chain The Coretime-chain is a new system parachain. It has the responsibility of providing the Relay-chain via UMP with information of: The number of cores which should be made available. Which tasks should be running on which cores and in what ratios. Accounting information for Instantaneous Coretime Credit. It also expects information from the Relay-chain via DMP: The number of cores available to be scheduled. Account information on Instantaneous Coretime Sales. The specific interface is properly described in RFC-5.","breadcrumbs":"RFC-1: Agile Coretime » Overview","id":"204","title":"Overview"},"205":{"body":"Parameters This proposal includes a number of parameters which need not necessarily be fixed. Their usage is explained below, but their values are suggested or specified in the later section Parameter Values . Reservations and Leases The Coretime-chain includes some governance-set reservations of Coretime; these cover every System-chain. Additionally, governance is expected to initialize details of the pre-existing leased chains. Regions A Region is an assignable period of Coretime with a known regularity. All Regions are associated with a unique Core Index , to identify which core the assignment of which ownership of the Region controls. All Regions are also associated with a Core Mask , an 80-bit bitmap, to denote the regularity at which it may be scheduled on the core. If all bits are set in the Core Mask value, it is said to be Complete . 80 is selected since this results in the size of the datatype used to identify any Region of Polkadot Coretime to be a very convenient 128-bit. Additionally, if TIMESLICE (the number of Relay-chain blocks in a Timeslice) is 80, then a single bit in the Core Mask bitmap represents exactly one Core for one Relay-chain block in one Timeslice. All Regions have a span. Region spans are quantized into periods of TIMESLICE blocks; BULK_PERIOD divides into TIMESLICE a whole number of times. The Timeslice type is a u32 which can be multiplied by TIMESLICE to give a BlockNumber value representing the same quantity in terms of Relay-chain blocks. Regions can be tasked to a TaskId (aka ParaId) or pooled into the Instantaneous Coretime Pool. This process can be Provisional or Final . If done only provisionally or not at all then they are fresh and have an Owner which is able to manipulate them further including reassignment. Once Final , then all ownership information is discarded and they cannot be manipulated further. Renewal is not possible when only provisionally tasked/pooled. Bulk Sales A sale of Bulk Coretime occurs on the Coretime-chain every BULK_PERIOD blocks. In every sale, a BULK_LIMIT of individual Regions are offered for sale. Each Region offered for sale has a different Core Index, ensuring that they each represent an independently allocatable resource on the Polkadot UC. The Regions offered for sale have the same span: they last exactly BULK_PERIOD blocks, and begin immediately following the span of the previous Sale's Regions. The Regions offered for sale also have the complete, non-interlaced, Core Mask. The Sale Period ends immediately as soon as span of the Coretime Regions that are being sold begins. At this point, the next Sale Price is set according to the previous Sale Price together with the number of Regions sold compared to the desired and maximum amount of Regions to be sold. See Price Setting for additional detail on this point. Following the end of the previous Sale Period, there is an Interlude Period lasting INTERLUDE_PERIOD of blocks. After this period is elapsed, regular purchasing begins with the Purchasing Period . This is designed to give at least two weeks worth of time for the purchased regions to be partitioned, interlaced, traded and allocated. The Interlude The Interlude period is a period prior to Regular Purchasing where renewals are allowed to happen. This has the effect of ensuring existing long-term tasks/parachains have a chance to secure their Bulk Coretime for a well-known price prior to general sales. Regular Purchasing Any account may purchase Regions of Bulk Coretime if they have the appropriate funds in place during the Purchasing Period, which is from INTERLUDE_PERIOD blocks after the end of the previous sale until the beginning of the Region of the Bulk Coretime which is for sale as long as there are Regions of Bulk Coretime left for sale (i.e. no more than BULK_LIMIT have already been sold in the Bulk Coretime Sale). The Purchasing Period is thus roughly BULK_PERIOD - INTERLUDE_PERIOD blocks in length. The Sale Price varies during an initial portion of the Purchasing Period called the Leadin Period and then stays stable for the remainder. This initial portion is LEADIN_PERIOD blocks in duration. During the Leadin Period the price decreases towards the Sale Price, which it lands at by the end of the Leadin Period. The actual curve by which the price starts and descends to the Sale Price is outside the scope of this RFC, though a basic suggestion is provided in the Price Setting Notes, below. Renewals At any time when there are remaining Regions of Bulk Coretime to be sold, including during the Interlude Period , then certain Bulk Coretime assignmnents may be Renewed . This is similar to a purchase in that funds must be paid and it consumes one of the Regions of Bulk Coretime which would otherwise be placed for purchase. However there are two key differences. Firstly, the price paid is the minimum of RENEWAL_PRICE_CAP more than what the purchase/renewal price was in the previous renewal and the current (or initial, if yet to begin) regular Sale Price. Secondly, the purchased Region comes preassigned with exactly the same workload as before. It cannot be traded, repartitioned, interlaced or exchanged. As such unlike regular purchasing the Region never has an owner. Renewal is only possible for either cores which have been assigned as a result of a previous renewal, which are migrating from legacy slot leases, or which fill their Bulk Coretime with an unsegmented, fully and finally assigned workload which does not include placement in the Instantaneous Coretime Pool. The renewed workload will be the same as this initial workload. Manipulation Regions may be manipulated in various ways by its owner: Transferred in ownership. Partitioned into quantized, non-overlapping segments of Bulk Coretime with the same ownership. Interlaced into multiple Regions over the same period whose eventual assignments take turns to be scheduled. Assigned to a single, specific task (identified by TaskId aka ParaId). This may be either provisional or final . Pooled into the Instantaneous Coretime Pool, in return for a pro-rata amount of the revenue from the Instantaneous Coretime Sales over its period. Enactment","breadcrumbs":"RFC-1: Agile Coretime » Detail","id":"205","title":"Detail"},"206":{"body":"Several functions of the Coretime-chain SHALL be exposed through dispatchables and/or a nonfungible trait implementation integrated into XCM: 1. transfer Regions may have their ownership transferred. A transfer(region: RegionId, new_owner: AccountId) dispatchable shall have the effect of altering the current owner of the Region identified by region from the signed origin to new_owner. An implementation of the nonfungible trait SHOULD include equivalent functionality. RegionId SHOULD be used for the AssetInstance value. 2. partition Regions may be split apart into two non-overlapping interior Regions of the same Core Mask which together concatenate to the original Region. A partition(region: RegionId, pivot: Timeslice) dispatchable SHALL have the effect of removing the Region identified by region and adding two new Regions of the same owner and Core Mask. One new Region will begin at the same point of the old Region but end at pivot timeslices into the Region, whereas the other will begin at this point and end at the end point of the original Region. Also: owner field of region must the equal to the Signed origin. pivot must equal neither the begin nor end fields of the region. 3. interlace Regions may be decomposed into two Regions of the same span whose eventual assignments take turns on the core by virtue of having complementary Core Masks. An interlace(region: RegionId, mask: CoreMask) dispatchable shall have the effect of removing the Region identified by region and creating two new Regions. The new Regions will each have the same span and owner of the original Region, but one Region will have a Core Mask equal to mask and the other will have Core Mask equal to the XOR of mask and the Core Mask of the original Region. Also: owner field of region must the equal to the Signed origin. mask must have some bits set AND must not equal the Core Mask of the old Region AND must only have bits set which are also set in the old Region's' Core Mask. 4. assign Regions may be assigned to a core. A assign(region: RegionId, target: TaskId, finality: Finality) dispatchable shall have the effect of placing an item in the workplan corresponding to the region's properties and assigned to the target task. If the region's end has already passed (taking into account any advance notice requirements) then this operation is a no-op. If the region's begining has already passed, then it is effectively altered to become the next schedulable timeslice. finality may have the value of either Final or Provisional. If Final, then the operation is free, the region record is removed entirely from storage and renewal may be possible: if the Region's span is the entire BULK_PERIOD, then the Coretime-chain records in storage that the allocation happened during this period in order to facilitate the possibility for a renewal. (Renewal only becomes possible when the full Core Mask of a core is finally assigned for the full BULK_PERIOD.) Also: owner field of region must the equal to the Signed origin. 5. pool Regions may be consumed in exchange for a pro rata portion of the Instantaneous Coretime Sales Revenue from its period and regularity. A pool(region: RegionId, beneficiary: AccountId, finality: Finality) dispatchable shall have the effect of placing an item in the workplan corresponding to the region's properties and assigned to the Instantaneous Coretime Pool. The details of the region will be recorded in order to allow for a pro rata share of the Instantaneous Coretime Sales Revenue at the time of the Region relative to any other providers in the Pool. If the region's end has already passed (taking into account any advance notice requirements) then this operation is a no-op. If the region's begining has already passed, then it is effectively altered to become the next schedulable timeslice. finality may have the value of either Final or Provisional. If Final, then the operation is free and the region record is removed entirely from storage. Also: owner field of region must the equal to the Signed origin. 6. Purchases A dispatchable purchase(price_limit: Balance) shall be provided. Any account may call purchase to purchase Bulk Coretime at the maximum price of price_limit. This may be called successfully only: during the regular Purchasing Period; when the caller is a Signed origin and their account balance is reducible by the current sale price; when the current sale price is no greater than price_limit; and when the number of cores already sold is less than BULK_LIMIT. If successful, the caller's account balance is reduced by the current sale price and a new Region item for the following Bulk Coretime span is issued with the owner equal to the caller's account. 7. Renewals A dispatchable renew(core: CoreIndex) shall be provided. Any account may call renew to purchase Bulk Coretime and renew an active allocation for the given core. This may be called during the Interlude Period as well as the regular Purchasing Period and has the same effect as purchase followed by assign, except that: The price of the sale is the Renewal Price (see next). The Region is allocated exactly the given core is currently allocated for the present Region. Renewal is only valid where a Region's span is assigned to Tasks (not placed in the Instantaneous Coretime Pool) for the entire unsplit BULK_PERIOD over all of the Core Mask and with Finality. There are thus three possibilities of a renewal being allowed: Purchased unsplit Coretime with final assignment to tasks over the full Core Mask. Renewed Coretime. A legacy lease which is ending. Renewal Price The Renewal Price is the minimum of the current regular Sale Price (or the initial Sale Price if in the Interlude Period) and: If the workload being renewed came to be through the Purchase and Assignment of Bulk Coretime, then the price paid during that Purchase operation. If the workload being renewed was previously renewed, then the price paid during this previous Renewal operation plus RENEWAL_PRICE_CAP. If the workload being renewed is a migation from a legacy slot auction lease, then the nominal price for a Regular Purchase (outside of the Lead-in Period) of the Sale during which the legacy lease expires. 8. Instantaneous Coretime Credits A dispatchable purchase_credit(amount: Balance, beneficiary: RelayChainAccountId) shall be provided. Any account with at least amount spendable funds may call this. This increases the Instantaneous Coretime Credit balance on the Relay-chain of the beneficiary by the given amount. This Credit is consumable on the Relay-chain as part of the Task scheduling system and its specifics are out of the scope of this proposal. When consumed, revenue is recorded and provided to the Coretime-chain for proper distribution. The API for doing this is specified in RFC-5.","breadcrumbs":"RFC-1: Agile Coretime » Specific functions of the Coretime-chain","id":"206","title":"Specific functions of the Coretime-chain"},"207":{"body":"For an efficient market to form around the provision of Bulk-purchased Cores into the pool of cores available for Instantaneous Coretime purchase, it is crucial to ensure that price changes for the purchase of Instantaneous Coretime are reflected well in the revenues of private Coretime providers during the same period. In order to ensure this, then it is crucial that Instantaneous Coretime, once purchased, cannot be held indefinitely prior to eventual use since, if this were the case, a nefarious collator could purchase Coretime when cheap and utilize it some time later when expensive and deprive private Coretime providers of their revenue. It must therefore be assumed that Instantaneous Coretime, once purchased, has a definite and short \"shelf-life\", after which it becomes unusable. This incentivizes collators to avoid purchasing Coretime unless they expect to utilize it imminently and thus helps create an efficient market-feedback mechanism whereby a higher price will actually result in material revenues for private Coretime providers who contribute to the pool of Cores available to service Instantaneous Coretime purchases.","breadcrumbs":"RFC-1: Agile Coretime » Notes on the Instantaneous Coretime Market","id":"207","title":"Notes on the Instantaneous Coretime Market"},"208":{"body":"The specific pricing mechanisms are out of scope for the present proposal. Proposals on economics should be properly described and discussed in another RFC. However, for the sake of completeness, I provide some basic illustration of how price setting could potentially work. Bulk Price Progression The present proposal assumes the existence of a price-setting mechanism which takes into account several parameters: OLD_PRICE: The price of the previous sale. BULK_TARGET: the target number of cores to be purchased as Bulk Coretime Regions or renewed during the previous sale. BULK_LIMIT: the maximum number of cores which could have been purchased/renewed during the previous sale. CORES_SOLD: the actual number of cores purchased/renewed in the previous sale. SELLOUT_PRICE: the price at which the most recent Bulk Coretime was purchased ( not renewed) prior to selling more cores than BULK_TARGET (or immediately after, if none were purchased before). This may not have a value if no Bulk Coretime was purchased. In general we would expect the price to increase the closer CORES_SOLD gets to BULK_LIMIT and to decrease the closer it gets to zero. If it is exactly equal to BULK_TARGET, then we would expect the price to remain the same. In the edge case that no cores were purchased yet more cores were sold (through renewals) than the target, then we would also avoid altering the price. A simple example of this would be the formula: IF SELLOUT_PRICE == NULL AND CORES_SOLD > BULK_TARGET THEN RETURN OLD_PRICE\nEND IF\nEFFECTIVE_PRICE := IF CORES_SOLD > BULK_TARGET THEN SELLOUT_PRICE\nELSE OLD_PRICE\nEND IF\nNEW_PRICE := IF CORES_SOLD < BULK_TARGET THEN EFFECTIVE_PRICE * MAX(CORES_SOLD, 1) / BULK_TARGET\nELSE EFFECTIVE_PRICE + EFFECTIVE_PRICE * (CORES_SOLD - BULK_TARGET) / (BULK_LIMIT - BULK_TARGET)\nEND IF This exists only as a trivial example to demonstrate a basic solution exists, and should not be intended as a concrete proposal. Intra-Leadin Price-decrease During the Leadin Period of a sale, the effective price starts higher than the Sale Price and falls to end at the Sale Price at the end of the Leadin Period. The price can thus be defined as a simple factor above one on which the Sale Price is multiplied. A function which returns this factor would accept a factor between zero and one specifying the portion of the Leadin Period which has passed. Thus we assume SALE_PRICE, then we can define PRICE as: PRICE := SALE_PRICE * FACTOR((NOW - LEADIN_BEGIN) / LEADIN_PERIOD) We can define a very simple progression where the price decreases monotonically from double the Sale Price at the beginning of the Leadin Period. FACTOR(T) := 2 - T Parameter Values Parameters are either suggested or specified . If suggested , it is non-binding and the proposal should not be judged on the value since other RFCs and/or the governance mechanism of Polkadot is expected to specify/maintain it. If specified , then the proposal should be judged on the merit of the value as-is. Name Value BULK_PERIOD 28 * DAYS specified INTERLUDE_PERIOD 7 * DAYS specified LEADIN_PERIOD 7 * DAYS specified TIMESLICE 8 * MINUTES specified BULK_TARGET 30 suggested BULK_LIMIT 45 suggested RENEWAL_PRICE_CAP Perbill::from_percent(2) suggested Instantaneous Price Progression This proposal assumes the existence of a Relay-chain-based price-setting mechanism for the Instantaneous Coretime Market which alters from block to block, taking into account several parameters: the last price, the size of the Instantaneous Coretime Pool (in terms of cores per Relay-chain block) and the amount of Instantaneous Coretime waiting for processing (in terms of Core-blocks queued). The ideal situation is to have the size of the Instantaneous Coretime Pool be equal to some factor of the Instantaneous Coretime waiting. This allows all Instantaneous Coretime sales to be processed with some limited latency while giving limited flexibility over ordering to the Relay-chain apparatus which is needed for efficient operation. If we set a factor of three, and thus aim to retain a queue of Instantaneous Coretime Sales which can be processed within three Relay-chain blocks, then we would increase the price if the queue goes above three times the amount of cores available, and decrease if it goes under. Let us assume the values OLD_PRICE, FACTOR, QUEUE_SIZE and POOL_SIZE. A simple definition of the NEW_PRICE would be thus: NEW_PRICE := IF QUEUE_SIZE < POOL_SIZE * FACTOR THEN OLD_PRICE * 0.95\nELSE OLD_PRICE / 0.95\nEND IF This exists only as a trivial example to demonstrate a basic solution exists, and should not be intended as a concrete proposal.","breadcrumbs":"RFC-1: Agile Coretime » Notes on Economics","id":"208","title":"Notes on Economics"},"209":{"body":"This exists only as a short illustration of a potential technical implementation and should not be treated as anything more. Regions This data schema achieves a number of goals: Coretime can be individually traded at a level of a single usage of a single core. Coretime Regions, of arbitrary span and up to 1/80th interlacing can be exposed as NFTs and exchanged. Any Coretime Region can be contributed to the Instantaneous Coretime Pool. Unlimited number of individual Coretime contributors to the Instantaneous Coretime Pool. (Effectively limited only in number of cores and interlacing level; with current values this would allow 80,000 individual payees per timeslice). All keys are self-describing. Workload to communicate core (re-)assignments is well-bounded and low in weight. All mandatory bookkeeping workload is well-bounded in weight. type Timeslice = u32; // 80 block amounts.\ntype CoreIndex = u16;\ntype CoreMask = [u8; 10]; // 80-bit bitmap. // 128-bit (16 bytes)\nstruct RegionId { begin: Timeslice, core: CoreIndex, mask: CoreMask,\n}\n// 296-bit (37 bytes)\nstruct RegionRecord { end: Timeslice, owner: AccountId,\n} map Regions = Map; // 40-bit (5 bytes). Could be 32-bit with a more specialised type.\nenum CoreTask { Off, Assigned { target: TaskId }, InstaPool,\n}\n// 120-bit (15 bytes). Could be 14 bytes with a specialised 32-bit `CoreTask`.\nstruct ScheduleItem { mask: CoreMask, // 80 bit task: CoreTask, // 40 bit\n} /// The work we plan on having each core do at a particular time in the future.\ntype Workplan = Map<(Timeslice, CoreIndex), BoundedVec>;\n/// The current workload of each core. This gets updated with workplan as timeslices pass.\ntype Workload = Map>; enum Contributor { System, Private(AccountId),\n} struct ContributionRecord { begin: Timeslice, end: Timeslice, core: CoreIndex, mask: CoreMask, payee: Contributor,\n}\ntype InstaPoolContribution = Map; type SignedTotalMaskBits = u32;\ntype InstaPoolIo = Map; type PoolSize = Value; /// Counter for the total CoreMask which could be dedicated to a pool. `u32` so we don't ever get\n/// an overflow.\ntype TotalMaskBits = u32;\nstruct InstaPoolHistoryRecord { total_contributions: TotalMaskBits, maybe_payout: Option,\n}\n/// Total InstaPool rewards for each Timeslice and the number of core Mask which contributed.\ntype InstaPoolHistory = Map; CoreMask tracks unique \"parts\" of a single core. It is used with interlacing in order to give a unique identifier to each component of any possible interlacing configuration of a core, allowing for simple self-describing keys for all core ownership and allocation information. It also allows for each core's workload to be tracked and updated progressively, keeping ongoing compute costs well-bounded and low. Regions are issued into the Regions map and can be transferred, partitioned and interlaced as the owner desires. Regions can only be tasked if they begin after the current scheduling deadline (if they have missed this, then the region can be auto-trimmed until it is). Once tasked, they are removed from there and a record is placed in Workplan. In addition, if they are contributed to the Instantaneous Coretime Pool, then an entry is placing in InstaPoolContribution and InstaPoolIo. Each timeslice, InstaPoolIo is used to update the current value of PoolSize. A new entry in InstaPoolHistory is inserted, with the total_contributions field of InstaPoolHistoryRecord being informed by the PoolSize value. Each core's has its Workload mutated according to its Workplan for the upcoming timeslice. When Instantaneous Coretime Market Revenues are reported for a particular timeslice from the Relay-chain, this information gets placed in the maybe_payout field of the relevant record of InstaPoolHistory. Payments can be requested made for any records in InstaPoolContribution whose begin is the key for a value in InstaPoolHistory whose maybe_payout is Some. In this case, the total_contributions is reduced by the ContributionRecord's mask and a pro rata amount paid. The ContributionRecord is mutated by incrementing begin, or removed if begin becomes equal to end. Example: // Simple example with a `u16` `CoreMask` and bulk sold in 100 timeslices.\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// First split @ 50\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_1111_1111u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Share half of first 50 blocks\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Sell half of them to Bob\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Bob };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Bob splits first 10 and assigns them to himself.\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1111_1111u16 } => { end: 110u32, owner: Bob };\n{ core: 0u16, begin: 110, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Bob };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Bob shares first 10 3 ways and sells smaller shares to Charlie and Dave\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1100_0000u16 } => { end: 110u32, owner: Charlie };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_0011_0000u16 } => { end: 110u32, owner: Dave };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_0000_1111u16 } => { end: 110u32, owner: Bob };\n{ core: 0u16, begin: 110, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Bob };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Bob assigns to his para B, Charlie and Dave assign to their paras C and D; Alice assigns first 50 to A\nRegions:\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\nWorkplan:\n(100, 0) => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1100_0000u16, task: Assigned(C) }, { mask: 0b0000_0000_0011_0000u16, task: Assigned(D) }, { mask: 0b0000_0000_0000_1111u16, task: Assigned(B) },\n]\n(110, 0) => vec![{ mask: 0b0000_0000_1111_1111u16, task: Assigned(B) }]\n// Alice assigns her remaining 50 timeslices to the InstaPool paying herself:\nRegions: (empty)\nWorkplan:\n(100, 0) => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1100_0000u16, task: Assigned(C) }, { mask: 0b0000_0000_0011_0000u16, task: Assigned(D) }, { mask: 0b0000_0000_0000_1111u16, task: Assigned(B) },\n]\n(110, 0) => vec![{ mask: 0b0000_0000_1111_1111u16, task: Assigned(B) }]\n(150, 0) => vec![{ mask: 0b1111_1111_1111_1111u16, task: InstaPool }]\nInstaPoolContribution:\n{ begin: 150, end: 200, core: 0, mask: 0b1111_1111_1111_1111u16, payee: Alice }\nInstaPoolIo:\n150 => 16\n200 => -16\n// Actual notifications to relay chain.\n// Assumes:\n// - Timeslice is 10 blocks.\n// - Timeslice 0 begins at block #1000.\n// - Relay needs 10 blocks notice of change.\n//\nWorkload: 0 => vec![]\nPoolSize: 0 // Block 990:\nRelay <= assign_core(core: 0u16, begin: 1000, assignment: vec![(A, 8), (C, 2), (D, 2), (B, 4)])\nWorkload: 0 => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1100_0000u16, task: Assigned(C) }, { mask: 0b0000_0000_0011_0000u16, task: Assigned(D) }, { mask: 0b0000_0000_0000_1111u16, task: Assigned(B) },\n]\nPoolSize: 0 // Block 1090:\nRelay <= assign_core(core: 0u16, begin: 1100, assignment: vec![(A, 8), (B, 8)])\nWorkload: 0 => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1111_1111u16, task: Assigned(B) },\n]\nPoolSize: 0 // Block 1490:\nRelay <= assign_core(core: 0u16, begin: 1500, assignment: vec![(Pool, 16)])\nWorkload: 0 => vec![ { mask: 0b1111_1111_1111_1111u16, task: InstaPool },\n]\nPoolSize: 16\nInstaPoolIo:\n200 => -16\nInstaPoolHistory:\n150 => { total_contributions: 16, maybe_payout: None } // Sometime after block 1500:\nInstaPoolHistory:\n150 => { total_contributions: 16, maybe_payout: Some(P) } // Sometime after block 1990:\nInstaPoolIo: (empty)\nPoolSize: 0\nInstaPoolHistory:\n150 => { total_contributions: 16, maybe_payout: Some(P0) }\n151 => { total_contributions: 16, maybe_payout: Some(P1) }\n152 => { total_contributions: 16, maybe_payout: Some(P2) }\n...\n199 => { total_contributions: 16, maybe_payout: Some(P49) } // Sometime later still Alice calls for a payout\nInstaPoolContribution: (empty)\nInstaPoolHistory: (empty)\n// Alice gets rewarded P0 + P1 + ... P49.","breadcrumbs":"RFC-1: Agile Coretime » Notes on Types","id":"209","title":"Notes on Types"},"21":{"body":"There remain unresolved questions regarding the implementation of a function-based pricing model for deposits and the feasibility of linking deposits to a USD(x) value. These aspects require further exploration and discussion to ascertain their viability and potential impact on the ecosystem.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Unresolved Questions","id":"21","title":"Unresolved Questions"},"210":{"body":"Rollout of this proposal comes in several phases: Finalise the specifics of implementation; this may be done through a design document or through a well-documented prototype implementation. Implement the design, including all associated aspects such as unit tests, benchmarks and any support software needed. If any new parachain is required, launch of this. Formal audit of the implementation and any manual testing. Announcement to the various stakeholders of the imminent changes. Software integration and release. Governance upgrade proposal(s). Monitoring of the upgrade process.","breadcrumbs":"RFC-1: Agile Coretime » Rollout","id":"210","title":"Rollout"},"211":{"body":"No specific considerations. Parachains already deployed into the Polkadot UC must have a clear plan of action to migrate to an agile Coretime market. While this proposal does not introduce documentable features per se, adequate documentation must be provided to potential purchasers of Polkadot Coretime. This SHOULD include any alterations to the Polkadot-SDK software collection.","breadcrumbs":"RFC-1: Agile Coretime » Performance, Ergonomics and Compatibility","id":"211","title":"Performance, Ergonomics and Compatibility"},"212":{"body":"Regular testing through unit tests, integration tests, manual testnet tests, zombie-net tests and fuzzing SHOULD be conducted. A regular security review SHOULD be conducted prior to deployment through a review by the Web3 Foundation economic research group. Any final implementation MUST pass a professional external security audit. The proposal introduces no new privacy concerns.","breadcrumbs":"RFC-1: Agile Coretime » Testing, Security and Privacy","id":"212","title":"Testing, Security and Privacy"},"213":{"body":"RFC-3 proposes a means of implementing the high-level allocations within the Relay-chain. RFC-5 proposes the API for interacting with Relay-chain. Additional work should specify the interface for the instantaneous market revenue so that the Coretime-chain can ensure Bulk Coretime placed in the instantaneous market is properly compensated.","breadcrumbs":"RFC-1: Agile Coretime » Future Directions and Related Material","id":"213","title":"Future Directions and Related Material"},"214":{"body":"Unknowns include the economic and resource parameterisations: The initial price of Bulk Coretime. The price-change algorithm between Bulk Coretime sales. The price increase per Bulk Coretime period for renewals. The price decrease graph in the Leadin period for Bulk Coretime sales. The initial price of Instantaneous Coretime. The price-change algorithm for Instantaneous Coretime sales. The percentage of cores to be sold as Bulk Coretime. The fate of revenue collected.","breadcrumbs":"RFC-1: Agile Coretime » Drawbacks, Alternatives and Unknowns","id":"214","title":"Drawbacks, Alternatives and Unknowns"},"215":{"body":"Robert Habermeier initially wrote on the subject of Polkadot blockspace-centric in the article Polkadot Blockspace over Blockchains . While not going into details, the article served as an early reframing piece for moving beyond one-slot-per-chain models and building out secondary market infrastructure for resource allocation.","breadcrumbs":"RFC-1: Agile Coretime » Prior Art and References","id":"215","title":"Prior Art and References"},"216":{"body":"(source) Table of Contents RFC-5: Coretime Interface Summary Motivation Requirements Stakeholders Explanation UMP Message Types DMP Message Types Realistic Limits of the Usage Performance, Ergonomics and Compatibility Testing, Security and Privacy Future Directions and Related Material Drawbacks, Alternatives and Unknowns Prior Art and References Start Date 06 July 2023 Description Interface for manipulating the usage of cores on the Polkadot Ubiquitous Computer. Authors Gavin Wood, Robert Habermeier","breadcrumbs":"RFC-5: Coretime Interface » RFC-5: Coretime Interface","id":"216","title":"RFC-5: Coretime Interface"},"217":{"body":"In the Agile Coretime model of the Polkadot Ubiquitous Computer, as proposed in RFC-1 and RFC-3, it is necessary for the allocating parachain (envisioned to be one or more pallets on a specialised Brokerage System Chain) to communicate the core assignments to the Relay-chain, which is responsible for ensuring those assignments are properly enacted. This is a proposal for the interface which will exist around the Relay-chain in order to communicate this information and instructions.","breadcrumbs":"RFC-5: Coretime Interface » Summary","id":"217","title":"Summary"},"218":{"body":"The background motivation for this interface is splitting out coretime allocation functions and secondary markets from the Relay-chain onto System parachains. A well-understood and general interface is necessary for ensuring the Relay-chain receives coretime allocation instructions from one or more System chains without introducing dependencies on the implementation details of either side.","breadcrumbs":"RFC-5: Coretime Interface » Motivation","id":"218","title":"Motivation"},"219":{"body":"The interface MUST allow the Relay-chain to be scheduled on a low-latency basis. Individual cores MUST be schedulable, both in full to a single task (a ParaId or the Instantaneous Coretime Pool) or to many unique tasks in differing ratios. Typical usage of the interface SHOULD NOT overload the VMP message system. The interface MUST allow for the allocating chain to be notified of all accounting information relevant for making accurate rewards for contributing to the Instantaneous Coretime Pool. The interface MUST allow for Instantaneous Coretime Market Credits to be communicated. The interface MUST allow for the allocating chain to instruct changes to the number of cores which it is able to allocate. The interface MUST allow for the allocating chain to be notified of changes to the number of cores which are able to be allocated by the allocating chain.","breadcrumbs":"RFC-5: Coretime Interface » Requirements","id":"219","title":"Requirements"},"22":{"body":"We recommend initially lowering the deposit to the suggested levels. Subsequently, based on the outcomes and feedback, we can continue discussions on more complex models such as function-based pricing or currency-linked deposits. If accepted, this RFC could pave the way for further discussions and proposals aimed at enhancing the inclusivity and accessibility of the Polkadot ecosystem.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Future Directions and Related Material","id":"22","title":"Future Directions and Related Material"},"220":{"body":"Primary stakeholder sets are: Developers of the Relay-chain core-management logic. Developers of the Brokerage System Chain and its pallets. Socialization: This content of this RFC was discussed in the Polkdot Fellows channel.","breadcrumbs":"RFC-5: Coretime Interface » Stakeholders","id":"220","title":"Stakeholders"},"221":{"body":"The interface has two sections: The messages which the Relay-chain is able to receive from the allocating parachain (the UMP message types ), and messages which the Relay-chain is able to send to the allocating parachain (the DMP message types ). These messages are expected to be able to be implemented in a well-known pallet and called with the XCM Transact instruction. Future work may include these messages being introduced into the XCM standard.","breadcrumbs":"RFC-5: Coretime Interface » Explanation","id":"221","title":"Explanation"},"222":{"body":"request_core_count Prototype: fn request_core_count( count: u16,\n) Requests the Relay-chain to alter the number of schedulable cores to count. Under normal operation, the Relay-chain SHOULD send a notify_core_count(count) message back. request_revenue_info_at Prototype: fn request_revenue_at( when: BlockNumber,\n) Requests that the Relay-chain send a notify_revenue message back at or soon after Relay-chain block number when whose until parameter is equal to when. The period in to the past which when is allowed to be may be limited; if so the limit should be understood on a channel outside of this proposal. In the case that the request cannot be serviced because when is too old a block then a notify_revenue message must still be returned, but its revenue field may be None. credit_account Prototype: fn credit_account( who: AccountId, amount: Balance,\n) Instructs the Relay-chain to add the amount of DOT to the Instantaneous Coretime Market Credit account of who. It is expected that Instantaneous Coretime Market Credit on the Relay-chain is NOT transferrable and only redeemable when used to assign cores in the Instantaneous Coretime Pool. assign_core Prototype: type PartsOf57600 = u16;\nenum CoreAssignment { InstantaneousPool, Task(ParaId),\n}\nfn assign_core( core: CoreIndex, begin: BlockNumber, assignment: Vec<(CoreAssignment, PartsOf57600)>, end_hint: Option,\n) Requirements: assert!(core < core_count);\nassert!(targets.iter().map(|x| x.0).is_sorted());\nassert_eq!(targets.iter().map(|x| x.0).unique().count(), targets.len());\nassert_eq!(targets.iter().map(|x| x.1).sum(), 57600); Where: core_count is assumed to be the sole parameter in the last received notify_core_count message. Instructs the Relay-chain to ensure that the core indexed as core is utilised for a number of assignments in specific ratios given by assignment starting as soon after begin as possible. Core assignments take the form of a CoreAssignment value which can either task the core to a ParaId value or indicate that the core should be used in the Instantaneous Pool. Each assignment comes with a ratio value, represented as the numerator of the fraction with a denominator of 57,600. If end_hint is Some and the inner is greater than the current block number, then the Relay-chain should optimize in the expectation of receiving a new assign_core(core, ...) message at or prior to the block number of the inner value. Specific functionality should remain unchanged regardless of the end_hint value. On the choice of denominator: 57,600 is a very composite number which factors into: 2 ** 8, 3 ** 2, 5 ** 2. By using it as the denominator we allow for various useful fractions to be perfectly represented including thirds, quarters, fifths, tenths, 80ths, percent and 256ths.","breadcrumbs":"RFC-5: Coretime Interface » UMP Message Types","id":"222","title":"UMP Message Types"},"223":{"body":"notify_core_count Prototype: fn notify_core_count( count: u16,\n) Indicate that from this block onwards, the range of acceptable values of the core parameter of assign_core message is [0, count). assign_core will be a no-op if provided with a value for core outside of this range. notify_revenue_info Prototype: fn notify_revenue_info( until: BlockNumber, revenue: Option,\n) Provide the amount of revenue accumulated from Instantaneous Coretime Sales from Relay-chain block number last_until to until, not including until itself. last_until is defined as being the until argument of the last notify_revenue message sent, or zero for the first call. If revenue is None, this indicates that the information is no longer available. This explicitly disregards the possibility of multiple parachains requesting and being notified of revenue information. The Relay-chain must be configured to ensure that only a single revenue information destination exists.","breadcrumbs":"RFC-5: Coretime Interface » DMP Message Types","id":"223","title":"DMP Message Types"},"224":{"body":"For request_revenue_info, a successful request should be possible if when is no less than the Relay-chain block number on arrival of the message less 100,000. For assign_core, a successful request should be possible if begin is no less than the Relay-chain block number on arrival of the message plus 10 and workload contains no more than 100 items.","breadcrumbs":"RFC-5: Coretime Interface » Realistic Limits of the Usage","id":"224","title":"Realistic Limits of the Usage"},"225":{"body":"No specific considerations.","breadcrumbs":"RFC-5: Coretime Interface » Performance, Ergonomics and Compatibility","id":"225","title":"Performance, Ergonomics and Compatibility"},"226":{"body":"Standard Polkadot testing and security auditing applies. The proposal introduces no new privacy concerns.","breadcrumbs":"RFC-5: Coretime Interface » Testing, Security and Privacy","id":"226","title":"Testing, Security and Privacy"},"227":{"body":"RFC-1 proposes a means of determining allocation of Coretime using this interface. RFC-3 proposes a means of implementing the high-level allocations within the Relay-chain.","breadcrumbs":"RFC-5: Coretime Interface » Future Directions and Related Material","id":"227","title":"Future Directions and Related Material"},"228":{"body":"None at present.","breadcrumbs":"RFC-5: Coretime Interface » Drawbacks, Alternatives and Unknowns","id":"228","title":"Drawbacks, Alternatives and Unknowns"},"229":{"body":"None.","breadcrumbs":"RFC-5: Coretime Interface » Prior Art and References","id":"229","title":"Prior Art and References"},"23":{"body":"(source) Table of Contents RFC-0026: Sassafras Consensus Protocol Abstract 1. Motivation 1.1. Relevance to Implementors 1.2. Supporting Sassafras for Polkadot 2. Stakeholders 2.1. Blockchain Developers 2.2. Polkadot Ecosystem Contributors 3. Notation and Convention 3.1. Data Structures Definitions and Encoding 3.2. Pseudo-Code 3.3. Incremental Introduction of Types and Functions 4. Protocol Introduction 4.1. Submission of Candidate Tickets 4.2. Validation of Candidate Tickets 4.3. Tickets and Slots Binding 4.4. Claim of Ticket Ownership 4.5. Validation of Ticket Ownership 5. Bandersnatch VRFs Cryptographic Primitives 5.1. VRF Input 5.2. VRF PreOutput 5.3. VRF Signature Data 5.4. VRF Signature 6. Sassafras Protocol 6.1. Epoch's First Block 6.2. Creation and Submission of Candidate Tickets 6.3. Validation of candidate tickets 6.4. Ticket-Slot Binding 6.5. Slot Claim Production 6.6. Slot Claim Verification 6.6.1. Primary Method 6.7. Randomness Accumulator 7. Drawbacks 8. Testing, Security, and Privacy 9. Performance, Ergonomics, and Compatibility 9.1. Performance 9.2. Ergonomics 9.3. Compatibility 10. Prior Art and References 11. Unresolved Questions 12. Future Directions and Related Material 12.1. Interactions with On-Chain Code 12.2. Deployment Strategies 12.3. ZK-SNARK SRS Initialization 12.4. Anonymous Submission of Tickets. Start Date September 06, 2023 Description Sassafras consensus protocol description and structures Authors Davide Galassi","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » RFC-0026: Sassafras Consensus Protocol","id":"23","title":"RFC-0026: Sassafras Consensus Protocol"},"230":{"body":"(source) Table of Contents RFC-0007: System Collator Selection Summary Motivation Requirements Stakeholders Explanation Set Size Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Written Discussions Prior Feedback and Input From Unresolved Questions Future Directions and Related Material Start Date 07 July 2023 Description Mechanism for selecting collators of system chains. Authors Joe Petrowski","breadcrumbs":"RFC-0007: System Collator Selection » RFC-0007: System Collator Selection","id":"230","title":"RFC-0007: System Collator Selection"},"231":{"body":"As core functionality moves from the Relay Chain into system chains, so increases the reliance on the liveness of these chains for the use of the network. It is not economically scalable, nor necessary from a game-theoretic perspective, to pay collators large rewards. This RFC proposes a mechanism -- part technical and part social -- for ensuring reliable collator sets that are resilient to attemps to stop any subsytem of the Polkadot protocol.","breadcrumbs":"RFC-0007: System Collator Selection » Summary","id":"231","title":"Summary"},"232":{"body":"In order to guarantee access to Polkadot's system, the collators on its system chains must propose blocks (provide liveness) and allow all transactions to eventually be included. That is, some collators may censor transactions, but there must exist one collator in the set who will include a given transaction. In fact, all collators may censor varying subsets of transactions, but as long as no transaction is in the intersection of every subset, it will eventually be included. The objective of this RFC is to propose a mechanism to select such a set on each system chain. While the network as a whole uses staking (and inflationary rewards) to attract validators, collators face different challenges in scale and have lower security assumptions than validators. Regarding scale, there exist many system chains, and it is economically expensive to pay collators a premium. Likewise, any staked DOT for collation is not staked for validation. Since collator sets do not need to meet Byzantine Fault Tolerance criteria, staking as the primary mechanism for collator selection would remove stake that is securing BFT assumptions, making the network less secure. Another problem with economic scalability relates to the increasing number of system chains, and corresponding increase in need for collators (i.e., increase in collator slots). \"Good\" (highly available, non-censoring) collators will not want to compete in elections on many chains when they could use their resources to compete in the more profitable validator election. Such dilution decreases the required bond on each chain, leaving them vulnerable to takeover by hostile collator groups. This RFC proposes a system whereby collation is primarily an infrastructure service, with the on-chain Treasury reimbursing costs of semi-trusted node operators, referred to as \"Invulnerables\". The system need not trust the individual operators, only that as a set they would be resilient to coordinated attempts to stop a single chain from halting or to censor a particular subset of transactions. In the case that users do not trust this set, this RFC also proposes that each chain always have available collator positions that can be acquired by anyone by placing a bond.","breadcrumbs":"RFC-0007: System Collator Selection » Motivation","id":"232","title":"Motivation"},"233":{"body":"System MUST have at least one valid collator for every chain. System MUST allow anyone to become a collator, provided they reserve/hold enough DOT. System SHOULD select a set of collators with reasonable expectation that the set will not collude to censor any subset of transactions. Collators selected by governance SHOULD have a reasonable expectation that the Treasury will reimburse their operating costs.","breadcrumbs":"RFC-0007: System Collator Selection » Requirements","id":"233","title":"Requirements"},"234":{"body":"Infrastructure providers (people who run validator/collator nodes) Polkadot Treasury","breadcrumbs":"RFC-0007: System Collator Selection » Stakeholders","id":"234","title":"Stakeholders"},"235":{"body":"This protocol builds on the existing Collator Selection pallet and its notion of Invulnerables. Invulnerables are collators (identified by their AccountIds) who will be selected as part of the collator set every session. Operations relating to the management of the Invulnerables are done through privileged, governance origins. The implementation should maintain an API for adding and removing Invulnerable collators. In addition to Invulnerables, there are also open slots for \"Candidates\". Anyone can register as a Candidate by placing a fixed bond. However, with a fixed bond and fixed number of slots, there is an obvious selection problem: The slots fill up without any logic to replace their occupants. This RFC proposes that the collator selection protocol allow Candidates to increase (and decrease) their individual bonds, sort the Candidates according to bond, and select the top N Candidates. The selection and changeover should be coordinated by the session manager. A FRAME pallet already exists for sorting (\"bagging\") \"top N\" groups, the Bags List pallet . This pallet's SortedListProvider should be integrated into the session manager of the Collator Selection pallet. Despite the lack of apparent economic incentives (i.e., inflation), several reasons exist why one may want to bond funds to participate in the Candidates election, for example: They want to build credibility to be selected as Invulnerable; They want to ensure availability of an application, e.g. a stablecoin issuer might run a collator on Asset Hub to ensure transactions in its asset are included in blocks; They fear censorship themselves, e.g. a voter might think their votes are being censored from governance, so they run a collator on the governance chain to include their votes. Unlike the fixed-bond mechanism that fills up its Candidates, the election mechanism ensures that anyone can join the collator set by placing the Nth highest bond.","breadcrumbs":"RFC-0007: System Collator Selection » Explanation","id":"235","title":"Explanation"},"236":{"body":"In order to achieve the requirements listed under Motivation , it is reasonable to have approximately: 20 collators per system chain, of which 15 are Invulnerable, and five are elected by bond.","breadcrumbs":"RFC-0007: System Collator Selection » Set Size","id":"236","title":"Set Size"},"237":{"body":"The primary drawback is a reliance on governance for continued treasury funding of infrastructure costs for Invulnerable collators.","breadcrumbs":"RFC-0007: System Collator Selection » Drawbacks","id":"237","title":"Drawbacks"},"238":{"body":"The vast majority of cases can be covered by unit testing. Integration test should ensure that the Collator Selection UpdateOrigin, which has permission to modify the Invulnerables and desired number of Candidates, can handle updates over XCM from the system's governance location.","breadcrumbs":"RFC-0007: System Collator Selection » Testing, Security, and Privacy","id":"238","title":"Testing, Security, and Privacy"},"239":{"body":"This proposal has very little impact on most users of Polkadot, and should improve the performance of system chains by reducing the number of missed blocks.","breadcrumbs":"RFC-0007: System Collator Selection » Performance, Ergonomics, and Compatibility","id":"239","title":"Performance, Ergonomics, and Compatibility"},"24":{"body":"Sassafras is a novel consensus protocol designed to address the recurring fork-related challenges encountered in other lottery-based protocols. The protocol aims to create a mapping between each epoch's slots and the validators set while ensuring that the identity of validators assigned to the slots remains undisclosed until the slot is actively claimed during block production.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » Abstract","id":"24","title":"Abstract"},"240":{"body":"As chains have strict PoV size limits, care must be taken in the PoV impact of the session manager. Appropriate benchmarking and tests should ensure that conservative limits are placed on the number of Invulnerables and Candidates.","breadcrumbs":"RFC-0007: System Collator Selection » Performance","id":"240","title":"Performance"},"241":{"body":"The primary group affected is Candidate collators, who, after implementation of this RFC, will need to compete in a bond-based election rather than a race to claim a Candidate spot.","breadcrumbs":"RFC-0007: System Collator Selection » Ergonomics","id":"241","title":"Ergonomics"},"242":{"body":"This RFC is compatible with the existing implementation and can be handled via upgrades and migration.","breadcrumbs":"RFC-0007: System Collator Selection » Compatibility","id":"242","title":"Compatibility"},"243":{"body":"","breadcrumbs":"RFC-0007: System Collator Selection » Prior Art and References","id":"243","title":"Prior Art and References"},"244":{"body":"GitHub: Collator Selection Roadmap GitHub: Revisit Collator Selection Mechanism Polkadot Forum: Economic Model for System Para Collators","breadcrumbs":"RFC-0007: System Collator Selection » Written Discussions","id":"244","title":"Written Discussions"},"245":{"body":"Kian Paimani Jeff Burdges Rob Habermeier SR Labs Auditors Current collators including Paranodes, Stake Plus, Turboflakes, Peter Mensik, SIK, and many more.","breadcrumbs":"RFC-0007: System Collator Selection » Prior Feedback and Input From","id":"245","title":"Prior Feedback and Input From"},"246":{"body":"None at this time.","breadcrumbs":"RFC-0007: System Collator Selection » Unresolved Questions","id":"246","title":"Unresolved Questions"},"247":{"body":"There may exist in the future system chains for which this model of collator selection is not appropriate. These chains should be evaluated on a case-by-case basis.","breadcrumbs":"RFC-0007: System Collator Selection » Future Directions and Related Material","id":"247","title":"Future Directions and Related Material"},"248":{"body":"(source) Table of Contents RFC-0008: Store parachain bootnodes in relay chain DHT Summary Motivation Stakeholders Explanation DHT provider registration New networking protocol Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-07-14 Description Parachain bootnodes shall register themselves in the DHT of the relay chain Authors Pierre Krieger","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » RFC-0008: Store parachain bootnodes in relay chain DHT","id":"248","title":"RFC-0008: Store parachain bootnodes in relay chain DHT"},"249":{"body":"The full nodes of the Polkadot peer-to-peer network maintain a distributed hash table (DHT), which is currently used for full nodes discovery and validators discovery purposes. This RFC proposes to extend this DHT to be used to discover full nodes of the parachains of Polkadot.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Summary","id":"249","title":"Summary"},"25":{"body":"Sassafras Protocol has been rigorously detailed in a comprehensive research paper authored by the Web3 foundation research team. This RFC is primarily intended to detail the critical implementation aspects vital for ensuring interoperability and to clarify certain aspects that are left open by the research paper and thus subject to interpretation during implementation.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 1. Motivation","id":"25","title":"1. Motivation"},"250":{"body":"The maintenance of bootnodes has long been an annoyance for everyone. When a bootnode is newly-deployed or removed, every chain specification must be updated in order to take the update into account. This has lead to various non-optimal solutions, such as pulling chain specifications from GitHub repositories. When it comes to RPC nodes, UX developers often have trouble finding up-to-date addresses of parachain RPC nodes. With the ongoing migration from RPC nodes to light clients, similar problems would happen with chain specifications as well. Furthermore, there exists multiple different possible variants of a certain chain specification: with the non-raw storage, with the raw storage, with just the genesis trie root hash, with or without checkpoint, etc. All of this creates confusion. Removing the need for parachain developers to be aware of and manage these different versions would be beneficial. Since the PeerId and addresses of bootnodes needs to be stable, extra maintenance work is required from the chain maintainers. For example, they need to be extra careful when migrating nodes within their infrastructure. In some situations, bootnodes are put behind domain names, which also requires maintenance work. Because the list of bootnodes in chain specifications is so annoying to modify, the consequence is that the number of bootnodes is rather low (typically between 2 and 15). In order to better resist downtimes and DoS attacks, a better solution would be to use every node of a certain chain as potential bootnode, rather than special-casing some specific nodes. While this RFC doesn't solve these problems for relay chains, it aims at solving it for parachains by storing the list of all the full nodes of a parachain on the relay chain DHT. Assuming that this RFC is implemented, and that light clients are used, deploying a parachain wouldn't require more work than registering it onto the relay chain and starting the collators. There wouldn't be any need for special infrastructure nodes anymore.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Motivation","id":"250","title":"Motivation"},"251":{"body":"This RFC has been opened on my own initiative because I think that this is a good technical solution to a usability problem that many people are encountering and that they don't realize can be solved.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Stakeholders","id":"251","title":"Stakeholders"},"252":{"body":"The content of this RFC only applies for parachains and parachain nodes that are \"Substrate-compatible\". It is in no way mandatory for parachains to comply to this RFC. Note that \"Substrate-compatible\" is very loosely defined as \"implements the same mechanisms and networking protocols as Substrate\". The author of this RFC believes that \"Substrate-compatible\" should be very precisely specified, but there is controversy on this topic. While a lot of this RFC concerns the implementation of parachain nodes, it makes use of the resources of the Polkadot chain, and as such it is important to describe them in the Polkadot specification. This RFC adds two mechanisms: a registration in the DHT, and a new networking protocol.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Explanation","id":"252","title":"Explanation"},"253":{"body":"This RFC heavily relies on the functionalities of the Kademlia DHT already in use by Polkadot. You can find a link to the specification here . Full nodes of a parachain registered on Polkadot should register themselves onto the Polkadot DHT as the providers of a key corresponding to the parachain that they are serving, as described in the Content provider advertisement section of the specification. This uses the ADD_PROVIDER system of libp2p-kademlia. This key is: sha256(concat(scale_compact(para_id), randomness)) where the value of randomness can be found in the randomness field when calling the BabeApi_currentEpoch function. For example, for a para_id equal to 1000, and at the time of writing of this RFC (July 14th 2023 at 09:13 UTC), it is sha(0xa10f12872447958d50aa7b937b0106561a588e0e2628d33f81b5361b13dbcf8df708), which is equal to 0x483dd8084d50dbbbc962067f216c37b627831d9339f5a6e426a32e3076313d87. In order to avoid downtime when the key changes, parachain full nodes should also register themselves as a secondary key that uses a value of randomness equal to the randomness field when calling BabeApi_nextEpoch. Implementers should be aware that their implementation of Kademlia might already hash the key before XOR'ing it. The key is not meant to be hashed twice. The compact SCALE encoding has been chosen in order to avoid problems related to the number of bytes and endianness of the para_id.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » DHT provider registration","id":"253","title":"DHT provider registration"},"254":{"body":"A new request-response protocol should be added, whose name is /91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3/paranode (that hexadecimal number is the genesis hash of the Polkadot chain, and should be adjusted appropriately for Kusama and others). The request consists in a SCALE-compact-encoded para_id. For example, for a para_id equal to 1000, this is 0xa10f. Note that because this is a request-response protocol, the request is always prefixed with its length in bytes. While the body of the request is simply the SCALE-compact-encoded para_id, the data actually sent onto the substream is both the length and body. The response consists in a protobuf struct, defined as: syntax = \"proto2\"; message Response { // Peer ID of the node on the parachain side. bytes peer_id = 1; // Multiaddresses of the parachain side of the node. The list and format are the same as for the `listenAddrs` field of the `identify` protocol. repeated bytes addrs = 2; // Genesis hash of the parachain. Used to determine the name of the networking protocol to connect to the parachain. Untrusted. bytes genesis_hash = 3; // So-called \"fork ID\" of the parachain. Used to determine the name of the networking protocol to connect to the parachain. Untrusted. optional string fork_id = 4;\n}; The maximum size of a response is set to an arbitrary 16kiB. The responding side should make sure to conform to this limit. Given that fork_id is typically very small and that the only variable-length field is addrs, this is easily achieved by limiting the number of addresses. Implementers should be aware that addrs might be very large, and are encouraged to limit the number of addrs to an implementation-defined value.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » New networking protocol","id":"254","title":"New networking protocol"},"255":{"body":"The peer_id and addrs fields are in theory not strictly needed, as the PeerId and addresses could be always equal to the PeerId and addresses of the node being registered as the provider and serving the response. However, the Cumulus implementation currently uses two different networking stacks, one of the parachain and one for the relay chain, using two separate PeerIds and addresses, and as such the PeerId and addresses of the other networking stack must be indicated. Asking them to use only one networking stack wouldn't feasible in a realistic time frame. The values of the genesis_hash and fork_id fields cannot be verified by the requester and are expected to be unused at the moment. Instead, a client that desires connecting to a parachain is expected to obtain the genesis hash and fork ID of the parachain from the parachain chain specification. These fields are included in the networking protocol nonetheless in case an acceptable solution is found in the future, and in order to allow use cases such as discovering parachains in a not-strictly-trusted way.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Drawbacks","id":"255","title":"Drawbacks"},"256":{"body":"Because not all nodes want to be used as bootnodes, implementers are encouraged to provide a way to disable this mechanism. However, it is very much encouraged to leave this mechanism on by default for all parachain nodes. This mechanism doesn't add or remove any security by itself, as it relies on existing mechanisms. However, if the principle of chain specification bootnodes is entirely replaced with the mechanism described in this RFC (which is the objective), then it becomes important whether the mechanism in this RFC can be abused in order to make a parachain unreachable. Due to the way Kademlia works, it would become the responsibility of the 20 Polkadot nodes whose sha256(peer_id) is closest to the key (described in the explanations section) to store the list of bootnodes of each parachain. Furthermore, when a large number of providers (here, a provider is a bootnode) are registered, only the providers closest to the key are kept, up to a certain implementation-defined limit. For this reason, an attacker can abuse this mechanism by randomly generating libp2p PeerIds until they find the 20 entries closest to the key representing the target parachain. They are then in control of the parachain bootnodes. Because the key changes periodically and isn't predictable, and assuming that the Polkadot DHT is sufficiently large, it is not realistic for an attack like this to be maintained in the long term. Furthermore, parachain clients are expected to cache a list of known good nodes on their disk. If the mechanism described in this RFC went down, it would only prevent new nodes from accessing the parachain, while clients that have connected before would not be affected.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Testing, Security, and Privacy","id":"256","title":"Testing, Security, and Privacy"},"257":{"body":"","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Performance, Ergonomics, and Compatibility","id":"257","title":"Performance, Ergonomics, and Compatibility"},"258":{"body":"The DHT mechanism generally has a low overhead, especially given that publishing providers is done only every 24 hours. Doing a Kademlia iterative query then sending a provider record shouldn't take more than around 50 kiB in total of bandwidth for the parachain bootnode. Assuming 1000 parachain full nodes, the 20 Polkadot full nodes corresponding to a specific parachain will each receive a sudden spike of a few megabytes of networking traffic when the key rotates. Again, this is relatively negligible. If this becomes a problem, one can add a random delay before a parachain full node registers itself to be the provider of the key corresponding to BabeApi_next_epoch. Maybe the biggest uncertainty is the traffic that the 20 Polkadot full nodes will receive from light clients that desire knowing the bootnodes of a parachain. Light clients are generally encouraged to cache the peers that they use between restarts, so they should only query these 20 Polkadot full nodes at their first initialization. If this every becomes a problem, this value of 20 is an arbitrary constant that can be increased for more redundancy.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Performance","id":"258","title":"Performance"},"259":{"body":"Irrelevant.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Ergonomics","id":"259","title":"Ergonomics"},"26":{"body":"This RFC focuses on providing implementors with the necessary insights into the protocol's operation. In instances of inconsistency between this document and the research paper, this RFC should be considered authoritative to eliminate ambiguities and ensure interoperability.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 1.1. Relevance to Implementors","id":"26","title":"1.1. Relevance to Implementors"},"260":{"body":"Irrelevant.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Compatibility","id":"260","title":"Compatibility"},"261":{"body":"None.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Prior Art and References","id":"261","title":"Prior Art and References"},"262":{"body":"While it fundamentally doesn't change much to this RFC, using BabeApi_currentEpoch and BabeApi_nextEpoch might be inappropriate. I'm not familiar enough with good practices within the runtime to have an opinion here. Should it be an entirely new pallet?","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Unresolved Questions","id":"262","title":"Unresolved Questions"},"263":{"body":"It is possible that in the future a client could connect to a parachain without having to rely on a trusted parachain specification.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Future Directions and Related Material","id":"263","title":"Future Directions and Related Material"},"264":{"body":"(source) Table of Contents RFC-0012: Process for Adding New System Collectives Summary Motivation Stakeholders Explanation Removing Collectives Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Prior Art and References Unresolved Questions Start Date 24 July 2023 Description A process for adding new (and removing existing) system collectives. Authors Joe Petrowski","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » RFC-0012: Process for Adding New System Collectives","id":"264","title":"RFC-0012: Process for Adding New System Collectives"},"265":{"body":"Since the introduction of the Collectives parachain, many groups have expressed interest in forming new -- or migrating existing groups into -- on-chain collectives. While adding a new collective is relatively simple from a technical standpoint, the Fellowship will need to merge new pallets into the Collectives parachain for each new collective. This RFC proposes a means for the network to ratify a new collective, thus instructing the Fellowship to instate it in the runtime.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Summary","id":"265","title":"Summary"},"266":{"body":"Many groups have expressed interest in representing collectives on-chain. Some of these include: Parachain technical fellowship (new) Fellowship(s) for media, education, and evangelism (new) Polkadot Ambassador Program (existing) Anti-Scam Team (existing) Collectives that form part of the core Polkadot protocol should have a mandate to serve the Polkadot network. However, as part of the Polkadot protocol, the Fellowship, in its capacity of maintaining system runtimes, will need to include modules and configurations for each collective. Once a group has developed a value proposition for the Polkadot network, it should have a clear path to having its collective accepted on-chain as part of the protocol. Acceptance should direct the Fellowship to include the new collective with a given initial configuration into the runtime. However, the network, not the Fellowship, should ultimately decide which collectives are in the interest of the network.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Motivation","id":"266","title":"Motivation"},"267":{"body":"Polkadot stakeholders who would like to organize on-chain. Technical Fellowship, in its role of maintaining system runtimes.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Stakeholders","id":"267","title":"Stakeholders"},"268":{"body":"The group that wishes to operate an on-chain collective should publish the following information: Charter, including the collective's mandate and how it benefits Polkadot. This would be similar to the Fellowship Manifesto . Seeding recommendation. Member types, i.e. should members be individuals or organizations. Member management strategy, i.e. how do members join and get promoted, if applicable. How much, if at all, members should get paid in salary. Any special origins this Collective should have outside its self. For example, the Fellowship can whitelist calls for referenda via the WhitelistOrigin. This information could all be in a single document or, for example, a GitHub repository. After publication, members should seek feedback from the community and Technical Fellowship, and make any revisions needed. When the collective believes the proposal is ready, they should bring a remark with the text APPROVE_COLLECTIVE(\"{collective name}, {commitment}\") to a Root origin referendum. The proposer should provide instructions for generating commitment. The passing of this referendum would be unequivocal direction to the Fellowship that this collective should be part of the Polkadot runtime. Note: There is no need for a REJECT referendum. Proposals that have not been approved are simply not included in the runtime.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Explanation","id":"268","title":"Explanation"},"269":{"body":"If someone believes that an existing collective is not acting in the interest of the network or in accordance with its charter, they should likewise have a means to instruct the Fellowship to remove that collective from Polkadot. An on-chain remark from the Root origin with the text REMOVE_COLLECTIVE(\"{collective name}, {para ID}, [{pallet indices}]\") would instruct the Fellowship to remove the collective via the listed pallet indices on paraId. Should someone want to construct such a remark, they should have a reasonable expectation that a member of the Fellowship would help them identify the pallet indices associated with a given collective, whether or not the Fellowship member agrees with removal. Collective removal may also come with other governance calls, for example voiding any scheduled Treasury spends that would fund the given collective.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Removing Collectives","id":"269","title":"Removing Collectives"},"27":{"body":"Beyond promoting interoperability, this RFC also aims to facilitate the implementation of Sassafras within the Polkadot ecosystem. Although the specifics of deployment strategies are beyond the scope of this document, it lays the groundwork for the integration of Sassafras into the Polkadot network.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 1.2. Supporting Sassafras for Polkadot","id":"27","title":"1.2. Supporting Sassafras for Polkadot"},"270":{"body":"Passing a Root origin referendum is slow. However, given the network's investment (in terms of code maintenance and salaries) in a new collective, this is an appropriate step.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Drawbacks","id":"270","title":"Drawbacks"},"271":{"body":"No impacts.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Testing, Security, and Privacy","id":"271","title":"Testing, Security, and Privacy"},"272":{"body":"Generally all new collectives will be in the Collectives parachain. Thus, performance impacts should strictly be limited to this parachain and not affect others. As the majority of logic for collectives is generalized and reusable, we expect most collectives to be instances of similar subsets of modules. That is, new collectives should generally be compatible with UIs and other services that provide collective-related functionality, with little modifications to support new ones.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Performance, Ergonomics, and Compatibility","id":"272","title":"Performance, Ergonomics, and Compatibility"},"273":{"body":"The launch of the Technical Fellowship, see the initial forum post .","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Prior Art and References","id":"273","title":"Prior Art and References"},"274":{"body":"None at this time.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Unresolved Questions","id":"274","title":"Unresolved Questions"},"275":{"body":"(source) Table of Contents RFC-0014: Improve locking mechanism for parachains Summary Motivation Requirements Stakeholders Explanation Status quo Proposed changes Migration Drawbacks Testing, Security, and Privacy Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date July 25, 2023 Description Improve locking mechanism for parachains Authors Bryan Chen","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » RFC-0014: Improve locking mechanism for parachains","id":"275","title":"RFC-0014: Improve locking mechanism for parachains"},"276":{"body":"This RFC proposes a set of changes to the parachain lock mechanism. The goal is to allow a parachain manager to self-service the parachain without root track governance action. This is achieved by remove existing lock conditions and only lock a parachain when: A parachain manager explicitly lock the parachain OR a parachain block is produced successfully","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Summary","id":"276","title":"Summary"},"277":{"body":"The manager of a parachain has permission to manage the parachain when the parachain is unlocked. Parachains are by default locked when onboarded to a slot. This requires the parachain wasm/genesis must be valid, otherwise a root track governance action on relaychain is required to update the parachain. The current reliance on root track governance actions for managing parachains can be time-consuming and burdensome. This RFC aims to address this technical difficulty by allowing parachain managers to take self-service actions, rather than relying on general public voting. The key scenarios this RFC seeks to improve are: Rescue a parachain with invalid wasm/genesis. While we have various resources and templates to build a new parachain, it is still not a trivial task. It is very easy to make a mistake and resulting an invalid wasm/genesis. With lack of tools to help detect those issues [1] , it is very likely that the issues are only discovered after the parachain is onboarded on a slot. In this case, the parachain is locked and the parachain team has to go through a lengthy governance process to rescue the parachain. Perform lease renewal for an existing parachain. One way to perform lease renewal for a parachain is by doing a least swap with another parachain with a longer lease. This requires the other parachain must be operational and able to perform XCM transact call into relaychain to dispatch the swap call. Combined with the overhead of setting up a new parachain, this is an time consuming and expensive process. Ideally, the parachain manager should be able to perform the lease swap call without having a running parachain [2] .","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Motivation","id":"277","title":"Motivation"},"278":{"body":"A parachain manager SHOULD be able to rescue a parachain by updating the wasm/genesis without root track governance action. A parachain manager MUST NOT be able to update the wasm/genesis if the parachain is locked. A parachain SHOULD be locked when it successfully produced the first block. A parachain manager MUST be able to perform lease swap without having a running parachain.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Requirements","id":"278","title":"Requirements"},"279":{"body":"Parachain teams Parachain users","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Stakeholders","id":"279","title":"Stakeholders"},"28":{"body":"","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 2. Stakeholders","id":"28","title":"2. Stakeholders"},"280":{"body":"","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Explanation","id":"280","title":"Explanation"},"281":{"body":"A parachain can either be locked or unlocked [3] . With parachain locked, the parachain manager does not have any privileges. With parachain unlocked, the parachain manager can perform following actions with the paras_registrar pallet: deregister: Deregister a Para Id, freeing all data and returning any deposit. swap: Initiate or confirm lease swap with another parachain. add_lock: Lock the parachain. schedule_code_upgrade: Schedule a parachain upgrade to update parachain wasm. set_current_head: Set the parachain's current head. Currently, a parachain can be locked with following conditions: From add_lock call, which can be dispatched by relaychain Root origin, the parachain, or the parachain manager. When a parachain is onboarded on a slot [4] . When a crowdloan is created. Only the relaychain Root origin or the parachain itself can unlock the lock [5] . This creates an issue that if the parachain is unable to produce block, the parachain manager is unable to do anything and have to rely on relaychain Root origin to manage the parachain.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Status quo","id":"281","title":"Status quo"},"282":{"body":"This RFC proposes to change the lock and unlock conditions. A parachain can be locked only with following conditions: Relaychain governance MUST be able to lock any parachain. A parachain MUST be able to lock its own lock. A parachain manager SHOULD be able to lock the parachain. A parachain SHOULD be locked when it successfully produced a block for the first time. A parachain can be unlocked only with following conditions: Relaychain governance MUST be able to unlock any parachain. A parachain MUST be able to unlock its own lock. Note that create crowdloan MUST NOT lock the parachain and onboard a parachain SHOULD NOT lock it until a new block is successfully produced.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Proposed changes","id":"282","title":"Proposed changes"},"283":{"body":"A one off migration is proposed in order to apply this change retrospectively so that existing parachains can also be benefited from this RFC. This migration will unlock parachains that confirms with following conditions: Parachain is locked. Parachain never produced a block. Including from expired leases. Parachain manager never explicitly lock the parachain.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Migration","id":"283","title":"Migration"},"284":{"body":"Parachain locks are designed in such way to ensure the decentralization of parachains. If parachains are not locked when it should be, it could introduce centralization risk for new parachains. For example, one possible scenario is that a collective may decide to launch a parachain fully decentralized. However, if the parachain is unable to produce block, the parachain manager will be able to replace the wasm and genesis without the consent of the collective. It is considered this risk is tolerable as it requires the wasm/genesis to be invalid at first place. It is not yet practically possible to develop a parachain without any centralized risk currently. Another case is that a parachain team may decide to use crowdloan to help secure a slot lease. Previously, creating a crowdloan will lock a parachain. This means crowdloan participants will know exactly the genesis of the parachain for the crowdloan they are participating. However, this actually providers little assurance to crowdloan participants. For example, if the genesis block is determined before a crowdloan is started, it is not possible to have onchain mechanism to enforce reward distributions for crowdloan participants. They always have to rely on the parachain team to fulfill the promise after the parachain is alive. Existing operational parachains will not be impacted.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Drawbacks","id":"284","title":"Drawbacks"},"285":{"body":"The implementation of this RFC will be tested on testnets (Rococo and Westend) first. An audit maybe required to ensure the implementation does not introduce unwanted side effects. There is no privacy related concerns.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Testing, Security, and Privacy","id":"285","title":"Testing, Security, and Privacy"},"286":{"body":"This RFC should not introduce any performance impact.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Performance","id":"286","title":"Performance"},"287":{"body":"This RFC should improve the developer experiences for new and existing parachain teams","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Ergonomics","id":"287","title":"Ergonomics"},"288":{"body":"This RFC is fully compatibility with existing interfaces.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Compatibility","id":"288","title":"Compatibility"},"289":{"body":"Parachain Slot Extension Story: https://github.com/paritytech/polkadot/issues/4758 Allow parachain to renew lease without actually run another parachain: https://github.com/paritytech/polkadot/issues/6685 Always treat parachain that never produced block for a significant amount of time as unlocked: https://github.com/paritytech/polkadot/issues/7539","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Prior Art and References","id":"289","title":"Prior Art and References"},"29":{"body":"Developers responsible for creating blockchains who intend to leverage the benefits offered by the Sassafras Protocol.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 2.1. Blockchain Developers","id":"29","title":"2.1. Blockchain Developers"},"290":{"body":"None at this stage.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Unresolved Questions","id":"290","title":"Unresolved Questions"},"291":{"body":"This RFC is only intended to be a short term solution. Slots will be removed in future and lock mechanism is likely going to be replaced with a more generalized parachain manage & recovery system in future. Therefore long term impacts of this RFC are not considered. https://github.com/paritytech/cumulus/issues/377 [2] : https://github.com/paritytech/polkadot/issues/6685 [3] : https://github.com/paritytech/polkadot/blob/994af3de79af25544bf39644844cbe70a7b4d695/runtime/common/src/paras_registrar.rs#L51-L52C15 [4] : https://github.com/paritytech/polkadot/blob/994af3de79af25544bf39644844cbe70a7b4d695/runtime/common/src/paras_registrar.rs#L473-L475 [5] : https://github.com/paritytech/polkadot/blob/994af3de79af25544bf39644844cbe70a7b4d695/runtime/common/src/paras_registrar.rs#L333-L340","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Future Directions and Related Material","id":"291","title":"Future Directions and Related Material"},"292":{"body":"(source) Table of Contents RFC-0022: Adopt Encointer Runtime Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date Aug 22nd 2023 Description Permanently move the Encointer runtime into the Fellowship runtimes repo. Authors @brenzi for Encointer Association, 8000 Zurich, Switzerland","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » RFC-0022: Adopt Encointer Runtime","id":"292","title":"RFC-0022: Adopt Encointer Runtime"},"293":{"body":"Encointer is a system chain on Kusama since Jan 2022 and has been developed and maintained by the Encointer association. This RFC proposes to treat Encointer like any other system chain and include it in the fellowship repo with this PR .","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Summary","id":"293","title":"Summary"},"294":{"body":"Encointer does not seek to be in control of its runtime repository. As a decentralized system, the fellowship has a more suitable structure to maintain a system chain runtime repo than the Encointer association does. Also, Encointer aims to update its runtime in batches with other system chains in order to have consistency for interoperability across system chains.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Motivation","id":"294","title":"Motivation"},"295":{"body":"Fellowship: Will continue to take upon them the review and auditing work for the Encointer runtime, but the process is streamlined with other system chains and therefore less time-consuming compared to the separate repo and CI process we currently have. Kusama Network: Tokenholders can easily see the changes of all system chains in one place. Encointer Association: Further decentralization of the Encointer Network necessities like devops. Encointer devs: Being able to work directly in the Fellowship runtimes repo to streamline and synergize with other developers.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Stakeholders","id":"295","title":"Stakeholders"},"296":{"body":"Our PR has all details about our runtime and how we would move it into the fellowship repo. Noteworthy: All Encointer-specific pallets will still be located in encointer's repo for the time being: https://github.com/encointer/pallets It will still be the duty of the Encointer team to keep its runtime up to date and provide adequate test fixtures. Frequent dependency bumps with Polkadot releases would be beneficial for interoperability and could be streamlined with other system chains but that will not be a duty of fellowship. Whenever possible, all system chains could be upgraded jointly (including Encointer) with a batch referendum. Further notes: Encointer will publish all its crates crates.io Encointer does not carry out external auditing of its runtime nor pallets. It would be beneficial but not a requirement from our side if Encointer could join the auditing process of other system chains.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Explanation","id":"296","title":"Explanation"},"297":{"body":"Other than all other system chains, development and maintenance of the Encointer Network is mainly financed by the KSM Treasury and possibly the DOT Treasury in the future. Encointer is dedicated to maintaining its network and runtime code for as long as possible, but there is a dependency on funding which is not in the hands of the fellowship. The only risk in the context of funding, however, is that the Encointer runtime will see less frequent updates if there's less funding.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Drawbacks","id":"297","title":"Drawbacks"},"298":{"body":"No changes to the existing system are proposed. Only changes to how maintenance is organized.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Testing, Security, and Privacy","id":"298","title":"Testing, Security, and Privacy"},"299":{"body":"No changes","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Performance, Ergonomics, and Compatibility","id":"299","title":"Performance, Ergonomics, and Compatibility"},"3":{"body":"The current deposit of 10 DOT for collection creation (along with 0.01 DOT for item deposit and 0.2 DOT for metadata and attribute deposit) on the Polkadot Asset Hub and 0.1 KSM on Kusama Asset Hub presents a significant financial barrier for many NFT creators. By lowering the deposit requirements, we aim to encourage more NFT creators to participate in the Polkadot NFT ecosystem, thereby enriching the diversity and vibrancy of the community and its offerings. The actual implementation of the deposit is an arbitrary number coming from Uniques pallet . It is not a result of any economic analysis. This proposal aims to adjust the deposit from constant to dynamic pricing based on the deposit function with respect to stakeholders.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Motivation","id":"3","title":"Motivation"},"30":{"body":"Developers contributing to the Polkadot ecosystem, both relay-chain and para-chains. The protocol will have a central role in the next generation block authoring consensus systems.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 2.2. Polkadot Ecosystem Contributors","id":"30","title":"2.2. Polkadot Ecosystem Contributors"},"300":{"body":"Existing Encointer runtime repo","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Prior Art and References","id":"300","title":"Prior Art and References"},"301":{"body":"None identified","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Unresolved Questions","id":"301","title":"Unresolved Questions"},"302":{"body":"More info on Encointer: encointer.org","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Future Directions and Related Material","id":"302","title":"Future Directions and Related Material"},"303":{"body":"(source) Table of Contents RFC-0032: Minimal Relay Summary Motivation Stakeholders Explanation Migrations Interfaces Functional Architecture Resource Allocation Deployment Kusama Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 20 September 2023 Description Proposal to minimise Relay Chain functionality. Authors Joe Petrowski, Gavin Wood","breadcrumbs":"RFC-0032: Minimal Relay » RFC-0032: Minimal Relay","id":"303","title":"RFC-0032: Minimal Relay"},"304":{"body":"The Relay Chain contains most of the core logic for the Polkadot network. While this was necessary prior to the launch of parachains and development of XCM, most of this logic can exist in parachains. This is a proposal to migrate several subsystems into system parachains.","breadcrumbs":"RFC-0032: Minimal Relay » Summary","id":"304","title":"Summary"},"305":{"body":"Polkadot's scaling approach allows many distinct state machines (known generally as parachains) to operate with common guarantees about the validity and security of their state transitions. Polkadot provides these common guarantees by executing the state transitions on a strict subset (a backing group) of the Relay Chain's validator set. However, state transitions on the Relay Chain need to be executed by all validators. If any of those state transitions can occur on parachains, then the resources of the complement of a single backing group could be used to offer more cores. As in, they could be offering more coretime (a.k.a. blockspace) to the network. By minimising state transition logic on the Relay Chain by migrating it into \"system chains\" -- a set of parachains that, with the Relay Chain, make up the Polkadot protocol -- the Polkadot Ubiquitous Computer can maximise its primary offering: secure blockspace.","breadcrumbs":"RFC-0032: Minimal Relay » Motivation","id":"305","title":"Motivation"},"306":{"body":"Parachains that interact with affected logic on the Relay Chain; Core protocol and XCM format developers; Tooling, block explorer, and UI developers.","breadcrumbs":"RFC-0032: Minimal Relay » Stakeholders","id":"306","title":"Stakeholders"},"307":{"body":"The following pallets and subsystems are good candidates to migrate from the Relay Chain: Identity Balances Staking Staking Election Provider Bags List NIS Nomination Pools Fast Unstake Governance Treasury and Bounties Conviction Voting Referenda Note: The Auctions and Crowdloan pallets will be replaced by Coretime, its system chain and interface described in RFC-1 and RFC-5, respectively.","breadcrumbs":"RFC-0032: Minimal Relay » Explanation","id":"307","title":"Explanation"},"308":{"body":"Some subsystems are simpler to move than others. For example, migrating Identity can be done by simply preventing state changes in the Relay Chain, using the Identity-related state as the genesis for a new chain, and launching that new chain with the genesis and logic (pallet) needed. Other subsystems cannot experience any downtime like this because they are essential to the network's functioning, like Staking and Governance. However, these can likely coexist with a similarly-permissioned system chain for some time, much like how \"Gov1\" and \"OpenGov\" coexisted at the latter's introduction. Specific migration plans will be included in release notes of runtimes from the Polkadot Fellowship when beginning the work of migrating a particular subsystem.","breadcrumbs":"RFC-0032: Minimal Relay » Migrations","id":"308","title":"Migrations"},"309":{"body":"The Relay Chain, in many cases, will still need to interact with these subsystems, especially Staking and Governance. These subsystems will require making some APIs available either via dispatchable calls accessible to XCM Transact or possibly XCM Instructions in future versions. For example, Staking provides a pallet-API to register points (e.g. for block production) and offences (e.g. equivocation). With Staking in a system chain, that chain would need to allow the Relay Chain to update validator points periodically so that it can correctly calculate rewards. A pub-sub protocol may also lend itself to these types of interactions.","breadcrumbs":"RFC-0032: Minimal Relay » Interfaces","id":"309","title":"Interfaces"},"31":{"body":"This section outlines the notation and conventions adopted throughout this document to ensure clarity and consistency.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3. Notation and Convention","id":"31","title":"3. Notation and Convention"},"310":{"body":"This RFC proposes that system chains form individual components within the system's architecture and that these components are chosen as functional groups. This approach allows synchronous composibility where it is most valuable, but isolates logic in such a way that provides flexibility for optimal resource allocation (see Resource Allocation ). For the subsystems discussed in this RFC, namely Identity, Governance, and Staking, this would mean: People Chain, for identity and personhood logic, providing functionality related to the attributes of single actors; Governance Chain, for governance and system collectives, providing functionality for pluralities to express their voices within the system; Staking Chain, for Polkadot's staking system, including elections, nominations, reward distribution, slashing, and non-interactive staking; and Asset Hub, for fungible and non-fungible assets, including DOT. The Collectives chain and Asset Hub already exist, so implementation of this RFC would mean two new chains (People and Staking), with Governance moving to the currently-known-as Collectives chain and Asset Hub being increasingly used for DOT over the Relay Chain. Note that one functional group will likely include many pallets, as we do not know how pallet configurations and interfaces will evolve over time.","breadcrumbs":"RFC-0032: Minimal Relay » Functional Architecture","id":"310","title":"Functional Architecture"},"311":{"body":"The system should minimise wasted blockspace. These three (and other) subsystems may not each consistently require a dedicated core. However, core scheduling is far more agile than functional grouping. While migrating functionality from one chain to another can be a multi-month endeavour, cores can be rescheduled almost on-the-fly. Migrations are also breaking changes to some use cases, for example other parachains that need to route XCM programs to particular chains. It is thus preferable to do them a single time in migrating off the Relay Chain, reducing the risk of needing parachain splits in the future. Therefore, chain boundaries should be based on functional grouping where synchronous composibility is most valuable; and efficient resource allocation should be managed by the core scheduling protocol. Many of these system chains (including Asset Hub) could often share a single core in a semi-round robin fashion (the coretime may not be uniform). When needed, for example during NPoS elections or slashing events, the scheduler could allocate a dedicated core to the chain in need of more throughput.","breadcrumbs":"RFC-0032: Minimal Relay » Resource Allocation","id":"311","title":"Resource Allocation"},"312":{"body":"Actual migrations should happen based on some prioritization. This RFC proposes to migrate Identity, Staking, and Governance as the systems to work on first. A brief discussion on the factors involved in each one: Identity Identity will be one of the simpler pallets to migrate into a system chain, as its logic is largely self-contained and it does not \"share\" balances with other subsystems. As in, any DOT is held in reserve as a storage deposit and cannot be simultaneously used the way locked DOT can be locked for multiple purposes. Therefore, migration can take place as follows: The pallet can be put in a locked state, blocking most calls to the pallet and preventing updates to identity info. The frozen state will form the genesis of a new system parachain. Functions will be added to the pallet that allow migrating the deposit to the parachain. The parachain deposit is on the order of 1/100th of the Relay Chain's. Therefore, this will result in freeing up Relay State as well as most of each user's reserved balance. The pallet and any leftover state can be removed from the Relay Chain. User interfaces that render Identity information will need to source their data from the new system parachain. Note: In the future, it may make sense to decommission Kusama's Identity chain and do all account identities via Polkadot's. However, the Kusama chain will serve as a dress rehearsal for Polkadot. Staking Migrating the staking subsystem will likely be the most complex technical undertaking, as the Staking system cannot stop (the system MUST always have a validator set) nor run in parallel (the system MUST have only one validator set) and the subsystem itself is made up of subsystems in the runtime and the node. For example, if offences are reported to the Staking parachain, validator nodes will need to submit their reports there. Handling balances also introduces complications. The same balance can be used for staking and governance. Ideally, all balances stay on Asset Hub, and only report \"credits\" to system chains like Staking and Governance. However, staking mutates balances by issuing new DOT on era changes and for rewards. Allowing DOT directly on the Staking parachain would simplify staking changes. Given the complexity, it would be pragmatic to include the Balances pallet in the Staking parachain in its first version. Any other systems that use overlapping locks, most notably governance, will need to recognise DOT held on both Asset Hub and the Staking parachain. There is more discussion about staking in a parachain in Moving Staking off the Relay Chain . Governance Migrating governance into a parachain will be less complicated than staking. Most of the primitives needed for the migration already exist. The Treasury supports spending assets on remote chains and collectives like the Polkadot Technical Fellowship already function in a parachain. That is, XCM already provides the ability to express system origins across chains. Therefore, actually moving the governance logic into a parachain will be simple. It can run in parallel with the Relay Chain's governance, which can be removed when the parachain has demonstrated sufficient functionality. It's possible that the Relay Chain maintain a Root-level emergency track for situations like parachains halting . The only complication arises from the fact that both Asset Hub and the Staking parachain will have DOT balances; therefore, the Governance chain will need to be able to credit users' voting power based on balances from both locations. This is not expected to be difficult to handle.","breadcrumbs":"RFC-0032: Minimal Relay » Deployment","id":"312","title":"Deployment"},"313":{"body":"Although Polkadot and Kusama both have system chains running, they have to date only been used for introducing new features or bodies, for example fungible assets or the Technical Fellowship. There has not yet been a migration of logic/state from the Relay Chain into a parachain. Given its more realistic network conditions than testnets, Kusama is the best stage for rehearsal. In the case of identity, Polkadot's system may be sufficient for the ecosystem. Therefore, Kusama should be used to test the migration of logic and state from Relay Chain to parachain, but these features may be (at the will of Kusama's governance) dropped from Kusama entirely after a successful migration on Polkadot. For Governance, Polkadot already has the Collectives parachain, which would become the Governance parachain. The entire group of DOT holders is itself a collective (the legislative body), and governance provides the means to express voice. Launching a Kusama Governance chain would be sensible to rehearse a migration. The Staking subsystem is perhaps where Kusama would provide the most value in its canary capacity. Staking is the subsystem most constrained by PoV limits. Ensuring that elections, payouts, session changes, offences/slashes, etc. work in a parachain on Kusama -- with its larger validator set -- will give confidence to the chain's robustness on Polkadot.","breadcrumbs":"RFC-0032: Minimal Relay » Kusama","id":"313","title":"Kusama"},"314":{"body":"These subsystems will have reduced resources in cores than on the Relay Chain. Staking in particular may require some optimizations to deal with constraints.","breadcrumbs":"RFC-0032: Minimal Relay » Drawbacks","id":"314","title":"Drawbacks"},"315":{"body":"Standard audit/review requirements apply. More powerful multi-chain integration test tools would be useful in developement.","breadcrumbs":"RFC-0032: Minimal Relay » Testing, Security, and Privacy","id":"315","title":"Testing, Security, and Privacy"},"316":{"body":"Describe the impact of the proposal on the exposed functionality of Polkadot.","breadcrumbs":"RFC-0032: Minimal Relay » Performance, Ergonomics, and Compatibility","id":"316","title":"Performance, Ergonomics, and Compatibility"},"317":{"body":"This is an optimization. The removal of public/user transactions on the Relay Chain ensures that its primary resources are allocated to system performance.","breadcrumbs":"RFC-0032: Minimal Relay » Performance","id":"317","title":"Performance"},"318":{"body":"This proposal alters very little for coretime users (e.g. parachain developers). Application developers will need to interact with multiple chains, making ergonomic light client tools particularly important for application development. For existing parachains that interact with these subsystems, they will need to configure their runtimes to recognize the new locations in the network.","breadcrumbs":"RFC-0032: Minimal Relay » Ergonomics","id":"318","title":"Ergonomics"},"319":{"body":"Implementing this proposal will require some changes to pallet APIs and/or a pub-sub protocol. Application developers will need to interact with multiple chains in the network.","breadcrumbs":"RFC-0032: Minimal Relay » Compatibility","id":"319","title":"Compatibility"},"32":{"body":"Data structures are primarily defined using standard ASN.1 , syntax with few exceptions: Fixed width integer types are not explicitly defined by ASN.1 standard. Within this document, U denotes a n-bit unsigned integer. Unless explicitly noted, all types must be serialized using SCALE codec. To ensure interoperability of serialized structures, the order of the fields must match the structures definitions found within this document.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3.1. Data Structures Definitions and Encoding","id":"32","title":"3.1. Data Structures Definitions and Encoding"},"320":{"body":"Transactionless Relay-chain Moving Staking off the Relay Chain","breadcrumbs":"RFC-0032: Minimal Relay » Prior Art and References","id":"320","title":"Prior Art and References"},"321":{"body":"There remain some implementation questions, like how to use balances for both Staking and Governance. See, for example, Moving Staking off the Relay Chain .","breadcrumbs":"RFC-0032: Minimal Relay » Unresolved Questions","id":"321","title":"Unresolved Questions"},"322":{"body":"Ideally the Relay Chain becomes transactionless, such that not even balances are represented there. With Staking and Governance off the Relay Chain, this is not an unreasonable next step. With Identity on Polkadot, Kusama may opt to drop its People Chain.","breadcrumbs":"RFC-0032: Minimal Relay » Future Directions and Related Material","id":"322","title":"Future Directions and Related Material"},"323":{"body":"(source) Table of Contents RFC-0050: Fellowship Salaries Summary Motivation Stakeholders Explanation Salary Asset Projections Updates Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Start Date 15 November 2023 Description Proposal to set rank-based Fellowship salary levels. Authors Joe Petrowski, Gavin Wood","breadcrumbs":"RFC-0050: Fellowship Salaries » RFC-0050: Fellowship Salaries","id":"323","title":"RFC-0050: Fellowship Salaries"},"324":{"body":"The Fellowship Manifesto states that members should receive a monthly allowance on par with gross income in OECD countries. This RFC proposes concrete amounts.","breadcrumbs":"RFC-0050: Fellowship Salaries » Summary","id":"324","title":"Summary"},"325":{"body":"One motivation for the Technical Fellowship is to provide an incentive mechanism that can induct and retain technical talent for the continued progress of the network. In order for members to uphold their commitment to the network, they should receive support to ensure that their needs are met such that they have the time to dedicate to their work on Polkadot. Given the high expectations of Fellows, it is reasonable to consider contributions and requirements on par with a full-time job. Providing a livable wage to those making such contributions makes it pragmatic to work full-time on Polkadot. Note: Goals of the Fellowship, expectations for each Dan, and conditions for promotion and demotion are all explained in the Manifesto. This RFC is only to propose concrete values for allowances.","breadcrumbs":"RFC-0050: Fellowship Salaries » Motivation","id":"325","title":"Motivation"},"326":{"body":"Fellowship members Polkadot Treasury","breadcrumbs":"RFC-0050: Fellowship Salaries » Stakeholders","id":"326","title":"Stakeholders"},"327":{"body":"This RFC proposes agreeing on salaries relative to a single level, the III Dan. As such, changes to the amount or asset used would only be on a single value, and all others would adjust relatively. A III Dan is someone whose contributions match the expectations of a full-time individual contributor. The salary at this level should be reasonably close to averages in OECD countries. Dan Factor I 0.125 II 0.25 III 1 IV 1.5 V 2.0 VI 2.5 VII 2.5 VIII 2.5 IX 2.5 Note that there is a sizable increase between II Dan (Proficient) and III Dan (Fellow). By the third Dan, it is generally expected that one is working on Polkadot as their primary focus in a full-time capacity.","breadcrumbs":"RFC-0050: Fellowship Salaries » Explanation","id":"327","title":"Explanation"},"328":{"body":"Although the Manifesto (Section 8) specifies a monthly allowance in DOT, this RFC proposes the use of USDT instead. The allowance is meant to provide members stability in meeting their day-to-day needs and recognize contributions. Using USDT provides more stability and less speculation. This RFC proposes that a III Dan earn 80,000 USDT per year. The salary at this level is commensurate with average salaries in OECD countries (note: 77,000 USD in the U.S., with an average engineer at 100,000 USD). The other ranks would thus earn: Dan Annual Salary I 10,000 II 20,000 III 80,000 IV 120,000 V 160,000 VI 200,000 VII 200,000 VIII 200,000 IX 200,000 The salary levels for Architects (IV, V, and VI Dan) are typical of senior engineers. Allowances will be managed by the Salary pallet.","breadcrumbs":"RFC-0050: Fellowship Salaries » Salary Asset","id":"328","title":"Salary Asset"},"329":{"body":"Based on the current membership, the maximum yearly and monthly costs are shown below: Dan Salary Members Yearly Monthly I 10,000 27 270,000 22,500 II 20,000 11 220,000 18,333 III 80,000 8 640,000 53,333 IV 120,000 3 360,000 30,000 V 160,000 5 800,000 66,667 VI 200,000 3 600,000 50,000 > VI 200,000 0 0 0 Total 2,890,000 240,833 Note that these are the maximum amounts; members may choose to take a passive (lower) level. On the other hand, more people will likely join the Fellowship in the coming years.","breadcrumbs":"RFC-0050: Fellowship Salaries » Projections","id":"329","title":"Projections"},"33":{"body":"It is advantageous to make use of code snippets as part of the protocol description. As a convention, the code is formatted in a style similar to Rust , and can make use of the following set of predefined functions: BYTES(x: T): returns an OCTET_STRING that represents the raw byte array of the object x with type T. If T is a VisibleString (ASCII string), it returns the sequence of octets of its ASCII representation. If T is U, it returns the little-endian encoding of the integer U as n/8 octets. U(x: OCTET_STRING): returns a U interpreting x as the little-endian encoding of a n bits unsigned integer. SCALE(x: T): returns an OCTET_STRING representing the SCALE encoding of x with type T. BLAKE2(n: U32, x: OCTET_STRING): returns the standard Blake2b n bytes hash of x as an OCTET_STRING (note this is not equivalent to the truncation of the full 64 bytes Blake2b hash). CONCAT(x₀: OCTET_STRING, ..., xₖ: OCTET_STRING): returns the concatenation of the inputs as an OCTET_STRING. LENGTH(x: OCTET_STRING): returns the number of octets in x as an U32.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3.2. Pseudo-Code","id":"33","title":"3.2. Pseudo-Code"},"330":{"body":"Updates to these levels, whether relative ratios, the asset used, or the amount, shall be done via RFC.","breadcrumbs":"RFC-0050: Fellowship Salaries » Updates","id":"330","title":"Updates"},"331":{"body":"By not using DOT for payment, the protocol relies on the stability of other assets and the ability to acquire them. However, the asset of choice can be changed in the future.","breadcrumbs":"RFC-0050: Fellowship Salaries » Drawbacks","id":"331","title":"Drawbacks"},"332":{"body":"N/A.","breadcrumbs":"RFC-0050: Fellowship Salaries » Testing, Security, and Privacy","id":"332","title":"Testing, Security, and Privacy"},"333":{"body":"","breadcrumbs":"RFC-0050: Fellowship Salaries » Performance, Ergonomics, and Compatibility","id":"333","title":"Performance, Ergonomics, and Compatibility"},"334":{"body":"N/A","breadcrumbs":"RFC-0050: Fellowship Salaries » Performance","id":"334","title":"Performance"},"335":{"body":"N/A","breadcrumbs":"RFC-0050: Fellowship Salaries » Ergonomics","id":"335","title":"Ergonomics"},"336":{"body":"N/A","breadcrumbs":"RFC-0050: Fellowship Salaries » Compatibility","id":"336","title":"Compatibility"},"337":{"body":"The Polkadot Fellowship Manifesto OECD Average Wages Indeed: Average Salary for Engineers, United States","breadcrumbs":"RFC-0050: Fellowship Salaries » Prior Art and References","id":"337","title":"Prior Art and References"},"338":{"body":"None at present.","breadcrumbs":"RFC-0050: Fellowship Salaries » Unresolved Questions","id":"338","title":"Unresolved Questions"},"339":{"body":"(source) Table of Contents RFC-0056: Enforce only one transaction per notification Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-11-30 Description Modify the transactions notifications protocol to always send only one transaction at a time Authors Pierre Krieger","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » RFC-0056: Enforce only one transaction per notification","id":"339","title":"RFC-0056: Enforce only one transaction per notification"},"34":{"body":"More types and helper functions are introduced incrementally as they become relevant within the document's context. We find this approach more agile, especially given that the set of types used is not overly complex.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3.3. Incremental Introduction of Types and Functions","id":"34","title":"3.3. Incremental Introduction of Types and Functions"},"340":{"body":"When two peers connect to each other, they open (amongst other things) a so-called \"notifications protocol\" substream dedicated to gossiping transactions to each other. Each notification on this substream currently consists in a SCALE-encoded Vec where Transaction is defined in the runtime. This RFC proposes to modify the format of the notification to become (Compact(1), Transaction). This maintains backwards compatibility, as this new format decodes as a Vec of length equal to 1.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Summary","id":"340","title":"Summary"},"341":{"body":"There exists three motivations behind this change: It is technically impossible to decode a SCALE-encoded Vec into a list of SCALE-encoded transactions without knowing how to decode a Transaction. That's because a Vec consists in several Transactions one after the other in memory, without any delimiter that indicates the end of a transaction and the start of the next. Unfortunately, the format of a Transaction is runtime-specific. This means that the code that receives notifications is necessarily tied to a specific runtime, and it is not possible to write runtime-agnostic code. Notifications protocols are already designed to be optimized to send many items. Currently, when it comes to transactions, each item is a Vec that consists in multiple sub-items of type Transaction. This two-steps hierarchy is completely unnecessary, and was originally written at a time when the networking protocol of Substrate didn't have proper multiplexing. It makes the implementation way more straight-forward by not having to repeat code related to back-pressure. See explanations below.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Motivation","id":"341","title":"Motivation"},"342":{"body":"Low-level developers.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Stakeholders","id":"342","title":"Stakeholders"},"343":{"body":"To give an example, if you send one notification with three transactions, the bytes that are sent on the wire are: concat( leb128(total-size-in-bytes-of-the-rest), scale(compact(3)), scale(transaction1), scale(transaction2), scale(transaction3)\n) But you can also send three notifications of one transaction each, in which case it is: concat( leb128(size(scale(transaction1)) + 1), scale(compact(1)), scale(transaction1), leb128(size(scale(transaction2)) + 1), scale(compact(1)), scale(transaction2), leb128(size(scale(transaction3)) + 1), scale(compact(1)), scale(transaction3)\n) Right now the sender can choose which of the two encoding to use. This RFC proposes to make the second encoding mandatory. The format of the notification would become a SCALE-encoded (Compact(1), Transaction). A SCALE-compact encoded 1 is one byte of value 4. In other words, the format of the notification would become concat(&[4], scale_encoded_transaction). This is equivalent to forcing the Vec to always have a length of 1, and I expect the Substrate implementation to simply modify the sending side to add a for loop that sends one notification per item in the Vec. As explained in the motivation section, this allows extracting scale(transaction) items without having to know how to decode them. By \"flattening\" the two-steps hierarchy, an implementation only needs to back-pressure individual notifications rather than back-pressure notifications and transactions within notifications.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Explanation","id":"343","title":"Explanation"},"344":{"body":"This RFC chooses to maintain backwards compatibility at the cost of introducing a very small wart (the Compact(1)). An alternative could be to introduce a new version of the transactions notifications protocol that sends one Transaction per notification, but this is significantly more complicated to implement and can always be done later in case the Compact(1) is bothersome.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Drawbacks","id":"344","title":"Drawbacks"},"345":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Testing, Security, and Privacy","id":"345","title":"Testing, Security, and Privacy"},"346":{"body":"","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Performance, Ergonomics, and Compatibility","id":"346","title":"Performance, Ergonomics, and Compatibility"},"347":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Performance","id":"347","title":"Performance"},"348":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Ergonomics","id":"348","title":"Ergonomics"},"349":{"body":"The change is backwards compatible if done in two steps: modify the sender to always send one transaction per notification, then, after a while, modify the receiver to enforce the new format.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Compatibility","id":"349","title":"Compatibility"},"35":{"body":"The timeline is segmented into a sequentially ordered sequence of slots . This entire sequence of slots is then further partitioned into distinct segments known as epochs . The Sassafras protocol aims to map each slot within an epoch to the designated validators for that epoch, utilizing a ticketing system. The protocol operation can be roughly divided into five phases:","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4. Protocol Introduction","id":"35","title":"4. Protocol Introduction"},"350":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Prior Art and References","id":"350","title":"Prior Art and References"},"351":{"body":"None.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Unresolved Questions","id":"351","title":"Unresolved Questions"},"352":{"body":"None. This is a simple isolated change.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Future Directions and Related Material","id":"352","title":"Future Directions and Related Material"},"353":{"body":"(source) Table of Contents RFC-0004: Remove the host-side runtime memory allocator Summary Motivation Stakeholders Explanation New host functions Other changes Drawbacks Prior Art Unresolved Questions Future Possibilities Start Date 2023-07-04 Description Update the runtime-host interface to no longer make use of a host-side allocator Authors Pierre Krieger","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » RFC-0004: Remove the host-side runtime memory allocator","id":"353","title":"RFC-0004: Remove the host-side runtime memory allocator"},"354":{"body":"Update the runtime-host interface to no longer make use of a host-side allocator.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Summary","id":"354","title":"Summary"},"355":{"body":"The heap allocation of the runtime is currently controlled by the host using a memory allocator on the host side. The API of many host functions consists in allocating a buffer. For example, when calling ext_hashing_twox_256_version_1, the host allocates a 32 bytes buffer using the host allocator, and returns a pointer to this buffer to the runtime. The runtime later has to call ext_allocator_free_version_1 on this pointer in order to free the buffer. Even though no benchmark has been done, it is pretty obvious that this design is very inefficient. To continue with the example of ext_hashing_twox_256_version_1, it would be more efficient to instead write the output hash to a buffer that was allocated by the runtime on its stack and passed by pointer to the function. Allocating a buffer on the stack in the worst case scenario simply consists in decreasing a number, and in the best case scenario is free. Doing so would save many Wasm memory reads and writes by the allocator, and would save a function call to ext_allocator_free_version_1. Furthermore, the existence of the host-side allocator has become questionable over time. It is implemented in a very naive way, and for determinism and backwards compatibility reasons it needs to be implemented exactly identically in every client implementation. Runtimes make substantial use of heap memory allocations, and each allocation needs to go twice through the runtime <-> host boundary (once for allocating and once for freeing). Moving the allocator to the runtime side, while it would increase the size of the runtime, would be a good idea. But before the host-side allocator can be deprecated, all the host functions that make use of it need to be updated to not use it.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Motivation","id":"355","title":"Motivation"},"356":{"body":"No attempt was made at convincing stakeholders.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Stakeholders","id":"356","title":"Stakeholders"},"357":{"body":"","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Explanation","id":"357","title":"Explanation"},"358":{"body":"This section contains a list of new host functions to introduce. (func $ext_storage_read_version_2 (param $key i64) (param $value_out i64) (param $offset i32) (result i64))\n(func $ext_default_child_storage_read_version_2 (param $child_storage_key i64) (param $key i64) (param $value_out i64) (param $offset i32) (result i64)) The signature and behaviour of ext_storage_read_version_2 and ext_default_child_storage_read_version_2 is identical to their version 1 counterparts, but the return value has a different meaning. The new functions directly return the number of bytes that were written in the value_out buffer. If the entry doesn't exist, a value of -1 is returned. Given that the host must never write more bytes than the size of the buffer in value_out, and that the size of this buffer is expressed as a 32 bits number, a 64bits value of -1 is not ambiguous. The runtime execution stops with an error if value_out is outside of the range of the memory of the virtual machine, even if the size of the buffer is 0 or if the amount of data to write would be 0 bytes. (func $ext_storage_next_key_version_2 (param $key i64) (param $out i64) (return i32))\n(func $ext_default_child_storage_next_key_version_2 (param $child_storage_key i64) (param $key i64) (param $out i64) (return i32)) The behaviour of these functions is identical to their version 1 counterparts. Instead of allocating a buffer, writing the next key to it, and returning a pointer to it, the new version of these functions accepts an out parameter containing a pointer-size to the memory location where the host writes the output. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. These functions return the size, in bytes, of the next key, or 0 if there is no next key. If the size of the next key is larger than the buffer in out, the bytes of the key that fit the buffer are written to out and any extra byte that doesn't fit is discarded. Some notes: It is never possible for the next key to be an empty buffer, because an empty key has no preceding key. For this reason, a return value of 0 can unambiguously be used to indicate the lack of next key. The ext_storage_next_key_version_2 and ext_default_child_storage_next_key_version_2 are typically used in order to enumerate keys that starts with a certain prefix. Given that storage keys are constructed by concatenating hashes, the runtime is expected to know the size of the next key and can allocate a buffer that can fit said key. When the next key doesn't belong to the desired prefix, it might not fit the buffer, but given that the start of the key is written to the buffer anyway this can be detected in order to avoid calling the function a second time with a larger buffer. (func $ext_hashing_keccak_256_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_keccak_512_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_sha2_256_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_blake2_128_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_blake2_256_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_twox_64_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_twox_128_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_twox_256_version_2 (param $data i64) (param $out i32))\n(func $ext_trie_blake2_256_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_trie_blake2_256_ordered_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_trie_keccak_256_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_trie_keccak_256_ordered_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_default_child_storage_root_version_3 (param $child_storage_key i64) (param $out i32))\n(func $ext_crypto_ed25519_generate_version_2 (param $key_type_id i32) (param $seed i64) (param $out i32))\n(func $ext_crypto_sr25519_generate_version_2 (param $key_type_id i32) (param $seed i64) (param $out i32) (return i32))\n(func $ext_crypto_ecdsa_generate_version_2 (param $key_type_id i32) (param $seed i64) (param $out i32) (return i32)) The behaviour of these functions is identical to their version 1 or version 2 counterparts. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the new version of these functions accepts an out parameter containing the memory location where the host writes the output. The output is always of a size known at compilation time. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. (func $ext_default_child_storage_root_version_3 (param $child_storage_key i64) (param $out i32))\n(func $ext_storage_root_version_3 (param $out i32)) The behaviour of these functions is identical to their version 1 and version 2 counterparts. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the new versions of these functions accepts an out parameter containing the memory location where the host writes the output. The output is always of a size known at compilation time. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. I have taken the liberty to take the version 1 of these functions as a base rather than the version 2, as a PPP deprecating the version 2 of these functions has previously been accepted: https://github.com/w3f/PPPs/pull/6 . (func $ext_storage_clear_prefix_version_3 (param $prefix i64) (param $limit i64) (param $removed_count_out i32) (return i32))\n(func $ext_default_child_storage_clear_prefix_version_3 (param $child_storage_key i64) (param $prefix i64) (param $limit i64) (param $removed_count_out i32) (return i32))\n(func $ext_default_child_storage_kill_version_4 (param $child_storage_key i64) (param $limit i64) (param $removed_count_out i32) (return i32)) The behaviour of these functions is identical to their version 2 and 3 counterparts. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the version 3 and 4 of these functions accepts a removed_count_out parameter containing the memory location to a 8 bytes buffer where the host writes the number of keys that were removed in little endian. The runtime execution stops with an error if removed_count_out is outside of the range of the memory of the virtual machine. The functions return 1 to indicate that there are keys remaining, and 0 to indicate that all keys have been removed. Note that there is an alternative proposal to add new host functions with the same names: https://github.com/w3f/PPPs/pull/7 . This alternative doesn't conflict with this one except for the version number. One proposal or the other will have to use versions 4 and 5 rather than 3 and 4. (func $ext_crypto_ed25519_sign_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i32))\n(func $ext_crypto_sr25519_sign_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i32))\nfunc $ext_crypto_ecdsa_sign_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i32))\n(func $ext_crypto_ecdsa_sign_prehashed_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i64)) The behaviour of these functions is identical to their version 1 counterparts. The new versions of these functions accept an out parameter containing the memory location where the host writes the signature. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. The signatures are always of a size known at compilation time. On success, these functions return 0. If the public key can't be found in the keystore, these functions return 1 and do not write anything to out. Note that the return value is 0 on success and 1 on failure, while the previous version of these functions write 1 on success (as it represents a SCALE-encoded Some) and 0 on failure (as it represents a SCALE-encoded None). Returning 0 on success and non-zero on failure is consistent with common practices in the C programming language and is less surprising than the opposite. (func $ext_crypto_secp256k1_ecdsa_recover_version_3 (param $sig i32) (param $msg i32) (param $out i32) (return i64))\n(func $ext_crypto_secp256k1_ecdsa_recover_compressed_version_3 (param $sig i32) (param $msg i32) (param $out i32) (return i64)) The behaviour of these functions is identical to their version 2 counterparts. The new versions of these functions accept an out parameter containing the memory location where the host writes the signature. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. The signatures are always of a size known at compilation time. On success, these functions return 0. On failure, these functions return a non-zero value and do not write anything to out. The non-zero value written on failure is: 1: incorrect value of R or S 2: incorrect value of V 3: invalid signature These values are equal to the values returned on error by the version 2 (see https://spec.polkadot.network/chap-host-api#defn-ecdsa-verify-error ), but incremented by 1 in order to reserve 0 for success. (func $ext_crypto_ed25519_num_public_keys_version_1 (param $key_type_id i32) (return i32))\n(func $ext_crypto_ed25519_public_key_version_2 (param $key_type_id i32) (param $key_index i32) (param $out i32))\n(func $ext_crypto_sr25519_num_public_keys_version_1 (param $key_type_id i32) (return i32))\n(func $ext_crypto_sr25519_public_key_version_2 (param $key_type_id i32) (param $key_index i32) (param $out i32))\n(func $ext_crypto_ecdsa_num_public_keys_version_1 (param $key_type_id i32) (return i32))\n(func $ext_crypto_ecdsa_public_key_version_2 (param $key_type_id i32) (param $key_index i32) (param $out i32)) The functions superceded the ext_crypto_ed25519_public_key_version_1, ext_crypto_sr25519_public_key_version_1, and ext_crypto_ecdsa_public_key_version_1 host functions. Instead of calling ext_crypto_ed25519_public_key_version_1 in order to obtain the list of all keys at once, the runtime should instead call ext_crypto_ed25519_num_public_keys_version_1 in order to obtain the number of public keys available, then ext_crypto_ed25519_public_key_version_2 repeatedly. The ext_crypto_ed25519_public_key_version_2 function writes the public key of the given key_index to the memory location designated by out. The key_index must be between 0 (included) and n (excluded), where n is the value returned by ext_crypto_ed25519_num_public_keys_version_1. Execution must trap if n is out of range. The same explanations apply for ext_crypto_sr25519_public_key_version_1 and ext_crypto_ecdsa_public_key_version_1. Host implementers should be aware that the list of public keys (including their ordering) must not change while the runtime is running. This is most likely done by copying the list of all available keys either at the start of the execution or the first time the list is accessed. (func $ext_offchain_http_request_start_version_2 (param $method i64) (param $uri i64) (param $meta i64) (result i32)) The behaviour of this function is identical to its version 1 counterpart. Instead of allocating a buffer, writing the request identifier in it, and returning a pointer to it, the version 2 of this function simply returns the newly-assigned identifier to the HTTP request. On failure, this function returns -1. An identifier of -1 is invalid and is reserved to indicate failure. (func $ext_offchain_http_request_write_body_version_2 (param $method i64) (param $uri i64) (param $meta i64) (result i32))\n(func $ext_offchain_http_response_read_body_version_2 (param $request_id i32) (param $buffer i64) (param $deadline i64) (result i64)) The behaviour of these functions is identical to their version 1 counterpart. Instead of allocating a buffer, writing two bytes in it, and returning a pointer to it, the new version of these functions simply indicates what happened: For ext_offchain_http_request_write_body_version_2, 0 on success. For ext_offchain_http_response_read_body_version_2, 0 or a non-zero number of bytes on success. -1 if the deadline was reached. -2 if there was an I/O error while processing the request. -3 if the identifier of the request is invalid. These values are equal to the values returned on error by the version 1 (see https://spec.polkadot.network/chap-host-api#defn-http-error ), but tweaked in order to reserve positive numbers for success. When it comes to ext_offchain_http_response_read_body_version_2, the host implementers must not read too much data at once in order to not create ambiguity in the returned value. Given that the size of the buffer is always inferior or equal to 4 GiB, this is not a problem. (func $ext_offchain_http_response_wait_version_2 (param $ids i64) (param $deadline i64) (param $out i32)) The behaviour of this function is identical to its version 1 counterpart. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the new version of this function accepts an out parameter containing the memory location where the host writes the output. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. The encoding of the response code is also modified compared to its version 1 counterpart and each response code now encodes to 4 little endian bytes as described below: 100-999: the request has finished with the given HTTP status code. -1 if the deadline was reached. -2 if there was an I/O error while processing the request. -3 if the identifier of the request is invalid. The buffer passed to out must always have a size of 4 * n where n is the number of elements in the ids. (func $ext_offchain_http_response_header_name_version_1 (param $request_id i32) (param $header_index i32) (param $out i64) (result i64))\n(func $ext_offchain_http_response_header_value_version_1 (param $request_id i32) (param $header_index i32) (param $out i64) (result i64)) These functions supercede the ext_offchain_http_response_headers_version_1 host function. Contrary to ext_offchain_http_response_headers_version_1, only one header indicated by header_index can be read at a time. Instead of calling ext_offchain_http_response_headers_version_1 once, the runtime should call ext_offchain_http_response_header_name_version_1 and ext_offchain_http_response_header_value_version_1 multiple times with an increasing header_index, until a value of -1 is returned. These functions accept an out parameter containing a pointer-size to the memory location where the header name or value should be written. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. These functions return the size, in bytes, of the header name or header value. If request doesn't exist or is in an invalid state (as documented for ext_offchain_http_response_headers_version_1) or the header_index is out of range, a value of -1 is returned. Given that the host must never write more bytes than the size of the buffer in out, and that the size of this buffer is expressed as a 32 bits number, a 64bits value of -1 is not ambiguous. If the buffer in out is too small to fit the entire header name of value, only the bytes that fit are written and the rest are discarded. (func $ext_offchain_submit_transaction_version_2 (param $data i64) (return i32))\n(func $ext_offchain_http_request_add_header_version_2 (param $request_id i32) (param $name i64) (param $value i64) (result i32)) Instead of allocating a buffer, writing 1 or 0 in it, and returning a pointer to it, the version 2 of these functions return 0 or 1, where 0 indicates success and 1 indicates failure. The runtime must interpret any non-0 value as failure, but the client must always return 1 in case of failure. (func $ext_offchain_local_storage_read_version_1 (param $kind i32) (param $key i64) (param $value_out i64) (param $offset i32) (result i64)) This function supercedes the ext_offchain_local_storage_get_version_1 host function, and uses an API and logic similar to ext_storage_read_version_2. It reads the offchain local storage key indicated by kind and key starting at the byte indicated by offset, and writes the value to the pointer-size indicated by value_out. The function returns the number of bytes that were written in the value_out buffer. If the entry doesn't exist, a value of -1 is returned. Given that the host must never write more bytes than the size of the buffer in value_out, and that the size of this buffer is expressed as a 32 bits number, a 64bits value of -1 is not ambiguous. The runtime execution stops with an error if value_out is outside of the range of the memory of the virtual machine, even if the size of the buffer is 0 or if the amount of data to write would be 0 bytes. (func $ext_offchain_network_peer_id_version_1 (param $out i64)) This function writes the PeerId of the local node to the memory location indicated by out. A PeerId is always 38 bytes long. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. (func $ext_input_size_version_1 (return i64))\n(func $ext_input_read_version_1 (param $offset i64) (param $out i64)) When a runtime function is called, the host uses the allocator to allocate memory within the runtime where to write some input data. These two new host functions provide an alternative way to access the input that doesn't make use of the allocator. The ext_input_size_version_1 host function returns the size in bytes of the input data. The ext_input_read_version_1 host function copies some data from the input data to the memory of the runtime. The offset parameter indicates the offset within the input data where to start copying, and must be inferior or equal to the value returned by ext_input_size_version_1. The out parameter is a pointer-size containing the buffer where to write to. The runtime execution stops with an error if offset is strictly superior to the size of the input data, or if out is outside of the range of the memory of the virtual machine, even if the amount of data to copy would be 0 bytes.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » New host functions","id":"358","title":"New host functions"},"359":{"body":"In addition to the new host functions, this RFC proposes two changes to the runtime-host interface: The following function signature is now also accepted for runtime entry points: (func (result i64)). Runtimes no longer need to expose a constant named __heap_base. All the host functions that are being superceded by new host functions are now considered deprecated and should no longer be used. The following other host functions are similarly also considered deprecated: ext_storage_get_version_1 ext_default_child_storage_get_version_1 ext_allocator_malloc_version_1 ext_allocator_free_version_1 ext_offchain_network_state_version_1","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Other changes","id":"359","title":"Other changes"},"36":{"body":"Each of the validators associated to the target epoch generates and submits a set of candidate tickets to the blockchain. Every ticket is bundled with an anonymous proof of validity.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.1. Submission of Candidate Tickets","id":"36","title":"4.1. Submission of Candidate Tickets"},"360":{"body":"This RFC might be difficult to implement in Substrate due to the internal code design. It is not clear to the author of this RFC how difficult it would be.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Drawbacks","id":"360","title":"Drawbacks"},"361":{"body":"The API of these new functions was heavily inspired by API used by the C programming language.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Prior Art","id":"361","title":"Prior Art"},"362":{"body":"The changes in this RFC would need to be benchmarked. This involves implementing the RFC and measuring the speed difference. It is expected that most host functions are faster or equal speed to their deprecated counterparts, with the following exceptions: ext_input_size_version_1/ext_input_read_version_1 is inherently slower than obtaining a buffer with the entire data due to the two extra function calls and the extra copying. However, given that this only happens once per runtime call, the cost is expected to be negligible. The ext_crypto_*_public_keys, ext_offchain_network_state, and ext_offchain_http_* host functions are likely slightly slower than their deprecated counterparts, but given that they are used only in offchain workers this is acceptable. It is unclear how replacing ext_storage_get with ext_storage_read and ext_default_child_storage_get with ext_default_child_storage_read will impact performances. It is unclear how the changes to ext_storage_next_key and ext_default_child_storage_next_key will impact performances.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Unresolved Questions","id":"362","title":"Unresolved Questions"},"363":{"body":"After this RFC, we can remove from the source code of the host the allocator altogether in a future version, by removing support for all the deprecated host functions. This would remove the possibility to synchronize older blocks, which is probably controversial and requires a some preparations that are out of scope of this RFC.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Future Possibilities","id":"363","title":"Future Possibilities"},"364":{"body":"(source) Table of Contents RFC-0006: Dynamic Pricing for Bulk Coretime Sales Summary Motivation Requirements Stakeholders Explanation Overview Parameters Function Pseudo-code Properties of the Curve Example Configurations Drawbacks Prior Art and References Future Possibilities References Start Date July 09, 2023 Description A dynamic pricing model to adapt the regular price for bulk coretime sales Authors Tommi Enenkel (Alice und Bob) License MIT","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » RFC-0006: Dynamic Pricing for Bulk Coretime Sales","id":"364","title":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales"},"365":{"body":"This RFC proposes a dynamic pricing model for the sale of Bulk Coretime on the Polkadot UC. The proposed model updates the regular price of cores for each sale period, by taking into account the number of cores sold in the previous sale, as well as a limit of cores and a target number of cores sold. It ensures a minimum price and limits price growth to a maximum price increase factor, while also giving govenance control over the steepness of the price change curve. It allows governance to address challenges arising from changing market conditions and should offer predictable and controlled price adjustments. Accompanying visualizations are provided at [1].","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Summary","id":"365","title":"Summary"},"366":{"body":"RFC-1 proposes periodic Bulk Coretime Sales as a mechanism to sell continouos regions of blockspace (suggested to be 4 weeks in length). A number of Blockspace Regions (compare RFC-1 & RFC-3) are provided for sale to the Broker-Chain each period and shall be sold in a way that provides value-capture for the Polkadot network. The exact pricing mechanism is out of scope for RFC-1 and shall be provided by this RFC. A dynamic pricing model is needed. A limited number of Regions are offered for sale each period. The model needs to find the price for a period based on supply and demand of the previous period. The model shall give Coretime consumers predictability about upcoming price developments and confidence that Polkadot governance can adapt the pricing model to changing market conditions.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Motivation","id":"366","title":"Motivation"},"367":{"body":"The solution SHOULD provide a dynamic pricing model that increases price with growing demand and reduces price with shrinking demand. The solution SHOULD have a slow rate of change for price if the number of Regions sold is close to a given sales target and increase the rate of change as the number of sales deviates from the target. The solution SHOULD provide the possibility to always have a minimum price per Region. The solution SHOULD provide a maximum factor of price increase should the limit of Regions sold per period be reached. The solution should allow governance to control the steepness of the price function","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Requirements","id":"367","title":"Requirements"},"368":{"body":"The primary stakeholders of this RFC are: Protocol researchers and evelopers Polkadot DOT token holders Polkadot parachains teams Brokers involved in the trade of Bulk Coretime","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Stakeholders","id":"368","title":"Stakeholders"},"369":{"body":"","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Explanation","id":"369","title":"Explanation"},"37":{"body":"Each candidate ticket undergoes a validation process for the associated validity proof and compliance with other protocol-specific constraints.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.2. Validation of Candidate Tickets","id":"37","title":"4.2. Validation of Candidate Tickets"},"370":{"body":"The dynamic pricing model sets the new price based on supply and demand in the previous period. The model is a function of the number of Regions sold, piecewise-defined by two power functions. The left side ranges from 0 to the target. It represents situations where demand was lower than the target. The right side ranges from the target to limit. It represents situations where demand was higher than the target. The curve of the function forms a plateau around the target and then falls off to the left and rises up to the right. The shape of the plateau can be controlled via a scale factor for the left side and right side of the function respectively.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Overview","id":"370","title":"Overview"},"371":{"body":"From here on, we will also refer to Regions sold as 'cores' to stay congruent with RFC-1. Name Suggested Value Description Constraints BULK_LIMIT 45 The maximum number of cores being sold 0 < BULK_LIMIT BULK_TARGET 30 The target number of cores being sold 0 < BULK_TARGET <= BULK_LIMIT MIN_PRICE 1 The minimum price a core will always cost. 0 < MIN_PRICE MAX_PRICE_INCREASE_FACTOR 2 The maximum factor by which the price can change. 1 < MAX_PRICE_INCREASE_FACTOR SCALE_DOWN 2 The steepness of the left side of the function. 0 < SCALE_DOWN SCALE_UP 2 The steepness of the right side of the function. 0 < SCALE_UP","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Parameters","id":"371","title":"Parameters"},"372":{"body":"P(n) = \\begin{cases} (P_{\\text{old}} - P_{\\text{min}}) \\left(1 - \\left(\\frac{T - n}{T}\\right)^d\\right) + P_{\\text{min}} & \\text{if } n \\leq T \\\\ ((F - 1) \\cdot P_{\\text{old}} \\cdot \\left(\\frac{n - T}{L - T}\\right)^u) + P_{\\text{old}} & \\text{if } n > T \\end{cases} $P_{\\text{old}}$ is the old_price, the price of a core in the previous period. $P_{\\text{min}}$ is the MIN_PRICE, the minimum price a core will always cost. $F$ is the MAX_PRICE_INCREASE_FACTOR, the factor by which the price maximally can change from one period to another. $d$ is the SCALE_DOWN, the steepness of the left side of the function. $u$ is the SCALE_UP, the steepness of the right side of the function. $T$ is the BULK_TARGET, the target number of cores being sold. $L$ is the BULK_LIMIT, the maximum number of cores being sold. $n$ is cores_sold, the number of cores being sold. Left side The left side is a power function that describes an increasing concave downward curvature that approaches old_price. We realize this by using the form $y = a(1 - x^d)$, usually used as a downward sloping curve, but in our case flipped horizontally by letting the argument $x = \\frac{T-n}{T}$ decrease with $n$, doubly inversing the curve. This approach is chosen over a decaying exponential because it let's us a better control the shape of the plateau, especially allowing us to get a straight line by setting SCALE_DOWN to $1$. Ride side The right side is a power function of the form $y = a(x^u)$.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Function","id":"372","title":"Function"},"373":{"body":"NEW_PRICE := IF CORES_SOLD <= BULK_TARGET THEN (OLD_PRICE - MIN_PRICE) * (1 - ((BULK_TARGET - CORES_SOLD)^SCALE_DOWN / BULK_TARGET^SCALE_DOWN)) + MIN_PRICE\nELSE ((MAX_PRICE_INCREASE_FACTOR - 1) * OLD_PRICE * ((CORES_SOLD - BULK_TARGET)^SCALE_UP / (BULK_LIMIT - BULK_TARGET)^SCALE_UP)) + OLD_PRICE\nEND IF","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Pseudo-code","id":"373","title":"Pseudo-code"},"374":{"body":"Minimum Price We introduce MIN_PRICE to control the minimum price. The left side of the function shall be allowed to come close to 0 if cores sold approaches 0. The rationale is that if there are actually 0 cores sold, the previous sale price was too high and the price needs to adapt quickly. Price forms a plateau around the target If the number of cores is close to BULK_TARGET, less extreme price changes might be sensible. This ensures that a drop in sold cores or an increase doesn’t lead to immediate price changes, but rather slowly adapts. Only if more extreme changes in the number of sold cores occur, does the price slope increase. We introduce SCALE_DOWN and SCALE_UP to control for the steepness of the left and the right side of the function respectively. Max price increase factor We introduce MAX_PRICE_INCREASE_FACTOR as the factor that controls how much the price may increase from one period to another. Introducing this variable gives governance an additional control lever and avoids the necessity for a future runtime upgrade.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Properties of the Curve","id":"374","title":"Properties of the Curve"},"375":{"body":"Baseline This example proposes the baseline parameters. If not mentioned otherwise, other examples use these values. The minimum price of a core is 1 DOT, the price can double every 4 weeks. Price change around BULK_TARGET is dampened slightly. BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 2\nSCALE_DOWN = 2\nSCALE_UP = 2\nOLD_PRICE = 1000 More aggressive pricing We might want to have a more aggressive price growth, allowing the price to triple every 4 weeks and have a linear increase in price on the right side. BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 3\nSCALE_DOWN = 2\nSCALE_UP = 1\nOLD_PRICE = 1000 Conservative pricing to ensure quick corrections in an affluent market If governance considers the risk that a sudden surge in DOT price might price chains out from bulk coretime markets, it can ensure the model quickly reacts to a quick drop in demand, by setting 0 < SCALE_DOWN < 1 and setting the max price increase factor more conservatively. BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 1.5\nSCALE_DOWN = 0.5\nSCALE_UP = 2\nOLD_PRICE = 1000 Linear pricing By setting the scaling factors to 1 and potentially adapting the max price increase, we can achieve a linear function BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 1.5\nSCALE_DOWN = 1\nSCALE_UP = 1\nOLD_PRICE = 1000","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Example Configurations","id":"375","title":"Example Configurations"},"376":{"body":"None at present.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Drawbacks","id":"376","title":"Drawbacks"},"377":{"body":"This pricing model is based on the requirements from the basic linear solution proposed in RFC-1, which is a simple dynamic pricing model and only used as proof. The present model adds additional considerations to make the model more adaptable under real conditions.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Prior Art and References","id":"377","title":"Prior Art and References"},"378":{"body":"This RFC, if accepted, shall be implemented in conjunction with RFC-1.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Future Possibilities","id":"378","title":"Future Possibilities"},"379":{"body":"[1] Polkadot forum post with visualizations: Dynamic Pricing for Bulk Coretime Sales","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » References","id":"379","title":"References"},"38":{"body":"After collecting all valid candidate tickets, a deterministic method is used to uniquely associate a subset of these tickets with the slots of the target epoch.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.3. Tickets and Slots Binding","id":"38","title":"4.3. Tickets and Slots Binding"},"380":{"body":"(source) Table of Contents RFC-0009: Improved light client requests networking protocol Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-07-19 Description Modify the networking storage read requests to solve some problems with the existing one Authors Pierre Krieger","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » RFC-0009: Improved light client requests networking protocol","id":"380","title":"RFC-0009: Improved light client requests networking protocol"},"381":{"body":"Improve the networking messages that query storage items from the remote, in order to reduce the bandwidth usage and number of round trips of light clients.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Summary","id":"381","title":"Summary"},"382":{"body":"Clients on the Polkadot peer-to-peer network can be divided into two categories: full nodes and light clients. So-called full nodes are nodes that store the content of the chain locally on their disk, while light clients are nodes that don't. In order to access for example the balance of an account, a full node can do a disk read, while a light client needs to send a network message to a full node and wait for the full node to reply with the desired value. This reply is in the form of a Merkle proof, which makes it possible for the light client to verify the exactness of the value. Unfortunately, this network protocol is suffering from some issues: It is not possible for the querier to check whether a key exists in the storage of the chain except by querying the value of that key. The reply will thus include the value of the key, only for that value to be discarded by the querier that isn't interested by it. This is a waste of bandwidth. It is not possible for the querier to know whether a value in the storage of the chain has been modified between two blocks except by querying this value for both blocks and comparing them. Only a few storage values get modified in a block, and thus most of the time the comparison will be equal. This leads to a waste of bandwidth as the values have to be transferred. While it is possible to ask for multiple specific storage keys at the same time, it is not possible to ask for a list of keys that start with a certain prefix. Due to the way FRAME works, storage keys are grouped by \"prefix\", for example all account balances start with the same prefix. It is thus a common necessity for a light client to obtain the list of all keys (and possibly their values) that start with a specific prefix. This is currently not possible except by performing multiple queries serially that \"walk down\" the trie. Once Polkadot and Kusama will have transitioned to state_version = 1, which modifies the format of the trie entries, it will be possible to generate Merkle proofs that contain only the hashes of values in the storage. Thanks to this, it is already possible to prove the existence of a key without sending its entire value (only its hash), or to prove that a value has changed or not between two blocks (by sending just their hashes). Thus, the only reason why aforementioned issues exist is because the existing networking messages don't give the possibility for the querier to query this. This is what this proposal aims at fixing.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Motivation","id":"382","title":"Motivation"},"383":{"body":"This is the continuation of https://github.com/w3f/PPPs/pull/10, which itself is the continuation of https://github.com/w3f/PPPs/pull/5.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Stakeholders","id":"383","title":"Stakeholders"},"384":{"body":"The protobuf schema of the networking protocol can be found here: https://github.com/paritytech/substrate/blob/5b6519a7ff4a2d3cc424d78bc4830688f3b184c0/client/network/light/src/schema/light.v1.proto The proposal is to modify this protocol in this way: @@ -11,6 +11,7 @@ message Request { RemoteReadRequest remote_read_request = 2; RemoteReadChildRequest remote_read_child_request = 4; // Note: ids 3 and 5 were used in the past. It would be preferable to not re-use them.\n+ RemoteReadRequestV2 remote_read_request_v2 = 6; } } @@ -48,6 +49,21 @@ message RemoteReadRequest { repeated bytes keys = 3; } +message RemoteReadRequestV2 {\n+ required bytes block = 1;\n+ optional ChildTrieInfo child_trie_info = 2; // Read from the main trie if missing.\n+ repeated Key keys = 3;\n+ optional bytes onlyKeysAfter = 4;\n+ optional bool onlyKeysAfterIgnoreLastNibble = 5;\n+}\n+\n+message ChildTrieInfo {\n+ enum ChildTrieNamespace {\n+ DEFAULT = 1;\n+ }\n+\n+ required bytes hash = 1;\n+ required ChildTrieNamespace namespace = 2;\n+}\n+ // Remote read response. message RemoteReadResponse { // Read proof. If missing, indicates that the remote couldn't answer, for example because\n@@ -65,3 +81,8 @@ message RemoteReadChildRequest { // Storage keys. repeated bytes keys = 6; }\n+\n+message Key {\n+ required bytes key = 1;\n+ optional bool skipValue = 2; // Defaults to `false` if missing\n+ optional bool includeDescendants = 3; // Defaults to `false` if missing\n+} Note that the field names aren't very important as they are not sent over the wire. They can be changed at any time without any consequence. I would invite people to not discuss these field names as they are implementation details. This diff adds a new type of request (RemoteReadRequestV2). The new child_trie_info field in the request makes it possible to specify which trie is concerned by the request. The current networking protocol uses two different structs (RemoteReadRequest and RemoteReadChildRequest) for main trie and child trie queries, while this new request would make it possible to query either. This change doesn't fix any of the issues mentioned in the previous section, but is a side change that has been done for simplicity. An alternative could have been to specify the child_trie_info for each individual Key. However this would make it necessary to send the child trie hash many times over the network, which leads to a waste of bandwidth, and in my opinion makes things more complicated for no actual gain. If a querier would like to access more than one trie at the same time, it is always possible to send one query per trie. If skipValue is true for a Key, then the value associated with this key isn't important to the querier, and the replier is encouraged to replace the value with its hash provided that the storage item has a state_version equal to 1. If the storage value has a state_version equal to 0, then the optimization isn't possible and the replier should behave as if skipValue was false. If includeDescendants is true for a Key, then the replier must also include in the proof all keys that are descendant of the given key (in other words, its children, children of children, children of children of children, etc.). It must do so even if key itself doesn't have any storage value associated to it. The values of all of these descendants are replaced with their hashes if skipValue is true, similarly to key itself. The optional onlyKeysAfter and onlyKeysAfterIgnoreLastNibble fields can provide a lower bound for the keys contained in the proof. The responder must not include in its proof any node whose key is strictly inferior to the value in onlyKeysAfter. If onlyKeysAfterIgnoreLastNibble is provided, then the last 4 bits for onlyKeysAfter must be ignored. This makes it possible to represent a trie branch node that doesn't have an even number of nibbles. If no onlyKeysAfter is provided, it is equivalent to being empty, meaning that the response must start with the root node of the trie. If onlyKeysAfterIgnoreLastNibble is missing, it is equivalent to false. If onlyKeysAfterIgnoreLastNibble is true and onlyKeysAfter is missing or empty, then the request is invalid. For the purpose of this networking protocol, it should be considered as if the main trie contained an entry for each default child trie whose key is concat(\":child_storage:default:\", child_trie_hash) and whose value is equal to the trie root hash of that default child trie. This behavior is consistent with what the host functions observe when querying the storage. This behavior is present in the existing networking protocol, in other words this proposal doesn't change anything to the situation, but it is worth mentioning. Also note that child tries aren't considered as descendants of the main trie when it comes to the includeDescendants flag. In other words, if the request concerns the main trie, no content coming from child tries is ever sent back. This protocol keeps the same maximum response size limit as currently exists (16 MiB). It is not possible for the querier to know in advance whether its query will lead to a reply that exceeds the maximum size. If the reply is too large, the replier should send back only a limited number (but at least one) of requested items in the proof. The querier should then send additional requests for the rest of the items. A response containing none of the requested items is invalid. The server is allowed to silently discard some keys of the request if it judges that the number of requested keys is too high. This is in line with the fact that the server might truncate the response.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Explanation","id":"384","title":"Explanation"},"385":{"body":"This proposal doesn't handle one specific situation: what if a proof containing a single specific item would exceed the response size limit? For example, if the response size limit was 1 MiB, querying the runtime code (which is typically 1.0 to 1.5 MiB) would be impossible as it's impossible to generate a proof less than 1 MiB. The response size limit is currently 16 MiB, meaning that no single storage item must exceed 16 MiB. Unfortunately, because it's impossible to verify a Merkle proof before having received it entirely, parsing the proof in a streaming way is also not possible. A way to solve this issue would be to Merkle-ize large storage items, so that a proof could include only a portion of a large storage item. Since this would require a change to the trie format, it is not realistically feasible in a short time frame.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Drawbacks","id":"385","title":"Drawbacks"},"386":{"body":"The main security consideration concerns the size of replies and the resources necessary to generate them. It is for example easily possible to ask for all keys and values of the chain, which would take a very long time to generate. Since responses to this networking protocol have a maximum size, the replier should truncate proofs that would lead to the response being too large. Note that it is already possible to send a query that would lead to a very large reply with the existing network protocol. The only thing that this proposal changes is that it would make it less complicated to perform such an attack. Implementers of the replier side should be careful to detect early on when a reply would exceed the maximum reply size, rather than inconditionally generate a reply, as this could take a very large amount of CPU, disk I/O, and memory. Existing implementations might currently be accidentally protected from such an attack thanks to the fact that requests have a maximum size, and thus that the list of keys in the query was bounded. After this proposal, this accidental protection would no longer exist. Malicious server nodes might truncate Merkle proofs even when they don't strictly need to, and it is not possible for the client to (easily) detect this situation. However, malicious server nodes can already do undesirable things such as throttle down their upload bandwidth or simply not respond. There is no need to handle unnecessarily truncated Merkle proofs any differently than a server simply not answering the request.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Testing, Security, and Privacy","id":"386","title":"Testing, Security, and Privacy"},"387":{"body":"","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Performance, Ergonomics, and Compatibility","id":"387","title":"Performance, Ergonomics, and Compatibility"},"388":{"body":"It is unclear to the author of the RFC what the performance implications are. Servers are supposed to have limits to the amount of resources they use to respond to requests, and as such the worst that can happen is that light client requests become a bit slower than they currently are.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Performance","id":"388","title":"Performance"},"389":{"body":"Irrelevant.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Ergonomics","id":"389","title":"Ergonomics"},"39":{"body":"During the block production phase of the target epoch, validators are required to demonstrate their ownership of tickets. This step discloses the identity of the ticket owners.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.4. Claim of Ticket Ownership","id":"39","title":"4.4. Claim of Ticket Ownership"},"390":{"body":"The prior networking protocol is maintained for now. The older version of this protocol could get removed in a long time.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Compatibility","id":"390","title":"Compatibility"},"391":{"body":"None. This RFC is a clean-up of an existing mechanism.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Prior Art and References","id":"391","title":"Prior Art and References"},"392":{"body":"None","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Unresolved Questions","id":"392","title":"Unresolved Questions"},"393":{"body":"The current networking protocol could be deprecated in a long time. Additionally, the current \"state requests\" protocol (used for warp syncing) could also be deprecated in favor of this one.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Future Directions and Related Material","id":"393","title":"Future Directions and Related Material"},"394":{"body":"(source) Table of Contents RFC-0010: Burn Coretime Revenue Summary Motivation Stakeholders Explanation Start Date 19.07.2023 Description Revenue from Coretime sales should be burned Authors Jonas Gehrlein","breadcrumbs":"RFC-0010: Burn Coretime Revenue » RFC-0010: Burn Coretime Revenue","id":"394","title":"RFC-0010: Burn Coretime Revenue"},"395":{"body":"The Polkadot UC will generate revenue from the sale of available Coretime. The question then arises: how should we handle these revenues? Broadly, there are two reasonable paths – burning the revenue and thereby removing it from total issuance or divert it to the Treasury. This Request for Comment (RFC) presents arguments favoring burning as the preferred mechanism for handling revenues from Coretime sales.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Summary","id":"395","title":"Summary"},"396":{"body":"How to handle the revenue accrued from Coretime sales is an important economic question that influences the value of DOT and should be properly discussed before deciding for either of the options. Now is the best time to start this discussion.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Motivation","id":"396","title":"Motivation"},"397":{"body":"Polkadot DOT token holders.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Stakeholders","id":"397","title":"Stakeholders"},"398":{"body":"This RFC discusses potential benefits of burning the revenue accrued from Coretime sales instead of diverting them to Treasury. Here are the following arguments for it. It's in the interest of the Polkadot community to have a consistent and predictable Treasury income, because volatility in the inflow can be damaging, especially in situations when it is insufficient. As such, this RFC operates under the presumption of a steady and sustainable Treasury income flow, which is crucial for the Polkadot community's stability. The assurance of a predictable Treasury income, as outlined in a prior discussion here , or through other equally effective measures, serves as a baseline assumption for this argument. Consequently, we need not concern ourselves with this particular issue here. This naturally begs the question - why should we introduce additional volatility to the Treasury by aligning it with the variable Coretime sales? It's worth noting that Coretime revenues often exhibit an inverse relationship with periods when Treasury spending should ideally be ramped up. During periods of low Coretime utilization (indicated by lower revenue), Treasury should spend more on projects and endeavours to increase the demand for Coretime. This pattern underscores that Coretime sales, by their very nature, are an inconsistent and unpredictable source of funding for the Treasury. Given the importance of maintaining a steady and predictable inflow, it's unnecessary to rely on another volatile mechanism. Some might argue that we could have both: a steady inflow (from inflation) and some added bonus from Coretime sales, but burning the revenue would offer further benefits as described below. Balancing Inflation: While DOT as a utility token inherently profits from a (reasonable) net inflation, it also benefits from a deflationary force that functions as a counterbalance to the overall inflation. Right now, the only mechanism on Polkadot that burns fees is the one for underutilized DOT in the Treasury. Finding other, more direct target for burns makes sense and the Coretime market is a good option. Clear incentives: By burning the revenue accrued on Coretime sales, prices paid by buyers are clearly costs. This removes distortion from the market that might arise when the paid tokens occur on some other places within the network. In that case, some actors might have secondary motives of influencing the price of Coretime sales, because they benefit down the line. For example, actors that actively participate in the Coretime sales are likely to also benefit from a higher Treasury balance, because they might frequently request funds for their projects. While those effects might appear far-fetched, they could accumulate. Burning the revenues makes sure that the prices paid are clearly costs to the actors themselves. Collective Value Accrual: Following the previous argument, burning the revenue also generates some externality, because it reduces the overall issuance of DOT and thereby increases the value of each remaining token. In contrast to the aforementioned argument, this benefits all token holders collectively and equally. Therefore, I'd consider this as the preferrable option, because burns lets all token holders participate at Polkadot's success as Coretime usage increases.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Explanation","id":"398","title":"Explanation"},"399":{"body":"(source) Table of Contents RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs Summary Motivation Stakeholders Explanation Core::initialize_block BlockBuilder::last_inherent Combined Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date July 24, 2023 Description Prepare the BlockBuilder and Core Runtime APIs for Multi-Block-Migrations. Authors Oliver Tale-Yazdi","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs","id":"399","title":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs"},"4":{"body":"Deposit SHOULD be derived from deposit function adjusted by correspoding pricing mechansim.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Requirements","id":"4","title":"Requirements"},"40":{"body":"During block verification, the claim of ticket ownership is validated.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.5. Validation of Ticket Ownership","id":"40","title":"4.5. Validation of Ticket Ownership"},"400":{"body":"Introduces breaking changes to the BlockBuilder and Core runtime APIs. A new function BlockBuilder::last_inherent is introduced and the return value of Core::initialize_block is changed to an enum. The versions of both APIs are bumped; BlockBuilder to 7 and Core to 5.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Summary","id":"400","title":"Summary"},"401":{"body":"There are three main features that motivate for this RFC: Multi-Block-Migrations: These make it possible to split a migration over multiple blocks. Pallet poll hook: Can be used to gradually replace on_initialize/on_finalize in places where the code does not need to run by a hard deadline, since it is not guaranteed to execute each block. New callback System::PostInherents: Can replace on_initialize/on_finalize where a hard deadline is required (complements poll). It is guaranteed to execute each block. These three features can be implemented when fulfilling these two requirements: The runtime can tell the block author to not include any transactions in the block. The runtime can execute logic right after all pallet-provided inherents have been applied.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Motivation","id":"401","title":"Motivation"},"402":{"body":"Substrate Maintainers: They have to implement this, including tests, audit and maintenance burden. Polkadot Runtime developers: They will have to adapt the runtime files to this breaking change. Polkadot Parachain Teams: They also have to adapt to the breaking changes but then eventually have multi-block migrations available.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Stakeholders","id":"402","title":"Stakeholders"},"403":{"body":"","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Explanation","id":"403","title":"Explanation"},"404":{"body":"This runtime API function is changed from returning () to ExtrinsicInclusionMode: enum ExtrinsicInclusionMode { /// All extrinsics are allowed in this block. AllExtrinsics, /// Only inherents are allowed in this block. OnlyInherents,\n} A block author MUST respect the ExtrinsicInclusionMode that is returned by initialize_block. The runtime MUST reject blocks that do have forbidden extrinsics in them.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Core::initialize_block","id":"404","title":"Core::initialize_block"},"405":{"body":"A block author MUST always invoke last_inherent directly after applying all runtime-provided inherents. The runtime MUST reject blocks that violate this requirement.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » BlockBuilder::last_inherent","id":"405","title":"BlockBuilder::last_inherent"},"406":{"body":"Coming back to the three main features and how they can be implemented with these runtime APIs changes: 1. Multi-Block-Migrations : The runtime is being put into lock-down mode for the duration of the migration process by returning OnlyInherents from initialize_block. This ensures that no user provided transaction can interfere with the migration process. It is absolutely necessary to ensure this, since otherwise a transaction could call into un-migrated storage and violate storage invariants. The entry-point for the MBM logic is last_inherent. This is a good spot, because any data that is touched in inherents, is not MBM-migratable anyway. It could also be done before all other inherents or at the end of the block in finalize_block, but there is no downside from doing it in last_inherent and the other two features are in favour of this. 2. poll becomes possible by using last_inherent as entry-point. It would not be possible to use a pallet inherent like System::last_inherent to achieve this for two reasons. First is that pallets do not have access to AllPalletsWithSystem that is required to invoke the poll hook on all pallets. Second is that the runtime does currently not enforce an order of inherents. 3. System::PostInherents can be done in the same manner as poll.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Combined","id":"406","title":"Combined"},"407":{"body":"As noted in the review comments: this cements some assumptions about the order of inherents into the BlockBuilder traits. It was criticized for being to rigid in its assumptions.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Drawbacks","id":"407","title":"Drawbacks"},"408":{"body":"Compliance of a block author can be tested by adding specific code to the last_inherent hook and checking that it always executes. The new logic of initialize_block can be tested by checking that the block-builder will skip transactions and optional hooks when OnlyInherents is returned. Security: n/a Privacy: n/a","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Testing, Security, and Privacy","id":"408","title":"Testing, Security, and Privacy"},"409":{"body":"","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Performance, Ergonomics, and Compatibility","id":"409","title":"Performance, Ergonomics, and Compatibility"},"41":{"body":"This chapter provides a high-level overview of the Bandersnatch VRF primitive as it relates to the Sassafras protocol. It's important to note that this section is not intended to serve as an exhaustive exploration of the mathematically intensive foundations of the cryptographic primitive. Rather, its primary aim is to offer a concise and accessible explanation of the primitive's role and usage which is relevant within the scope of this RFC. For an in-depth explanation, refer to the Ring-VRF paper authored by the Web3 foundation research team.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5. Bandersnatch VRFs Cryptographic Primitives","id":"41","title":"5. Bandersnatch VRFs Cryptographic Primitives"},"410":{"body":"The performance overhead is minimal in the sense that no clutter was added after fulfilling the requirements. A slight performance penalty is expected from invoking last_inherent once per block.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Performance","id":"410","title":"Performance"},"411":{"body":"The new interface allows for more extensible runtime logic. In the future, this will be utilized for multi-block-migrations which should be a huge ergonomic advantage for parachain developers.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Ergonomics","id":"411","title":"Ergonomics"},"412":{"body":"The advice here is OPTIONAL and outside of the RFC. To not degrade user experience, it is recommended to ensure that an updated node can still import historic blocks.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Compatibility","id":"412","title":"Compatibility"},"413":{"body":"The RFC is currently being implemented in polkadot-sdk#1781 . Related issues and merge requests: Simple multi block migrations Execute a hook after inherent but before transactions There is no module hook after inherents and before transactions","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Prior Art and References","id":"413","title":"Prior Art and References"},"414":{"body":"Please suggest a better name for BlockExecutiveMode. We already tried: RuntimeExecutiveMode, ExtrinsicInclusionMode. The names of the modes Normal and Minimal were also called AllExtrinsics and OnlyInherents, so if you have naming preferences; please post them. => renamed to ExtrinsicInclusionMode Is post_inherents more consistent instead of last_inherent? Then we should change it. => renamed to last_inherent","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Unresolved Questions","id":"414","title":"Unresolved Questions"},"415":{"body":"The long-term future here is to move the block building logic into the runtime. Currently there is a tight dance between the block author and the runtime; the author has to call into different runtime functions in quick succession and exact order. Any misstep causes the built block to be invalid. This can be unified and simplified by moving both parts of the logic into the runtime.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Future Directions and Related Material","id":"415","title":"Future Directions and Related Material"},"416":{"body":"(source) Table of Contents RFC-0015: Market Design Revisit Summary Motivation Stakeholders Explanation Bulk Markets Benefits of this system Further Discussion Points Drawbacks Prior Art and References Unresolved Questions Start Date 05.08.2023 Description This RFC refines the previously proposed mechanisms involving the various Coretime markets and presents an integrated framework for harmonious interaction between all markets. Authors Jonas Gehrlein","breadcrumbs":"RFC-0015: Market Design Revisit » RFC-0015: Market Design Revisit","id":"416","title":"RFC-0015: Market Design Revisit"},"417":{"body":"This document is a proposal for restructuring the bulk markets in the Polkadot UC's coretime allocation system to improve efficiency and fairness. The proposal suggests separating the BULK_PERIOD into MARKET_PERIOD and RENEWAL_PERIOD, allowing for a market-driven price discovery through a clearing price Dutch auction during the MARKET_PERIOD followed by renewal offers at the MARKET_PRICE during the RENEWAL_PERIOD. The new system ensures synchronicity between renewal and market prices, fairness among all current tenants, and efficient price discovery, while preserving price caps to provide security for current tenants. It seeks to start a discussion about the possibility of long-term leases.","breadcrumbs":"RFC-0015: Market Design Revisit » Summary","id":"417","title":"Summary"},"418":{"body":"While the initial RFC-1 has provided a robust framework for Coretime allocation within the Polkadot UC, this proposal builds upon its strengths and uses many provided building blocks to address some areas that could be further improved. In particular, this proposal introduces the following changes: It introduces a RESERVE_PRICE that anchors all markets, promoting price synchronicity within the Bulk markets (flexible + renewals). This reduces complexity. This makes sure all consumers pay a closely correlated price for coretime within a BULK_PERIOD. It reverses the order of the market and renewal phase. This allows to fine-tune the price through market forces. It exposes the renewal prices, while still being beneficial for longterm tenants, more to market forces. It removes the LeadIn period and introduces a (from the perspective of the coretime systemchain) passive Settlement Phase, that allows the secondary market to exert it's force. The premise of this proposal is to reduce complexity by introducing a common price (that develops releative to capacity consumption of Polkadot UC), while still allowing for market forces to add efficiency. Longterm lease owners still receive priority IF they can pay (close to) the market price. This prevents a situation where the renewal price significantly diverges from renewal prices which allows for core captures. While maximum price increase certainty might seem contradictory to efficient price discovery, the proposed model aims to balance these elements, utilizing market forces to determine the price and allocate cores effectively within certain bounds. It must be stated, that potential price increases remain predictable (in the worst-case) but could be higher than in the originally proposed design. The argument remains, however, that we need to allow market forces to affect all prices for an efficient Coretime pricing and allocation. Ultimately, this the framework proposed here adheres to all requirements stated in RFC-1.","breadcrumbs":"RFC-0015: Market Design Revisit » Motivation","id":"418","title":"Motivation"},"419":{"body":"Primary stakeholder sets are: Protocol researchers and developers, largely represented by the Polkadot Fellowship and Parity Technologies' Engineering division. Polkadot Parachain teams both present and future, and their users. Polkadot DOT token holders.","breadcrumbs":"RFC-0015: Market Design Revisit » Stakeholders","id":"419","title":"Stakeholders"},"42":{"body":"The VRF Input, denoted as VrfInput, is constructed by combining a domain identifier with arbitrary data through the vrf_input function: fn vrf_input(domain: OCTET_STRING, data: OCTET_STRING) -> VrfInput; The specific implementation details of this function are intentionally omitted. A reference implementation is provided by the bandersnatch_vrfs project. The above link points to some temporary code (Transcript label set to \"TemporaryDoNotDeploy\").\nAlso replace with docs.rs link once published to crates.io. Helper function to construct a VrfInput from a sequence of data items: fn vrf_input_from_items(domain: OCTET_STRING, items: SEQUENCE_OF OCTET_STRING) -> VrfInput { let data = OCTET_STRING(SIZE = 0); // empty octet string for item in items { data.append(item); data.append(LENGTH(item) as U8); } return vrf_input(domain, data); } Note that each item length is safely casted to an U8 as: In the context of this protocol all items lengths are less than 256. The function is internal and not designed for generic use.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.1. VRF Input","id":"42","title":"5.1. VRF Input"},"420":{"body":"","breadcrumbs":"RFC-0015: Market Design Revisit » Explanation","id":"420","title":"Explanation"},"421":{"body":"The BULK_PERIOD has been restructured into two primary segments: the MARKET_PERIOD and RENEWAL_PERIOD, along with an auxiliary SETTLEMENT_PERIOD. This latter period doesn't necessitate any actions from the coretime system chain, but it facilitates a more efficient allocation of coretime in secondary markets. A significant departure from the original proposal lies in the timing of renewals, which now occur post-market phase. This adjustment aims to harmonize renewal prices with their market counterparts, ensuring a more consistent and equitable pricing model. Market Period (14 days) During the market period, core sales are conducted through a well-established clearing price Dutch auction that features a RESERVE_PRICE. The price initiates at a premium, designated as PRICE_PREMIUM (for instance, 30%) and descends linearly to the RESERVE_PRICE throughout the duration of the MARKET_PERIOD. Each bidder is expected to submit both their desired price and the quantity (that is, the amount of Coretime) they wish to purchase. To secure these acquisitions, bidders must make a deposit equivalent to their bid multiplied by the chosen quantity, in DOT. The market achieves resolution once all quantities have been sold, or the RESERVE_PRICE has been reached. This situation leads to determining the MARKET_PRICE either by the lowest bid that was successful in clearing the entire market or by the RESERVE_PRICE. This mechanism yields a uniform price, shaped by market forces (refer to the following discussion for an explanation of its benefits). In other words, all buyers pay the same price (per unit of Coretime). Further down the benefits of this variant of a Dutch auction is discussed. Note: In cases where some cores remain unsold in the market, all buyers are obligated to pay the RESERVE_PRICE. Renewal Period (7 days) As the RENEWAL_PERIOD commences, all current tenants are granted the opportunity to renew their cores at a slight discount of MARKET_PRICE * RENEWAL_DISCOUNT (for instance, 10%). This provision affords marginal benefits to existing tenants, balancing out the non-transferability aspect of renewals. At the end of the period, all available cores are allocated to the current tenants who have opted for renewal and the participants who placed bids during the market period. If the demand for cores exceeds supply, the cores left unclaimed from renewals may be awarded to bidders who placed their bids early in the auction, thereby subtly incentivizing early participation. If the supply exceeds the demand, all unsold cores are transferred to the Instantanous Market. Reserve Price Adjustment After all cores are allocated, the RESERVE_PRICE is adjusted following the process described in RFC-1 and serves as baseline price in the next BULK_PERIOD. Note: The particular price curve is outside the scope of the proposal. The MARKET_PRICE (as a function of RESERVE_PRICE), however, is able to capture higher demand very well while being capped downwards. That means, the curve that adjusts the RESERVE_PRICE should be more sensitive to undercapacity. Price Predictability Tasks that are in the \"renewal-pipeline\" can determine the upper bound for the price they will pay in any future period. The main driver of any price increase over time is the adjustment of the RESERVE_PRICE, that occurs at the end of each BULK_PERIOD after determining the capacity fillment of Polkadot UC. To calculate the maximum price in some future period, a task could assume maximum capacity in all upcoming periods and track the resulting price increase of RESERVE_PRICE. In the final period, that price can get a maximum premium of PRICE_PREMIUM and after deducting a potential RENEWAL_DISCOUNT, the maximum price can be determined. Settlement Period (7 days) During the settlement period, participants have ample time to trade Coretime on secondary markets before the onset of the next BULK_PERIOD. This allows for trading with full Coretime availability. Trading transferrable Coretime naturally continues during each BULK_PERIOD, albeit with cores already in use.","breadcrumbs":"RFC-0015: Market Design Revisit » Bulk Markets","id":"421","title":"Bulk Markets"},"422":{"body":"The introduction of a single price, the RESERVE_PRICE, provides an anchor for all Coretime markets. This is a preventative measure against the possible divergence and mismatch of prices, which could inadvertently lead to a situation where existing tenants secure cores at significantly below-market rates. With a more market-responsive pricing system, we can achieve a more efficient price discovery process. Any price increases will be less arbitrary and more dynamic. The ideal strategy for existing tenants is to maintain passivity, i.e., refrain from active market participation and simply accept the offer presented to them during the renewal phase. This approach lessens the organizational overhead for long-term projects. In the two-week market phase, the maximum price increase is known well in advance, providing ample time for tenants to secure necessary funds to meet the potential price escalation. All existing tenants pay an equal amount for Coretime, reflecting our intent to price the Coretime itself and not the relative timing of individual projects. Discussion: Clearing Price Dutch Auctions Having all bidders pay the market clearing price offers some benefits and disadvantages. Advantages: Fairness : All bidders pay the same price. Active participation : Because bidders are protected from overbidding (winner's curse), they are more likely to engage and reveal their true valuations. Simplicity : A single price is easier to work with for pricing renewals later. Truthfulness : There is no need to try to game the market by waiting with bidding. Bidders can just bid their valuations. Disadvantages: (Potentially) Lower Revenue : While the theory predicts revenue-equivalence between a uniform price and pay-as-bid type of auction, slightly lower revenue for the former type is observed empirically. Arguably, revenue maximization (i.e., squeezing out the maximum willingness to pay from bidders) is not the priority for Polkadot UC. Instead, it is interested in efficient allocation and the other benefits illustrated above. (Technical) Complexity : Instead of making a final purchase within the auction, the bid is only a deposit. Some refunds might happen after the auction is finished. This might pose additional challenges from the technical side (e.g., storage requirements).","breadcrumbs":"RFC-0015: Market Design Revisit » Benefits of this system","id":"422","title":"Benefits of this system"},"423":{"body":"Long-term Coretime : The Polkadot UC is undergoing a transition from two-year leases without an instantaneous market to a model encompassing instantaneous and one-month leases. This shift seems to pivot from one extreme to another. While the introduction of short-term leases, both instantaneous and for one month, is a constructive move to lower barriers to entry and promote experimentation, it seems to be the case that established projects might benefit from more extended lease options. We could consider offering another product, such as a six-month Coretime lease, using the same mechanism described herein. Although the majority of leases would still be sold on a one-month basis, the addition of this option would enhance market efficiency as it would strengthen the impact of a secondary market .","breadcrumbs":"RFC-0015: Market Design Revisit » Further Discussion Points","id":"423","title":"Further Discussion Points"},"424":{"body":"There are trade-offs that arise from this proposal, compared to the initial model. The most notable one is that here, I prioritize requirement 6 over requirement 2. The price, in the very \"worst-case\" (meaning a huge explosion in demand for coretime) could lead to a much larger increase of prices in Coretime. From an economic perspective, this (rare edgecase) would also mean that we'd vastly underprice Coretime in the original model, leading to highly inefficient allocations.","breadcrumbs":"RFC-0015: Market Design Revisit » Drawbacks","id":"424","title":"Drawbacks"},"425":{"body":"This RFC builds extensively on the available ideas put forward in RFC-1 . Additionally, I want to express a special thanks to Samuel Haefner and Shahar Dobzinski for fruitful discussions and helping me structure my thoughts.","breadcrumbs":"RFC-0015: Market Design Revisit » Prior Art and References","id":"425","title":"Prior Art and References"},"426":{"body":"The technical feasability needs to be assessed.","breadcrumbs":"RFC-0015: Market Design Revisit » Unresolved Questions","id":"426","title":"Unresolved Questions"},"427":{"body":"(source) Table of Contents RFC-0020: Treasurer Track Confirmation Period Duration Modification Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics & Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date August 10, 2023 Description Treasurer Track Confirmation Period Duration Modification Authors ChaosDAO","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » RFC-0020: Treasurer Track Confirmation Period Duration Modification","id":"427","title":"RFC-0020: Treasurer Track Confirmation Period Duration Modification"},"428":{"body":"This RFC proposes a change to the duration of the confirmation period for the treasurer track from 3 hours to at least 48 hours.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Summary","id":"428","title":"Summary"},"429":{"body":"Track parameters for Polkadot OpenGov should be configured in a way that their \"difficulty\" increases relative to the power associated with their respective origin. When we look at the confirmation periods for treasury based tracks, we can see that this is clearly the case - with the one notable exception to the trend being the treasurer track: Track Description Confirmation Period Duration Small Tipper 10 Min Big Tipper 1 Hour Small Spender 12 Hours Medium Spender 24 Hours Big Spender 48 Hours Treasurer 3 Hours The confirmation period is one of the last lines of defence for the collective Polkadot stakeholders to react to a potentially bad referendum and vote NAY in order for its confirmation period to be aborted. Since the power / privilege level of the treasurer track is greater than that of the the big spender track – their confirmation period should be either equal, or the treasurer track's should be higher (note: currently the big spender track has a longer confirmation period than even the root track).","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Motivation","id":"429","title":"Motivation"},"43":{"body":"Functionally, the VrfPreOutput can be considered as a seed for a PRNG to produce an arbitrary number of output bytes. It is computed as function of a VrfInput and a BandersnatchSecretKey. Two different approaches can be used to generate it: as a standalone object or as part of a signature. While the resulting VrfPreOutput is identical in both cases, the legitimacy of the latter can be confirmed by verifying the signature using the BandersnatchPublicKey of the expected signer. When constructed as a standalone object, VrfPreOutput is primarily employed in situations where the secret key owner needs to check if the generated output bytes fulfill some context specific criteria before applying the signature. To facilitate the construction, the following helper function is provided: fn vrf_pre_output(secret: BandernatchSecretKey, input: VrfInput) -> VrfPreOutput; An additional helper function is provided for producing an arbitrary number of output bytes from VrfInput and VrfPreOutput: fn vrf_bytes(len: U32, input: VrfInput, pre_output: VrfPreOuput) -> OCTET_STRING; Similar to the vrf_input function, the details about the implementation of these functions is omitted. Reference implementations are provided by the dleq_vrfs project vrf_pre_output vrf_bytes","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.2. VRF PreOutput","id":"43","title":"5.2. VRF PreOutput"},"430":{"body":"The primary stakeholders of this RFC are: DOT token holders – as this affects the protocol's treasury Entities wishing to submit a referendum via the treasurer track - as this affects the referendum timeline Projects with governance app integrations - see Performance, Ergonomics, and Compatibility section below. lolmcshizz - expressed interest to change this parameter Leemo - expressed interest to change this parameter Paradox - expressed interest to change this parameter","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Stakeholders","id":"430","title":"Stakeholders"},"431":{"body":"This RFC proposes to change the duration of the confirmation period for the treasurer track. In order to achieve that, the confirm_period parameter for the treasurer track in runtime/polkadot/src/governance/tracks.rs must be changed. Currently it is set to confirm_period: 3 * HOURS It should be changed to confirm_period: 48 * HOURS as a minimum. It may make sense for it to be changed to a value greater than 48 hours since the treasurer track has more power than the big spender track (48 hour confirmation period); however, the root track's confirmation period is 24 hours. 48 hours may be on the upper bounds of a trade-off between security and flexibility.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Explanation","id":"431","title":"Explanation"},"432":{"body":"The drawback of changing the treasurer track's confirmation period would be that the lifecycle of a referendum submitted on the treasurer track would ultimately be longer. However, the security of the protocol and its treasury should take priority here.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Drawbacks","id":"432","title":"Drawbacks"},"433":{"body":"This change will enhance / improve the security of the protocol as it relates to its treasury. The confirmation period is one of the last lines of defence for the collective Polkadot stakeholders to react to a potentially bad referendum and vote NAY in order for its confirmation period to be aborted. It makes sense for the treasurer track's confirmation period duration to be either equal to, or higher than, the big spender track confirmation period.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Testing, Security, and Privacy","id":"433","title":"Testing, Security, and Privacy"},"434":{"body":"","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Performance, Ergonomics, and Compatibility","id":"434","title":"Performance, Ergonomics, and Compatibility"},"435":{"body":"This is a simple change (code wise) which should not affect the performance of the Polkadot protocol, outside of increasing the duration of the confirmation period on the treasurer track.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Performance","id":"435","title":"Performance"},"436":{"body":"If the proposal alters exposed interfaces to developers or end-users, which types of usage patterns have been optimized for? I have confirmed with the following projects that this is not a breaking change for their governance apps: Nova Wallet - directly uses on-chain data, and change will be automatically reflected. Polkassembly - directly uses on-chain data via rpc to fetch trackInfo so the change will be automatically reflected. SubSquare - scan script will update their app to the latest parameters and it will be automatically reflected in their app.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Ergonomics & Compatibility","id":"436","title":"Ergonomics & Compatibility"},"437":{"body":"N/A","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Prior Art and References","id":"437","title":"Prior Art and References"},"438":{"body":"The proposed change to the confirmation period duration for the treasurer track is to set it to 48 hours. This is equal to the current confirmation period for the big spender track. Typically it seems that track parameters increase in difficulty (duration, etc.) based on the power level of their associated origin. The longest confirmation period is that of the big spender, at 48 hours. There may be value in discussing whether or not the treasurer track confirmation period should be longer than 48 hours – a discussion of the trade-offs between security vs flexibility/agility. As a side note, the root track confirmation period is 24 hours.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Unresolved Questions","id":"438","title":"Unresolved Questions"},"439":{"body":"This RFC hopefully reminds the greater Polkadot community that it is possible to submit changes to the parameters of Polkadot OpenGov, and the greater protocol as a whole through the RFC process.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Future Directions and Related Material","id":"439","title":"Future Directions and Related Material"},"44":{"body":"This section outlines the data to be signed utilizing the VRF primitive: VrfSignatureData ::= SEQUENCE { transcript: Transcript, inputs: SEQUENCE_OF VrfInput } Where: transcript: a Transcript instance. In practice, this is a special hash of some protocol-specific data to sign which doesn't influence the VrfPreOutput. inputs: sequence of VrfInputs to be signed. To simplify the construction of VrfSignatureData objects, a helper function is defined: fn vrf_signature_data( transcript_label: OCTET_STRING, transcript_data: SEQUENCE_OF OCTET_STRING, inputs: SEQUENCE_OF VrfInput ) -> VrfSignatureData { let mut transcript = Transcript::new_labeled(transcript_label); for data in transcript_data { transcript.append(data); } VrfSignatureData { transcript, inputs } }","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.3. VRF Signature Data","id":"44","title":"5.3. VRF Signature Data"},"440":{"body":"(source) Table of Contents RFC-0035: Conviction Voting Delegation Modifications Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics & Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material October 10, 2023 Conviction Voting Delegation Modifications ChaosDAO","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » RFC-0035: Conviction Voting Delegation Modifications","id":"440","title":"RFC-0035: Conviction Voting Delegation Modifications"},"441":{"body":"This RFC proposes to make modifications to voting power delegations as part of the Conviction Voting pallet. The changes being proposed include: Allow a Delegator to vote independently of their Delegate if they so desire. Allow nested delegations – for example Charlie delegates to Bob who delegates to Alice – when Alice votes then both Bob and Charlie vote alongside Alice (in the current implementation Charlie will not vote when Alice votes). Make a change so that when a delegate votes abstain their delegated votes also vote abstain. Allow a Delegator to delegate/ undelegate their votes for all tracks with a single call.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Summary","id":"441","title":"Summary"},"442":{"body":"It has become clear since the launch of OpenGov that there are a few common tropes which pop up time and time again: The frequency of referenda is often too high for network participants to have sufficient time to review, comprehend, and ultimately vote on each individual referendum. This means that these network participants end up being inactive in on-chain governance. There are active network participants who are reviewing every referendum and are providing feedback in an attempt to help make the network thrive – but often time these participants do not control enough voting power to influence the network with their positive efforts. Delegating votes for all tracks currently requires long batched calls which result in high fees for the Delegator - resulting in a reluctance from many to delegate their votes. We believe (based on feedback from token holders with a larger stake in the network) that if there were some changes made to delegation mechanics, these larger stake holders would be more likely to delegate their voting power to active network participants – thus greatly increasing the support turnout.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Motivation","id":"442","title":"Motivation"},"443":{"body":"The primary stakeholders of this RFC are: The Polkadot Technical Fellowship who will have to research and implement the technical aspects of this RFC DOT token holders in general","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Stakeholders","id":"443","title":"Stakeholders"},"444":{"body":"This RFC proposes to make 4 changes to the convictionVoting pallet logic in order to improve the user experience of those delegating their voting power to another account. Allow a Delegator to vote independently of their Delegate if they so desire – this would empower network participants to more actively delegate their voting power to active voters, removing the tedious steps of having to undelegate across an entire track every time they do not agree with their delegate's voting direction for a particular referendum. Allow nested delegations – for example Charlie delegates to Bob who delegates to Alice – when Alice votes then both Bob and Charlie vote alongside Alice (in the current runtime Charlie will not vote when Alice votes) – This would allow network participants who control multiple (possibly derived) accounts to be able to delegate all of their voting power to a single account under their control, which would in turn delegate to a more active voting participant. Then if the delegator wishes to vote independently of their delegate they can control all of their voting power from a single account, which again removes the pain point of having to issue multiple undelegate extrinsics in the event that they disagree with their delegate. Have delegated votes follow their delegates abstain votes – there are times where delegates may vote abstain on a particular referendum and adding this functionality will increase the support of a particular referendum. It has a secondary benefit of meaning that Validators who are delegating their voting power do not lose points in the 1KV program in the event that their delegate votes abstain (another pain point which may be preventing those network participants from delegating). Allow a Delegator to delegate/ undelegate their votes for all tracks with a single call - in order to delegate votes across all tracks, a user must batch 15 calls - resulting in high costs for delegation. A single call for delegate_all/ undelegate_all would reduce the complexity and therefore costs of delegations considerably for prospective Delegators.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Explanation","id":"444","title":"Explanation"},"445":{"body":"We do not foresee any drawbacks by implementing these changes. If anything we believe that this should help to increase overall voter turnout (via the means of delegation) which we see as a net positive.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Drawbacks","id":"445","title":"Drawbacks"},"446":{"body":"We feel that the Polkadot Technical Fellowship would be the most competent collective to identify the testing requirements for the ideas presented in this RFC.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Testing, Security, and Privacy","id":"446","title":"Testing, Security, and Privacy"},"447":{"body":"","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Performance, Ergonomics, and Compatibility","id":"447","title":"Performance, Ergonomics, and Compatibility"},"448":{"body":"This change may add extra chain storage requirements on Polkadot, especially with respect to nested delegations.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Performance","id":"448","title":"Performance"},"449":{"body":"The change to add nested delegations may affect governance interfaces such as Nova Wallet who will have to apply changes to their indexers to support nested delegations. It may also affect the Polkadot Delegation Dashboard as well as Polkassembly & SubSquare. We want to highlight the importance for ecosystem builders to create a mechanism for indexers and wallets to be able to understand that changes have occurred such as increasing the pallet version, etc.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Ergonomics & Compatibility","id":"449","title":"Ergonomics & Compatibility"},"45":{"body":"Bandersnatch VRF offers two signature flavors: plain signature: much like a traditional Schnorr signature, ring signature: leverages a zk-SNARK to allows for anonymous signatures using a key from a predefined set of enabled keys, known as the ring. 5.4.1. Plain VRF Signature This section describes the signature process for VrfSignatureData using the plain signature flavor. PlainSignature ::= OCTET_STRING; VrfSignature ::= SEQUENCE { signature: PlainSignature, pre_outputs: SEQUENCE-OF VrfPreOutput } Where: signature: the actual plain signature. pre_outputs: sequence of VrfPreOutputs corresponding to the VrfInputs found within the VrfSignatureData. Helper function to construct VrfPlainSignature from VrfSignatureData: BandersnatchSecretKey ::= OCTET_STRING; fn vrf_sign( secret: BandernatchSecretKey, signature_data: VrfSignatureData ) -> VrfSignature Helper function for signature verification returning a BOOLEAN value indicating the validity of the signature (true on success): BandersnatchPublicKey ::= OCTET_STRING; fn vrf_verify( public: BandersnatchPublicKey, signature: VrfSignature ) -> BOOLEAN; In this document, the types BandersnatchSecretKey, BandersnatchPublicKey and PlainSignature are intentionally left undefined. Their definitions can be found in the bandersnatch_vrfs reference implementation. 5.4.2. Ring VRF Signature This section describes the signature process for VrfSignatureData using the ring signature flavor. RingSignature ::= OCTET_STRING; RingVrfSignature ::= SEQUENCE { signature: RingSignature, pre_outputs: SEQUENCE_OF VrfPreOutput } signature: the actual ring signature. pre_outputs: sequence of VrfPreOutputs corresponding to the VrfInputs found within the VrfSignatureData. Helper function to construct RingVrfSignature from VrfSignatureData: BandersnatchRingProverKey ::= OCTET_STRING; fn ring_vrf_sign( secret: BandersnatchRingProverKey, signature_data: VrfSignatureData, ) -> RingVrfSignature; Helper function for signature verification returning a BOOLEAN value indicating the validity of the signature (true on success). BandersnatchRingVerifierKey ::= OCTET_STRING; fn ring_vrf_verify( verifier: BandersnatchRingVerifierKey, signature: RingVrfSignature, ) -> BOOLEAN; Note that this function doesn't require the signer's public key. In this document, the types BandersnatchRingProverKey, BandersnatchRingVerifierKey, and RingSignature are intentionally left undefined. Their definitions can be found in the bandersnatch_vrfs reference implementation.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.4. VRF Signature","id":"45","title":"5.4. VRF Signature"},"450":{"body":"N/A","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Prior Art and References","id":"450","title":"Prior Art and References"},"451":{"body":"N/A","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Unresolved Questions","id":"451","title":"Unresolved Questions"},"452":{"body":"Additionally we would like to re-open the conversation about the potential for there to be free delegations. This was discussed by Dr Gavin Wood at Sub0 2022 and we feel like this would go a great way towards increasing the amount of network participants that are delegating: https://youtu.be/hSoSA6laK3Q?t=526 Overall, we strongly feel that delegations are a great way to increase voter turnout, and the ideas presented in this RFC would hopefully help in that aspect.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Future Directions and Related Material","id":"452","title":"Future Directions and Related Material"},"453":{"body":"(source) Table of Contents RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization Summary Motivation Stakeholders Explanation Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Start Date 30 October 2023 Description Host function to provide the storage proof size to runtimes. Authors Sebastian Kunert","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization","id":"453","title":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization"},"454":{"body":"This RFC proposes a new host function for parachains, storage_proof_size. It shall provide the size of the currently recorded storage proof to the runtime. Runtime authors can use the proof size to improve block utilization by retroactively reclaiming unused storage weight.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Summary","id":"454","title":"Summary"},"455":{"body":"The number of extrinsics that are included in a parachain block is limited by two constraints: execution time and proof size. FRAME weights cover both concepts, and block-builders use them to decide how many extrinsics to include in a block. However, these weights are calculated ahead of time by benchmarking on a machine with reference hardware. The execution-time properties of the state-trie and its storage items are unknown at benchmarking time. Therefore, we make some assumptions about the state-trie: Trie Depth: We assume a trie depth to account for intermediary nodes. Storage Item Size: We make a pessimistic assumption based on the MaxEncodedLen trait. These pessimistic assumptions lead to an overestimation of storage weight, negatively impacting block utilization on parachains. In addition, the current model does not account for multiple accesses to the same storage items. While these repetitive accesses will not increase storage-proof size, the runtime-side weight monitoring will account for them multiple times. Since the proof size is completely opaque to the runtime, we can not implement retroactive storage weight correction. A solution must provide a way for the runtime to track the exact storage-proof size consumed on a per-extrinsic basis.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Motivation","id":"455","title":"Motivation"},"456":{"body":"Parachain Teams: They MUST include this host function in their runtime and node. Light-client Implementors: They SHOULD include this host function in their runtime and node.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Stakeholders","id":"456","title":"Stakeholders"},"457":{"body":"This RFC proposes a new host function that exposes the storage-proof size to the runtime. As a result, runtimes can implement storage weight reclaiming mechanisms that improve block utilization. This RFC proposes the following host function signature: fn ext_storage_proof_size_version_1() -> u64; The host function MUST return an unsigned 64-bit integer value representing the current proof size. In block-execution and block-import contexts, this function MUST return the current size of the proof. To achieve this, parachain node implementors need to enable proof recording for block imports. In other contexts, this function MUST return 18446744073709551615 (u64::MAX), which represents disabled proof recording.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Explanation","id":"457","title":"Explanation"},"458":{"body":"","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Performance, Ergonomics, and Compatibility","id":"458","title":"Performance, Ergonomics, and Compatibility"},"459":{"body":"Parachain nodes need to enable proof recording during block import to correctly implement the proposed host function. Benchmarking conducted with balance transfers has shown a performance reduction of around 0.6% when proof recording is enabled.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Performance","id":"459","title":"Performance"},"46":{"body":"","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6. Sassafras Protocol","id":"46","title":"6. Sassafras Protocol"},"460":{"body":"The host function proposed in this RFC allows parachain runtime developers to keep track of the proof size. Typical usage patterns would be to keep track of the overall proof size or the difference between subsequent calls to the host function.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Ergonomics","id":"460","title":"Ergonomics"},"461":{"body":"Parachain teams will need to include this host function to upgrade.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Compatibility","id":"461","title":"Compatibility"},"462":{"body":"Pull Request including proposed host function: PoV Reclaim (Clawback) Node Side . Issue with discussion: [FRAME core] Clawback PoV Weights For Dispatchables","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Prior Art and References","id":"462","title":"Prior Art and References"},"463":{"body":"(source) Table of Contents RFC-0044: Rent based registration model Summary Motivation Requirements Stakeholders Explanation Registering an on-demand parachain On-demand parachain pruning Ensuring rent is paid On-demand para re-registration Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 6 November 2023 Description A new rent based parachain registration model Authors Sergej Sakac","breadcrumbs":"RFC-0044: Rent based registration model » RFC-0044: Rent based registration model","id":"463","title":"RFC-0044: Rent based registration model"},"464":{"body":"This RFC proposes a new model for a sustainable on-demand parachain registration, involving a smaller initial deposit and periodic rent payments. The new model considers that on-demand chains may be unregistered and later re-registered. The proposed solution also ensures a quick startup for on-demand chains on Polkadot in such cases.","breadcrumbs":"RFC-0044: Rent based registration model » Summary","id":"464","title":"Summary"},"465":{"body":"With the support of on-demand parachains on Polkadot, there is a need to explore a new, more cost-effective model for registering validation code. In the current model, the parachain manager is responsible for reserving a unique ParaId and covering the cost of storing the validation code of the parachain. These costs can escalate, particularly if the validation code is large. We need a better, sustainable model for registering on-demand parachains on Polkadot to help smaller teams deploy more easily. This RFC suggests a new payment model to create a more financially viable approach to on-demand parachain registration. In this model, a lower initial deposit is required, followed by recurring payments upon parachain registration. This new model will coexist with the existing one-time deposit payment model, offering teams seeking to deploy on-demand parachains on Polkadot a more cost-effective alternative.","breadcrumbs":"RFC-0044: Rent based registration model » Motivation","id":"465","title":"Motivation"},"466":{"body":"The solution SHOULD NOT affect the current model for registering validation code. The solution SHOULD offer an easily configurable way for governance to adjust the initial deposit and recurring rent cost. The solution SHOULD provide an incentive to prune validation code for which rent is not paid. The solution SHOULD allow anyone to re-register validation code under the same ParaId without the need for redundant pre-checking if it was already verified before. The solution MUST be compatible with the Agile Coretime model, as described in RFC#0001 The solution MUST allow anyone to pay the rent. The solution MUST prevent the removal of validation code if it could still be required for disputes or approval checking.","breadcrumbs":"RFC-0044: Rent based registration model » Requirements","id":"466","title":"Requirements"},"467":{"body":"Future Polkadot on-demand Parachains","breadcrumbs":"RFC-0044: Rent based registration model » Stakeholders","id":"467","title":"Stakeholders"},"468":{"body":"This RFC proposes a set of changes that will enable the new rent based approach to registering and storing validation code on-chain. The new model, compared to the current one, will require periodic rent payments. The parachain won't be pruned automatically if the rent is not paid, but by permitting anyone to prune the parachain and rewarding the caller, there will be an incentive for the removal of the validation code. On-demand parachains should still be able to utilize the current one-time payment model. However, given the size of the deposit required, it's highly likely that most on-demand parachains will opt for the new rent-based model. Importantly, this solution doesn't require any storage migrations in the current system nor does it introduce any breaking changes. The following provides a detailed description of this solution.","breadcrumbs":"RFC-0044: Rent based registration model » Explanation","id":"468","title":"Explanation"},"469":{"body":"In the current implementation of the registrar pallet, there are two constants that specify the necessary deposit for parachains to register and store their validation code: trait Config { // -- snip -- /// The deposit required for reserving a `ParaId`. #[pallet::constant] type ParaDeposit: Get>; /// The deposit to be paid per byte stored on chain. #[pallet::constant] type DataDepositPerByte: Get>;\n} This RFC proposes the addition of three new constants that will determine the payment amount and the frequency of the recurring rent payment: trait Config { // -- snip -- /// Defines how frequently the rent needs to be paid. /// /// The duration is set in sessions instead of block numbers. #[pallet::constant] type RentDuration: Get; /// The initial deposit amount for registering validation code. /// /// This is defined as a proportion of the deposit that would be required in the regular /// model. #[pallet::constant] type RentalDepositProportion: Get; /// The recurring rental cost defined as a proportion of the initial rental registration deposit. #[pallet::constant] type RentalRecurringProportion: Get;\n} Users will be able to reserve a ParaId and register their validation code for a proportion of the regular deposit required. However, they must also make additional rent payments at intervals of T::RentDuration. For registering using the new rental system we will have to make modifications to the paras-registrar pallet. We should expose two new extrinsics for this: mod pallet { // -- snip -- pub fn register_rental( origin: OriginFor, id: ParaId, genesis_head: HeadData, validation_code: ValidationCode, ) -> DispatchResult { /* ... */ } pub fn pay_rent(origin: OriginFor, id: ParaId) -> DispatchResult { /* ... */ }\n} A call to register_rental will require the reservation of only a percentage of the deposit that would otherwise be required to register the validation code when using the regular model. As described later in the Quick para re-registering section below, we will also store the code hash of each parachain to enable faster re-registration after a parachain has been pruned. For this reason the total initial deposit amount is increased to account for that. // The logic for calculating the initial deposit for parachain registered with the // new rent-based model: let validation_code_deposit = per_byte_fee.saturating_mul((validation_code.0.len() as u32).into()); let head_deposit = per_byte_fee.saturating_mul((genesis_head.0.len() as u32).into())\nlet hash_deposit = per_byte_fee.saturating_mul(HASH_SIZE); let deposit = T::RentalDepositProportion::get().mul_ceil(validation_code_deposit) .saturating_add(T::ParaDeposit::get()) .saturating_add(head_deposit) .saturating_add(hash_deposit) Once the ParaId is reserved and the validation code is registered the rent must be periodically paid to ensure the on-demand parachain doesn't get removed from the state. The pay_rent extrinsic should be callable by anyone, removing the need for the parachain to depend on the parachain manager for rent payments.","breadcrumbs":"RFC-0044: Rent based registration model » Registering an on-demand parachain","id":"469","title":"Registering an on-demand parachain"},"47":{"body":"For epoch N, the first block produced must include a descriptor for some of the subsequent epoch (N+1) parameters. This descriptor is defined as: NextEpochDescriptor ::= SEQUENCE { randomness: OCTET_STRING(SIZE(32)), authorities: SEQUENCE_OF BandersnatchPublicKey, configuration: ProtocolConfiguration OPTIONAL } Where: randomness: 32-bytes pseudo random value. authorities: list of authorities. configuration: optional protocol configuration. This descriptor must be encoded using the SCALE encoding system and embedded in the block header's digest log. The identifier for the digest element is BYTES(\"SASS\"). A special case arises for the first block for epoch 0, which each node produces independently during the genesis phase. In this case, the NextEpochDescriptor relative to epoch 1 is shared within the second block, as outlined in section 6.1.3 . 6.1.1. Epoch Randomness The randomness in the NextEpochDescriptor randomness is computed as: randomness = BLAKE2(32, CONCAT(randomness_accumulator, BYTES(next_epoch.index))); Here, randomness_accumulator refers to a 32-byte OCTET_STRING stored on-chain and computed through a process that incorporates verifiable random elements from all previously imported blocks. The exact procedure is described in section 6.7 . 6.1.2. Protocol Configuration The ProtocolConfiguration primarily influences certain checks carried out during tickets validation. It is defined as: ProtocolConfiguration ::= SEQUENCE { attempts_number: U32, redundancy_factor: U32 } Where: attempts_number: maximum number of tickets that each authority for the next epoch is allowed to submit. redundancy_factor: expected ratio between epoch's slots and the cumulative number of tickets which can be submitted by the set of epoch validators. The attempts_number influences the anonymity of block producers. As all published tickets have a public attempt number less than attempts_number, all the tickets which share the attempt number value must belong to different block producers, which reduces anonymity late as we approach the epoch tail. Bigger values guarantee more anonymity but also more computation. Details about how exactly these parameters drives the ticket validity probability can be found in section 6.2.2 . ProtocolConfiguration values can be adjusted via a dedicated on-chain call which should have origin set to Root. Any proposed changes to ProtocolConfiguration that are submitted in epoch K will be included in the NextEpochDescriptor at the start of epoch K+1 and will come into effect in epoch K+2. 6.1.3. Startup Parameters Some of the initial parameters for the first epoch, Epoch #0, are set through the genesis configuration, which is defined as: GenesisConfig ::= SEQUENCE { authorities: SEQUENCE_OF BandersnatchPublicKey, configuration: ProtocolConfiguration, } The on-chain randomness accumulator is initialized only after the genesis block is produced. It starts with the hash of the genesis block: randomness_accumulator = genesis_hash Since block #0 is generated locally by each node as part of the genesis process, the first block that a validator explicitly produces for Epoch #0 is block #1. Therefore, block #1 is required to contain the NextEpochDescriptor for the following epoch, Epoch #1. The NextEpochDescriptor for Epoch #1: randomness: computed using the randomness_accumulator established post-genesis, as mentioned above. authorities: the same as those specified in the genesis configuration. configuration: not set (i.e., None), implying the reuse of the one found in the genesis configuration.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.1. Epoch's First Block","id":"47","title":"6.1. Epoch's First Block"},"470":{"body":"If the rent is not paid, anyone has the option to prune the on-demand parachain and claim a portion of the initial deposit reserved for storing the validation code. This type of 'light' pruning only removes the validation code, while the head data and validation code hash are retained. The validation code hash is stored to allow anyone to register it again as well as to enable quicker re-registration by skipping the pre-checking process. The moment the rent is no longer paid, the parachain won't be able to purchase on-demand access, meaning no new blocks are allowed. This stage is called the \"hibernation\" stage, during which all the parachain-related data is still stored on-chain, but new blocks are not permitted. The reason for this is to ensure that the validation code is available in case it is needed in the dispute or approval checking subsystems. Waiting for one entire session will be enough to ensure it is safe to deregister the parachain. This means that anyone can prune the parachain only once the \"hibernation\" stage is over, which lasts for an entire session after the moment that the rent is not paid. The pruning described here is a light form of pruning, since it only removes the validation code. As with all parachains, the parachain or para manager can use the deregister extrinsic to remove all associated state.","breadcrumbs":"RFC-0044: Rent based registration model » On-demand parachain pruning","id":"470","title":"On-demand parachain pruning"},"471":{"body":"The paras pallet will be loosely coupled with the para-registrar pallet. This approach enables all the pallets tightly coupled with the paras pallet to have access to the rent status information. Once the validation code is stored without having its rent paid the assigner_on_demand pallet will ensure that an order for that parachain cannot be placed. This is easily achievable given that the assigner_on_demand pallet is tightly coupled with the paras pallet.","breadcrumbs":"RFC-0044: Rent based registration model » Ensuring rent is paid","id":"471","title":"Ensuring rent is paid"},"472":{"body":"If the rent isn't paid on time, and the parachain gets pruned, the new model should provide a quick way to re-register the same validation code under the same ParaId. This can be achieved by skipping the pre-checking process, as the validation code hash will be stored on-chain, allowing us to easily verify that the uploaded code remains unchanged. /// Stores the validation code hash for parachains that successfully completed the /// pre-checking process.\n///\n/// This is stored to enable faster on-demand para re-registration in case its pvf has been earlier\n/// registered and checked.\n///\n/// NOTE: During a runtime upgrade where the pre-checking rules change this storage map should be\n/// cleared appropriately.\n#[pallet::storage]\npub(super) type CheckedCodeHash = StorageMap<_, Twox64Concat, ParaId, ValidationCodeHash>; To enable parachain re-registration, we should introduce a new extrinsic in the paras-registrar pallet that allows this. The logic of this extrinsic will be same as regular registration, with the distinction that it can be called by anyone, and the required deposit will be smaller since it only has to cover for the storage of the validation code.","breadcrumbs":"RFC-0044: Rent based registration model » On-demand para re-registration","id":"472","title":"On-demand para re-registration"},"473":{"body":"This RFC does not alter the process of reserving a ParaId, and therefore, it does not propose reducing it, even though such a reduction could be beneficial. Even though this RFC doesn't delve into the specifics of the configuration values for parachain registration but rather focuses on the mechanism, configuring it carelessly could lead to potential problems. Since the validation code hash and head data are not removed when the parachain is pruned but only when the deregister extrinsic is called, the T::DataDepositPerByte must be set to a higher value to create a strong enough incentive for removing it from the state.","breadcrumbs":"RFC-0044: Rent based registration model » Drawbacks","id":"473","title":"Drawbacks"},"474":{"body":"The implementation of this RFC will be tested on Rococo first. Proper research should be conducted on setting the configuration values of the new system since these values can have great impact on the network. An audit is required to ensure the implementation's correctness. The proposal introduces no new privacy concerns.","breadcrumbs":"RFC-0044: Rent based registration model » Testing, Security, and Privacy","id":"474","title":"Testing, Security, and Privacy"},"475":{"body":"","breadcrumbs":"RFC-0044: Rent based registration model » Performance, Ergonomics, and Compatibility","id":"475","title":"Performance, Ergonomics, and Compatibility"},"476":{"body":"This RFC should not introduce any performance impact.","breadcrumbs":"RFC-0044: Rent based registration model » Performance","id":"476","title":"Performance"},"477":{"body":"This RFC does not affect the current parachains, nor the parachains that intend to use the one-time payment model for parachain registration.","breadcrumbs":"RFC-0044: Rent based registration model » Ergonomics","id":"477","title":"Ergonomics"},"478":{"body":"This RFC does not break compatibility.","breadcrumbs":"RFC-0044: Rent based registration model » Compatibility","id":"478","title":"Compatibility"},"479":{"body":"Prior discussion on this topic: https://github.com/paritytech/polkadot-sdk/issues/1796","breadcrumbs":"RFC-0044: Rent based registration model » Prior Art and References","id":"479","title":"Prior Art and References"},"48":{"body":"After the beginning of a new epoch N, each validator associated to the next epoch (N+1) constructs a set of tickets which may be eligible ( 6.2.2 ) to be submitted on-chain. These tickets aim to secure ownership of one or more slots in the upcoming epoch N+1. Each validator is allowed to submit a maximum number of tickets, as specified by the attempts_number field in the ProtocolConfiguration for the next epoch. The ideal timing for a validator to start creating the tickets is subject to strategy. A recommended approach is to initiate tickets creation once the block containing the NextEpochDescriptor is either probabilistically or, preferably, deterministically finalized. This timing is suggested to prevent to waste resources on tickets that might become obsolete if a different chain branch is finally chosen as the best one by the distributed system. However, validators are also advised to avoid submitting tickets too late, as tickets submitted during the second half of the epoch must be discarded. 6.2.1. Ticket Identifier Value Each ticket has an associated 128-bit unique identifier defined as: TicketId ::= U128; The value of the TicketId is determined by the output of the Bandersnatch VRF with the following input: ticket_id_vrf_input = vrf_input_from_items( BYTES(\"sassafras-ticket-v1.0\"), [ next_epoch.randomness, BYTES(next_epoch.index), BYTES(attempt_index) ] ); ticket_id_vrf_pre_output = vrf_pre_output(AUTHORITY_SECRET_KEY, ticket_id_vrf_input); ticket_bytes = vrf_bytes(16, ticket_id_vrf_input, ticket_id_vrf_pre_output); ticket_id = U128(ticket_bytes); Where: next_epoch.randomness: randomness associated to the target epoch. next_epoch.index: index of the target epoch as a U64. attempt_index: value going from 0 to attempts_number as a U32. 6.2.2. Tickets Threshold A TicketId value is valid if its value is less than the ticket threshold: T = (r·s)/(a·v) Where: v: epoch's authorities (aka validators) number s: epoch's slots number r: redundancy factor a: attempts number T: ticket threshold value (0 ≤ T ≤ 1) 6.2.2.1 Formula Derivation In an epoch with s slots, the goal is to achieve an expected number of tickets for block production equal to r·s. It's crucial to ensure that the probability of having fewer than s winning tickets is very low, even in scenarios where up to 1/3 of the authorities might be offline. To accomplish this, we first define the winning probability of a single ticket as T = (r·s)/(a·v). Let n be the actual number of participating validators, where v·2/3 ≤ n ≤ v. These n validators each make a attempts, for a total of a·n attempts. Let X be the random variable associated to the number of winning tickets, then its expected value is: E[X] = T·a·n = (r·s·n)/v By setting r = 2, we get s·4/3 ≤ E[X] ≤ s·2 Using Bernestein's inequality we get Pr[X < s] ≤ e^(-s/21). For instance, with s = 600 this results in Pr[X < s] < 4·10⁻¹³. Consequently, this approach offers considerable tolerance for offline nodes and ensures that all slots are likely to be filled with tickets. For more details about threshold formula please refer to the probabilities and parameters paragraph in the Web3 foundation description of the protocol. 6.2.3. Ticket Body Every candidate ticket identifier has an associated body, defined as: TicketBody ::= SEQUENCE { attempt_index: U32, erased_pub: Ed25519PublicKey, revealed_pub: Ed25519PublicKey } Where: attempt_index: attempt index used to generate the associated TicketId. erased_pub: Ed25519 ephemeral public key which gets erased as soon as the ticket is claimed. This key can be used to encrypt data for the validator. revealed_pub: Ed25519 ephemeral public key which gets exposed as soon as the ticket is claimed. The process of generating an erased key pair is intentionally left undefined, allowing the implementor the freedom to choose the most suitable strategy. Revealed key pair is generated using the bytes produced by the VRF with input parameters equal to those employed in TicketId generation, only the label is different. revealed_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-revealed-v1.0\"), data: [ next_epoch.randomness, BYTES(next_epoch.index), BYTES(attempt_index) ] ); revealed_vrf_pre_output = vrf_pre_output(AUTHORITY_SECRET_KEY, revealed_vrf_input); revealed_seed = vrf_bytes(32, revealed_vrf_input, revealed_vrf_pre_output); revealed_pub = ed25519_secret_from_seed(revealed_seed).public(); Where: next_epoch.randomness: randomness associated to the target epoch. next_epoch.index: index of the target epoch as a U64. attempt_index: value going from 0 to attempts_number as a U32. The ephemeral public keys are also used for claiming the tickets on block production. Refer to section 6.5 for details. 6.2.4. Ring Signature Production TicketBody must be signed using the Bandersnatch ring VRF flavor ( 5.4.2 ). sign_data = vrf_signature_data( transcript_label: BYTES(\"sassafras-ticket-body-v1.0\"), transcript_data: [ SCALE(ticket_body) ], inputs: [ ticket_id_vrf_input ] ) ring_signature = ring_vrf_sign(AUTHORITY_SECRET_KEY, RING_PROVER_KEY, sign_data) RING_PROVER_KEY object is constructed using the set of public keys which belong to the target epoch's authorities and the zk-SNARK context parameters (for more details refer to the bandersnatch_vrfs reference implementation). The body and the ring signature are combined in the TicketEnvelope structure: TicketEnvelope ::= SEQUENCE { ticket_body: TicketBody, ring_signature: RingVrfSignature } All the envelopes corresponding to valid tickets can be submitted on-chain via a dedicated on-chain call (extrinsic).","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.2. Creation and Submission of Candidate Tickets","id":"48","title":"6.2. Creation and Submission of Candidate Tickets"},"480":{"body":"None at this time.","breadcrumbs":"RFC-0044: Rent based registration model » Unresolved Questions","id":"480","title":"Unresolved Questions"},"481":{"body":"As noted in this GitHub issue , we want to raise the per-byte cost of on-chain data storage. However, a substantial increase in this cost would make it highly impractical for on-demand parachains to register on Polkadot. This RFC offers an alternative solution for on-demand parachains, ensuring that the per-byte cost increase doesn't overly burden the registration process.","breadcrumbs":"RFC-0044: Rent based registration model » Future Directions and Related Material","id":"481","title":"Future Directions and Related Material"},"482":{"body":"(source) Table of Contents RFC-0048: Generate ownership proof for SessionKeys Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 13 November 2023 Description Change SessionKeys runtime api to also create a proof of ownership for on chain registration. Authors Bastian Köcher","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » RFC-0048: Generate ownership proof for SessionKeys","id":"482","title":"RFC-0048: Generate ownership proof for SessionKeys"},"483":{"body":"When rotating/generating the SessionKeys of a node, the node calls into the runtime using the SessionKeys::generate_session_keys runtime api. This runtime api function needs to be changed to add an extra parameter owner and to change the return value to also include the proof of ownership. The owner should be the account id of the account setting the SessionKeys on chain to allow the on chain logic the verification of the proof. The on chain logic is then able to proof the possession of the private keys of the SessionKeys using the proof.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Summary","id":"483","title":"Summary"},"484":{"body":"When a user sets new SessionKeys on chain the chain can currently not ensure that the user actually has control over the private keys of the SessionKeys. With the RFC applied the chain is able to ensure that the user actually is in possession of the private keys.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Motivation","id":"484","title":"Motivation"},"485":{"body":"Polkadot runtime implementors Polkadot node implementors Validator operators","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Stakeholders","id":"485","title":"Stakeholders"},"486":{"body":"We are first going to explain the proof format being used: type Proof = (Signature, Signature, ..); The proof being a SCALE encoded tuple over all signatures of each private session key signing the owner. The actual type of each signature depends on the corresponding session key cryptographic algorithm. The order of the signatures in the proof is the same as the order of the session keys in the SessionKeys type. The version of the SessionKeys needs to be bumped to 1 to reflect the changes to the signature of SessionKeys_generate_session_keys: pub struct OpaqueGeneratedSessionKeys { pub keys: Vec, pub proof: Vec,\n} fn SessionKeys_generate_session_keys(owner: Vec, seed: Option>) -> OpaqueGeneratedSessionKeys; The default calling convention for runtime apis is applied, meaning the parameters passed as SCALE encoded array and the length of the encoded array. The return value being the SCALE encoded return value as u64 (array_ptr | length << 32). So, the actual exported function signature looks like: fn SessionKeys_generate_session_keys(array: *const u8, len: usize) -> u64; The on chain logic for setting the SessionKeys needs to be changed as well. It already gets the proof passed as Vec. This proof needs to be decoded to the actual Proof type as explained above. The proof and the SCALE encoded account_id of the sender are used to verify the ownership of the SessionKeys.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Explanation","id":"486","title":"Explanation"},"487":{"body":"Validator operators need to pass the their account id when rotating their session keys in a node. This will require updating some high level docs and making users familiar with the slightly changed ergonomics.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Drawbacks","id":"487","title":"Drawbacks"},"488":{"body":"Testing of the new changes is quite easy as it only requires passing an appropriate owner for the current testing context. The changes to the proof generation and verification got audited to ensure they are correct.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Testing, Security, and Privacy","id":"488","title":"Testing, Security, and Privacy"},"489":{"body":"","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Performance, Ergonomics, and Compatibility","id":"489","title":"Performance, Ergonomics, and Compatibility"},"49":{"body":"All the actions in the steps described by this paragraph are executed by on-chain code. Validation rules: Tickets submissions must occur within a block part of the first half of the epoch. Ring signature is verified using the on-chain RING_VERIFIER_KEY. Ticket identifier is locally (re)computed from the VrfPreOutput contained in the RingVrfSignature and its value is checked to be less than the tickets' threshold. Valid tickets bodies are all persisted on-chain.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.3. Validation of candidate tickets","id":"49","title":"6.3. Validation of candidate tickets"},"490":{"body":"Does not have any impact on the overall performance, only setting SessionKeys will require more weight.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Performance","id":"490","title":"Performance"},"491":{"body":"If the proposal alters exposed interfaces to developers or end-users, which types of usage patterns have been optimized for?","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Ergonomics","id":"491","title":"Ergonomics"},"492":{"body":"Introduces a new version of the SessionKeys runtime api. Thus, nodes should be updated before a runtime is enacted that contains these changes otherwise they will fail to generate session keys.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Compatibility","id":"492","title":"Compatibility"},"493":{"body":"None.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Prior Art and References","id":"493","title":"Prior Art and References"},"494":{"body":"None.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Unresolved Questions","id":"494","title":"Unresolved Questions"},"495":{"body":"Substrate implementation of the RFC .","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Future Directions and Related Material","id":"495","title":"Future Directions and Related Material"},"496":{"body":"(source) Table of Contents RFC-0054: Remove the concept of \"heap pages\" from the client Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-11-24 Description Remove the concept of heap pages from the client and move it to the runtime. Authors Pierre Krieger","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » RFC-0054: Remove the concept of \"heap pages\" from the client","id":"496","title":"RFC-0054: Remove the concept of \"heap pages\" from the client"},"497":{"body":"Rather than enforce a limit to the total memory consumption on the client side by loading the value at :heappages, enforce that limit on the runtime side.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Summary","id":"497","title":"Summary"},"498":{"body":"From the early days of Substrate up until recently, the runtime was present in two forms: the wasm runtime (wasm bytecode passed through an interpreter) and the native runtime (native code directly run by the client). Since the wasm runtime has a lower amount of available memory (4 GiB maximum) compared to the native runtime, and in order to ensure sure that the wasm and native runtimes always produce the same outcome, it was necessary to clamp the amount of memory available to both runtimes to the same value. In order to achieve this, a special storage key (a \"well-known\" key) :heappages was introduced and represents the number of \"wasm pages\" (one page equals 64kiB) of memory that are available to the memory allocator of the runtimes. If this storage key is absent, it defaults to 2048, which is 128 MiB. The native runtime has since then been disappeared, but the concept of \"heap pages\" still exists. This RFC proposes a simplification to the design of Polkadot by removing the concept of \"heap pages\" as is currently known, and proposes alternative ways to achieve the goal of limiting the amount of memory available.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Motivation","id":"498","title":"Motivation"},"499":{"body":"Client implementers and low-level runtime developers.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Stakeholders","id":"499","title":"Stakeholders"},"5":{"body":"NFT Creators : Primary beneficiaries of the proposed change, particularly those who found the current deposit requirements prohibitive. NFT Platforms : As the facilitator of artists' relations, NFT Marketplaces has a vested interest in onboarding new users and making the platform more accessible. dApp Developers : Making the blockspace more accessible will encourage developers to create and build unique dApps in the Polkadot ecosystem. Polkadot Community : Stands to benefit from an influx of artists, creators and diverse NFT collections, enhancing the overall ecosystem. Previous discussions have been held within the Polkadot Forum community and with artists expressing their concerns about the deposit amounts. Link .","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Stakeholders","id":"5","title":"Stakeholders"},"50":{"body":"Before the beginning of the next epoch, the on-chain list of tickets must be associated with the next epoch's slots such that there must be at most one ticket per slot. The assignment process happens in the second half of the submission epoch and follows these steps: Sorting: The complete list of tickets is sorted based on their TicketId value, with smaller values coming first. Trimming: In scenarios where there are more tickets than available slots, the list is trimmed to fit the epoch's slots by removing the larger value. Assignment: Tickets are assigned to the epoch's slots following an outside-in strategy. 6.4.1. Outside-In Assignment Given an ordered sequence of tickets [t0, t1, t2, ..., tk] to be assigned to n slots, where n ≥ k, the tickets are allocated according to the following strategy: slot-index : [ 0, 1, 2, ............ , n ] tickets : [ t1, t3, t5, ... , t4, t2, t0 ] Here slot-index is a relative value computed as: slot-index = absolute_slot - epoch_start_slot The association between each ticket and a slot is recorded on-chain and thus is public. What remains confidential is the identity of the ticket's author, and consequently, who possesses the authority to claim the corresponding slot. This information is known only to the author of the ticket. In case the number of available tickets is less than the number of epoch slots, some orphan slots in the middle of the epoch will remain unbounded to any ticket. For claiming strategy refer to 6.5.2 .","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.4. Ticket-Slot Binding","id":"50","title":"6.4. Ticket-Slot Binding"},"500":{"body":"This RFC proposes the following changes to the client: The client no longer considers :heappages as special. The memory allocator of the runtime is no longer bounded by the value of :heappages. With these changes, the memory available to the runtime is now only bounded by the available memory space (4 GiB), and optionally by the maximum amount of memory specified in the Wasm binary (see https://webassembly.github.io/spec/core/bikeshed/#memories%E2%91%A0). In Rust, the latter can be controlled during compilation with the flag -Clink-arg=--max-memory=.... Since the client-side change is strictly more tolerant than before, we can perform the change immediately after the runtime has been updated, and without having to worry about backwards compatibility. This RFC proposes three alternative paths (different chains might choose to follow different paths): Path A: add back the same memory limit to the runtime, like so: At initialization, the runtime loads the value of :heappages from the storage (using ext_storage_get or similar), and sets a global variable to the decoded value. The runtime tracks the total amount of memory that it has allocated using its instance of #[global_allocator] (https://github.com/paritytech/polkadot-sdk/blob/e3242d2c1e2018395c218357046cc88caaed78f3/substrate/primitives/io/src/lib.rs#L1748-L1762). This tracking should also be added around the host functions that perform allocations. If an allocation is attempted that would go over the value in the global variable, the memory allocation fails. Path B: define the memory limit using the -Clink-arg=--max-memory=... flag. Path C: don't add anything to the runtime. This is effectively the same as setting the memory limit to ~4 GiB (compared to the current default limit of 128 MiB). This solution is viable only because we're compiling for 32bits wasm rather than for example 64bits wasm. If we ever compile for 64bits wasm, this would need to be revisited. Each parachain can choose the option that they prefer, but the author of this RFC strongly suggests either option C or B.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Explanation","id":"500","title":"Explanation"},"501":{"body":"In case of path A, there is one situation where the behaviour pre-RFC is not equivalent to the one post-RFC: when a host function that performs an allocation (for example ext_storage_get) is called, without this RFC this allocation might fail due to reaching the maximum heap pages, while after this RFC this will always succeed. This is most likely not a problem, as storage values aren't supposed to be larger than a few megabytes at the very maximum. In the unfortunate event where the runtime runs out of memory, path B would make it more difficult to relax the memory limit, as we would need to re-upload the entire Wasm, compared to updating only :heappages in path A or before this RFC. In the case where the runtime runs out of memory only in the specific event where the Wasm runtime is modified, this could brick the chain. However, this situation is no different than the thousands of other ways that a bug in the runtime can brick a chain, and there's no reason to be particularily worried about this situation in particular.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Drawbacks","id":"501","title":"Drawbacks"},"502":{"body":"This RFC would reduce the chance of a consensus issue between clients. The :heappages are a rather obscure feature, and it is not clear what happens in some corner cases such as the value being too large (error? clamp?) or malformed. This RFC would completely erase these questions.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Testing, Security, and Privacy","id":"502","title":"Testing, Security, and Privacy"},"503":{"body":"","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Performance, Ergonomics, and Compatibility","id":"503","title":"Performance, Ergonomics, and Compatibility"},"504":{"body":"In case of path A, it is unclear how performances would be affected. Path A consists in moving client-side operations to the runtime without changing these operations, and as such performance differences are expected to be minimal. Overall, we're talking about one addition/subtraction per malloc and per free, so this is more than likely completely negligible. In case of path B and C, the performance gain would be a net positive, as this RFC strictly removes things.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Performance","id":"504","title":"Performance"},"505":{"body":"This RFC would isolate the client and runtime more from each other, making it a bit easier to reason about the client or the runtime in isolation.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Ergonomics","id":"505","title":"Ergonomics"},"506":{"body":"Not a breaking change. The runtime-side changes can be applied immediately (without even having to wait for changes in the client), then as soon as the runtime is updated, the client can be updated without any transition period. One can even consider updating the client before the runtime, as it corresponds to path C.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Compatibility","id":"506","title":"Compatibility"},"507":{"body":"None.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Prior Art and References","id":"507","title":"Prior Art and References"},"508":{"body":"None.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Unresolved Questions","id":"508","title":"Unresolved Questions"},"509":{"body":"This RFC follows the same path as https://github.com/polkadot-fellows/RFCs/pull/4 by scoping everything related to memory allocations to the runtime.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Future Directions and Related Material","id":"509","title":"Future Directions and Related Material"},"51":{"body":"With tickets bound to epoch slots, every validator acquires information about the slots for which they are supposed to produce a block. The procedure for slot claiming depends on whether a given slot has an associated ticket according to the on-chain state. If a slot is associated with a ticket, the primary authoring method is used. Conversely, the protocol resorts to the secondary method as a fallback. 6.5.1. Primary Method Let ticket_body be the TicketBody that has been committed to the on-chain state, curr_epoch denote an object containing information about the current epoch, and slot represent the slot number (absolute). Follows the construction of VrfSignatureData: randomness_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-randomness-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(slot) ] ); revealed_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-revealed-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(ticket_body.attempt_index) ] ); sign_data = vrf_signature_data( transcript_label: BYTES(\"sassafras-claim-v1.0\"), transcript_data: [ SCALE(ticket_body) ], inputs: [ randomness_vrf_input, revealed_vrf_input ] ); 6.5.1.1. Ephemeral Key Claim Fiat-Shamir transform is used to obtain a 32-byte challenge associated with the VrfSignData transcript. Validators employ the secret key associated with erased_pub, which has been committed in the TicketBody, to sign the challenge. challenge = sign_data.transcript.challenge(); erased_signature = ed25519_sign(ERASED_SECRET_KEY, challenge); As ticket's ownership can be claimed by reconstructing the revealed_pub entry of the committed TicketBody, this step is considered optional. Is this step really necessary?\n- Isn't better to keep it simple if this step doesn't offer any extra security?\n- We already have a strong method to claim ticket ownership using the vrf output\n- What if a validator provides both the proofs? More weight for the branch (i.e. used to decide what is the best branch by validators)? E.g. - primary method + ed25519 erased signature => score 2 - primary method => score 1 - fallback method => score 0 6.5.2. Secondary Method By noting that the authorities registered on-chain are kept in an ordered list, the index of the authority which has the privilege to claim an orphan slot is: index_bytes = BLAKE2(4, CONCAT(epoch_randomness, BYTES(slot))); index = U32(index_bytes) mod authorities_number; Given randomness_vrf_input constructed as shown for the primary method ( 6.5.1 ), the VrfSignatureData is constructed as: sign_data = vrf_signature_data( transcript_label: BYTES(\"sassafras-claim-v1.0\"), transcript_data: [ ], inputs: [ randomness_vrf_input ] ) 6.5.3. Slot Claim Object The SlotClaim structure is used to contain all the necessary information to assess ownership of a slot. SlotClaim ::= SEQUENCE { authority_index: U32, slot: U64, signature: VrfSignature, erased_signature: Ed25519Signature OPTIONAL } The claim is constructed as follows: signature = vrf_sign(AUTHORITY_SECRET_KEY, sign_data); claim = SlotClaim { authority_index, slot, signature, erased_signature } Where: authority_index: index of the block author in the on-chain authorities list. slot: slot number (absolute, not relative to the epoch start) signature: signature relative to the sign_data constructed via the primary 6.5.1 or secondary ( 6.5.2 ) method. erased_signature: optional signature providing an additional proof of ticket ownership ( 6.5.1.1 ). The signature includes one or two VrfPreOutputs. The first is always present and is used to generate per-block randomness to feed the randomness accumulator ( 6.7 ). The second is included if the slot is bound to a ticket. This is relevant to claim ticket ownership ( 6.6.1 ). The claim object is SCALE encoded and sent in the block's header digest log.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.5. Slot Claim Production","id":"51","title":"6.5. Slot Claim Production"},"52":{"body":"The signature within the SlotClaim is verified using a VrfSignData constructed as specified in 6.5 . public_key = authorities[claim.authority_index]; result = vrf_verify(public_key, sign_data, claim.signature); assert(result == true); With: authorities: list of authorities for the epoch, as recorded on-chain. sign_data: data that has been signed, constructed as specified in 6.5 . If signature verification is successful, the validation process then diverges based on whether the slot is associated with a ticket according to the on-chain state. For slots tied to a ticket, the primary verification method is employed. Otherwise, the secondary method is utilized.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.6. Slot Claim Verification","id":"52","title":"6.6. Slot Claim Verification"},"53":{"body":"This method verifies ticket ownership using the second VrfPreOutput from the SlotClaim signature The process involves comparing the revealed_pub key from the committed TicketBody with a reconstructed key using the VrfPreOutput and the expected VrfInput. A mismatch indicates an illegitimate claim. revealed_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-revealed-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(ticket_body.attempt_index) ] ); reveled_vrf_pre_output = claim.signature.pre_outputs[1]; revealed_seed = vrf_bytes(32, revealed_vrf_input, revealed_vrf_pre_output); revealed_pub = ed25519_secret_from_seed(revealed_seed).public(); assert(revealed_pub == ticket_body.revealed_pub); 6.6.1.1. Ephemeral Key Signature Check If the erased_signature is present in SlotClaim, the erased_pub within the committed TicketBody key is used to verify it. The signed challenge is generated as outlined in section 6.5.1.1 . challenge = sign_data.transcript.challenge(); result = ed25519_verify(ticket_body.erased_pub, challenge, claim.erased_signature); assert(result == true); 6.6.2. Secondary Method If the slot doesn't have any associated ticket then the validator index contained in the claim should match the one given by the rule outlined in section 6.5.2 .","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.6.1. Primary Method","id":"53","title":"6.6.1. Primary Method"},"54":{"body":"The first VrfPreOutput which ships within the block's SlotClaim signature is mandatory and must be used as entropy source for the randomness which gets accumulated on-chain after block transactions execution. Given claim the instance of SlotClaim found within the block header, and randomness_accumulator the current value for the randomness accumulator, the randomness_accumulator value is updated as follows: randomness_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-randomness-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(slot) ] ); randomness_vrf_pre_output = claim.signature.pre_outputs[0]; randomness = vrf_bytes(32, randomness_vrf_input, randomness_vrf_pre_output); randomness_accumulator = BLAKE2(32, CONCAT(randomness_accumulator, randomness)); The randomness_accumulator never resets and is a continuously evolving value. It primarily serves as a basis for calculating the randomness associated to the epochs as outlined on section 6.1 , but custom usages from the user are not excluded.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.7. Randomness Accumulator","id":"54","title":"6.7. Randomness Accumulator"},"55":{"body":"None","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 7. Drawbacks","id":"55","title":"7. Drawbacks"},"56":{"body":"It is critical that implementations of this RFC undergo thorough testing on test networks. A security audit may be desirable to ensure the implementation does not introduce unwanted side effects.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 8. Testing, Security, and Privacy","id":"56","title":"8. Testing, Security, and Privacy"},"57":{"body":"","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9. Performance, Ergonomics, and Compatibility","id":"57","title":"9. Performance, Ergonomics, and Compatibility"},"58":{"body":"Adopting Sassafras consensus marks a significant improvement in reducing the frequency of short-lived forks. Forks are eliminated by design. Forks may only result from network disruptions or protocol attacks. In such cases, the choice of which fork to follow upon recovery is clear-cut, with only one valid option.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9.1. Performance","id":"58","title":"9.1. Performance"},"59":{"body":"No specific considerations.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9.2. Ergonomics","id":"59","title":"9.2. Ergonomics"},"6":{"body":"This RFC proposes a revision of the deposit constants in the nfts pallet on the Polkadot Asset Hub. The new deposit amounts would be determined by a standard deposit formula. This RFC suggests modifying deposit constants defined in the nfts pallet on the Polkadot Asset Hub to require a lower deposit. The reduced deposit amount should be determined by the deposit adjusted by the pricing mechanism (arbitrary number/another pricing function).","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Explanation","id":"6","title":"Explanation"},"60":{"body":"The adoption of Sassafras affects the native client and thus can't be introduced just via a runtime upgrade. A deployment strategy should be carefully engineered for live networks. This subject is left open for a dedicated RFC.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9.3. Compatibility","id":"60","title":"9.3. Compatibility"},"61":{"body":"Web3 Foundation research page Sassafras research paper Ring-VRF research paper Sassafras reference implementation tracking issue Sassafras reference implementation main PR Bandersnatch VRFS reference implementation","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 10. Prior Art and References","id":"61","title":"10. Prior Art and References"},"62":{"body":"None","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 11. Unresolved Questions","id":"62","title":"11. Unresolved Questions"},"63":{"body":"While this RFC lays the groundwork and outlines the core aspects of the protocol, several crucial topics remain to be addressed in future RFCs. These include:","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12. Future Directions and Related Material","id":"63","title":"12. Future Directions and Related Material"},"64":{"body":"Outbound Interfaces : Interfaces that the host environment provides to the on-chain code, typically known as Host Functions . Unrecorded Inbound Interfaces . Interfaces that the on-chain code provides to the host code, typically known as Runtime APIs . Transactional Inbound Interfaces . Interfaces that the on-chain code provides to the world to alter the chain state, typically known as Transactions (or extrinsics in the Polkadot ecosystem)","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.1. Interactions with On-Chain Code","id":"64","title":"12.1. Interactions with On-Chain Code"},"65":{"body":"Protocol Migration . Exploring how this protocol can seamlessly replace an already operational instance of another protocol. Future RFCs should focus on deployment strategies to facilitate a smooth transition.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.2. Deployment Strategies","id":"65","title":"12.2. Deployment Strategies"},"66":{"body":"Procedure : Determining the procedure for the zk-SNARK SRS (Structured Reference String) initialization. Future RFCs should provide insights into whether this process should include an ad-hoc initialization ceremony or if we can reuse an SRS from another ecosystem (e.g. Zcash or Ethereum). Sharing with Para-chains : Considering the complexity of the process, we must understand whether the SRS is shared with system para-chains or maintained independently.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.3. ZK-SNARK SRS Initialization","id":"66","title":"12.3. ZK-SNARK SRS Initialization"},"67":{"body":"Mixnet Integration : Submitting tickets directly can pose a risk of potential deanonymization through traffic analysis. Subsequent RFCs should investigate the potential for incorporating Mixnet protocol or other privacy-enhancing mechanisms to address this concern.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.4. Anonymous Submission of Tickets.","id":"67","title":"12.4. Anonymous Submission of Tickets."},"68":{"body":"(source) Table of Contents RFC-34: XCM Absolute Location Account Derivation Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Start Date 05 October 2023 Description XCM Absolute Location Account Derivation Authors Gabriel Facco de Arruda","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » RFC-34: XCM Absolute Location Account Derivation","id":"68","title":"RFC-34: XCM Absolute Location Account Derivation"},"69":{"body":"This RFC proposes changes that enable the use of absolute locations in AccountId derivations, which allows protocols built using XCM to have static account derivations in any runtime, regardless of its position in the family hierarchy.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Summary","id":"69","title":"Summary"},"7":{"body":"Current deposit requirements are as follows Looking at the current code structure the currently implemented we can find that the pricing re-uses the logic of how Uniques are defined: parameter_types! { // re-use the Uniques deposits pub const NftsCollectionDeposit: Balance = UniquesCollectionDeposit::get(); pub const NftsItemDeposit: Balance = UniquesItemDeposit::get(); pub const NftsMetadataDepositBase: Balance = UniquesMetadataDepositBase::get(); pub const NftsAttributeDepositBase: Balance = UniquesAttributeDepositBase::get(); pub const NftsDepositPerByte: Balance = UniquesDepositPerByte::get();\n} In the existing setup, the Uniques are defined with specific deposit values for different elements: parameter_types! { pub const UniquesCollectionDeposit: Balance = UNITS / 10; // 1 / 10 UNIT deposit to create a collection pub const UniquesItemDeposit: Balance = UNITS / 1_000; // 1 / 1000 UNIT deposit to mint an item pub const UniquesMetadataDepositBase: Balance = deposit(1, 129); pub const UniquesAttributeDepositBase: Balance = deposit(1, 0); pub const UniquesDepositPerByte: Balance = deposit(0, 1);\n} As we can see in the code definition above the current code does not use the deposit funtion when the collection in the following instances: UniquesCollectionDeposit and UniquesItemDeposit.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Current code structure","id":"7","title":"Current code structure"},"70":{"body":"These changes would allow protocol builders to leverage absolute locations to maintain the exact same derived account address across all networks in the ecosystem, thus enhancing user experience. One such protocol, that is the original motivation for this proposal, is InvArch's Saturn Multisig, which gives users a unifying multisig and DAO experience across all XCM connected chains.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Motivation","id":"70","title":"Motivation"},"71":{"body":"Ecosystem developers","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Stakeholders","id":"71","title":"Stakeholders"},"72":{"body":"This proposal aims to make it possible to derive accounts for absolute locations, enabling protocols that require the ability to maintain the same derived account in any runtime. This is done by deriving accounts from the hash of described absolute locations, which are static across different destinations. The same location can be represented in relative form and absolute form like so: // Relative location (from own perspective)\n{ parents: 0, interior: Here\n} // Relative location (from perspective of parent)\n{ parents: 0, interior: [Parachain(1000)]\n} // Relative location (from perspective of sibling)\n{ parents: 1, interior: [Parachain(1000)]\n} // Absolute location\n[GlobalConsensus(Kusama), Parachain(1000)] Using DescribeFamily, the above relative locations would be described like so: // Relative location (from own perspective)\n// Not possible. // Relative location (from perspective of parent)\n(b\"ChildChain\", Compact::::from(*index)).encode() // Relative location (from perspective of sibling)\n(b\"SiblingChain\", Compact::::from(*index)).encode() The proposed description for absolute location would follow the same pattern, like so: ( b\"GlobalConsensus\", network_id, b\"Parachain\", Compact::::from(para_id), tail\n).encode() This proposal requires the modification of two XCM types defined in the xcm-builder crate: The WithComputedOrigin barrier and the DescribeFamily MultiLocation descriptor. WithComputedOrigin The WtihComputedOrigin barrier serves as a wrapper around other barriers, consuming origin modification instructions and applying them to the message origin before passing to the inner barriers. One of the origin modifying instructions is UniversalOrigin, which serves the purpose of signaling that the origin should be a Universal Origin that represents the location as an absolute path prefixed by the GlobalConsensus junction. In it's current state the barrier transforms locations with the UniversalOrigin instruction into relative locations, so the proposed changes aim to make it return absolute locations instead. DescribeFamily The DescribeFamily location descriptor is part of the HashedDescription MultiLocation hashing system and exists to describe locations in an easy format for encoding and hashing, so that an AccountId can be derived from this MultiLocation. This implementation contains a match statement that does not match against absolute locations, so changes to it involve matching against absolute locations and providing appropriate descriptions for hashing.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Explanation","id":"72","title":"Explanation"},"73":{"body":"No drawbacks have been identified with this proposal.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Drawbacks","id":"73","title":"Drawbacks"},"74":{"body":"Tests can be done using simple unit tests, as this is not a change to XCM itself but rather to types defined in xcm-builder. Security considerations should be taken with the implementation to make sure no unwanted behavior is introduced. This proposal does not introduce any privacy considerations.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Testing, Security, and Privacy","id":"74","title":"Testing, Security, and Privacy"},"75":{"body":"","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Performance, Ergonomics, and Compatibility","id":"75","title":"Performance, Ergonomics, and Compatibility"},"76":{"body":"Depending on the final implementation, this proposal should not introduce much overhead to performance.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Performance","id":"76","title":"Performance"},"77":{"body":"The ergonomics of this proposal depend on the final implementation details.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Ergonomics","id":"77","title":"Ergonomics"},"78":{"body":"Backwards compatibility should remain unchanged, although that depend on the final implementation.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Compatibility","id":"78","title":"Compatibility"},"79":{"body":"DescirbeFamily type: https://github.com/paritytech/polkadot-sdk/blob/master/polkadot/xcm/xcm-builder/src/location_conversion.rs#L122 WithComputedOrigin type: https://github.com/paritytech/polkadot-sdk/blob/master/polkadot/xcm/xcm-builder/src/barriers.rs#L153","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Prior Art and References","id":"79","title":"Prior Art and References"},"8":{"body":"This proposed modification adjusts the deposits to use the deposit function instead of using an arbitrary number. parameter_types! { pub const NftsCollectionDeposit: Balance = deposit(1, 130); pub const NftsItemDeposit: Balance = deposit(1, 164); pub const NftsMetadataDepositBase: Balance = deposit(1, 129); pub const NftsAttributeDepositBase: Balance = deposit(1, 0); pub const NftsDepositPerByte: Balance = deposit(0, 1);\n} Calculations viewed bellow were calculated by using the following repository rfc-pricing . Polkadot | Name | Current price implementation | Proposed Modified by using the new deposit function | |---------------------------|----------------------------------|-------------------------| | collectionDeposit | 10 DOT | 0.20064 DOT | | itemDeposit | 0.01 DOT | 0.20081 DOT | | metadataDepositBase | 0.20129 DOT | 0.20076 DOT | | attributeDepositBase | 0.2 DOT | 0.2 DOT | Similarly the prices for Kusama ecosystem were calculated as: Kusama: | Name | Current price implementation | Proposed Price in KSM | |---------------------------|----------------------------------|---------------------------| | collectionDeposit | 0.1 KSM | 0.006688 KSM | | itemDeposit | 0.001 KSM | 0.000167 KSM | | metadataDepositBase | 0.006709666617 KSM | 0.0006709666617 KSM | | attributeDepositBase | 0.00666666666 KSM | 0.000666666666 KSM |","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Proposed Modification Using the Deposit Function","id":"8","title":"Proposed Modification Using the Deposit Function"},"80":{"body":"Implementation details and overall code is still up to discussion.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Unresolved Questions","id":"80","title":"Unresolved Questions"},"81":{"body":"(source) Table of Contents RFC-0042: Add System version that replaces StateVersion on RuntimeVersion Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 25th October 2023 Description Add System Version and remove State Version Authors Vedhavyas Singareddi","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » RFC-0042: Add System version that replaces StateVersion on RuntimeVersion","id":"81","title":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion"},"82":{"body":"At the moment, we have system_version field on RuntimeVersion that derives which state version is used for the Storage. We have a use case where we want extrinsics root is derived using StateVersion::V1. Without defining a new field under RuntimeVersion, we would like to propose adding system_version that can be used to derive both storage and extrinsic state version.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Summary","id":"82","title":"Summary"},"83":{"body":"Since the extrinsic state version is always StateVersion::V0, deriving extrinsic root requires full extrinsic data. This would be problematic when we need to verify the extrinsics root if the extrinsic sizes are bigger. This problem is further explored in https://github.com/polkadot-fellows/RFCs/issues/19 For Subspace project, we have an enshrined rollups called Domain with optimistic verification and Fraud proofs are used to detect malicious behavior. One of the Fraud proof variant is to derive Domain block extrinsic root on Subspace's consensus chain. Since StateVersion::V0 requires full extrinsic data, we are forced to pass all the extrinsics through the Fraud proof. One of the main challenge here is some extrinsics could be big enough that this variant of Fraud proof may not be included in the Consensus block due to Block's weight restriction. If the extrinsic root is derived using StateVersion::V1, then we do not need to pass the full extrinsic data but rather at maximum, 32 byte of extrinsic data.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Motivation","id":"83","title":"Motivation"},"84":{"body":"Technical Fellowship, in its role of maintaining system runtimes.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Stakeholders","id":"84","title":"Stakeholders"},"85":{"body":"In order to use project specific StateVersion for extrinsic roots, we proposed an implementation that introduced parameter to frame_system::Config but that unfortunately did not feel correct. So we would like to propose adding this change to the RuntimeVersion object. The system version, if introduced, will be used to derive both storage and extrinsic state version. If system version is 0, then both Storage and Extrinsic State version would use V0. If system version is 1, then Storage State version would use V1 and Extrinsic State version would use V0. If system version is 2, then both Storage and Extrinsic State version would use V1. If implemented, the new RuntimeVersion definition would look something similar to /// Runtime version (Rococo).\n#[sp_version::runtime_version]\npub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!(\"rococo\"), impl_name: create_runtime_str!(\"parity-rococo-v2.0\"), authoring_version: 0, spec_version: 10020, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 22, system_version: 1, };","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Explanation","id":"85","title":"Explanation"},"86":{"body":"There should be no drawbacks as it would replace state_version with same behavior but documentation should be updated so that chains know which system_version to use.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Drawbacks","id":"86","title":"Drawbacks"},"87":{"body":"AFAIK, should not have any impact on the security or privacy.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Testing, Security, and Privacy","id":"87","title":"Testing, Security, and Privacy"},"88":{"body":"These changes should be compatible for existing chains if they use state_version value for system_verision.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Performance, Ergonomics, and Compatibility","id":"88","title":"Performance, Ergonomics, and Compatibility"},"89":{"body":"I do not believe there is any performance hit with this change.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Performance","id":"89","title":"Performance"},"9":{"body":"In an effort to further lower barriers to entry and foster greater inclusivity, we propose additional modifications to the pricing structure. These proposed reductions are based on a collaborative and calculated approach, involving the consensus of leading NFT creators within the Polkadot and Kusama Asset Hub communities. The adjustments to deposit amounts are not made arbitrarily. Instead, they are the result of detailed discussions and analyses conducted with prominent NFT creators. Proposed Code Adjustments parameter_types! { pub const NftsCollectionDeposit: Balance = deposit(1, 130); pub const NftsItemDeposit: Balance = deposit(1, 164) / 40; pub const NftsMetadataDepositBase: Balance = deposit(1, 129) / 10; pub const NftsAttributeDepositBase: Balance = deposit(1, 0) / 10; pub const NftsDepositPerByte: Balance = deposit(0, 1);\n} Prices and Proposed Prices on Polkadot Asset Hub: Polkadot | Name | Current price implementation | Proposed Prices | |---------------------------|----------------------------------|---------------------| | collectionDeposit | 10 DOT | 0.20064 DOT | | itemDeposit | 0.01 DOT | 0.005 DOT | | metadataDepositBase | 0.20129 DOT | 0.002 DOT | | attributeDepositBase | 0.2 DOT | 0.002 DOT | Kusama | Name | Current price implementation | Proposed Price in KSM | |---------------------------|----------------------------------|---------------------------| | collectionDeposit | 0.1 KSM | 0.006688 KSM | | itemDeposit | 0.001 KSM | 0.000167 KSM | | metadataDepositBase | 0.006709666617 KSM | 0.0006709666617 KSM | | attributeDepositBase | 0.00666666666 KSM | 0.000666666666 KSM |","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Enhanced Approach to Further Lower Barriers for Entry","id":"9","title":"Enhanced Approach to Further Lower Barriers for Entry"},"90":{"body":"This does not break any exposed Apis.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Ergonomics","id":"90","title":"Ergonomics"},"91":{"body":"This change should not break any compatibility.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Compatibility","id":"91","title":"Compatibility"},"92":{"body":"We proposed introducing a similar change by introducing a parameter to frame_system::Config but did not feel that is the correct way of introducing this change.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Prior Art and References","id":"92","title":"Prior Art and References"},"93":{"body":"I do not have any specific questions about this change at the moment.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Unresolved Questions","id":"93","title":"Unresolved Questions"},"94":{"body":"IMO, this change is pretty self-contained and there won't be any future work necessary.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Future Directions and Related Material","id":"94","title":"Future Directions and Related Material"},"95":{"body":"(source) Table of Contents RFC-0000: Metadata for offline signers Summary Motivation Background Solution requirements Stakeholders Explanation Definitions General flow Metadata modularization Merging protocol Complete Binary Merkle Tree construction protocol Digest Chain verification Drawbacks Increased transaction size Transition overhead Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-10-31 Description Add SignedExtension to check Metadata Root Hash Authors Alzymologist Oy, Zondax LLC, Parity Technologies","breadcrumbs":"RFC-0000: Metadata for offline signers » RFC-0000: Metadata for offline signers","id":"95","title":"RFC-0000: Metadata for offline signers"},"96":{"body":"Add a metadata digest value (33-byte constant within fixed spec_version) to Signed Extensions to supplement signer party with proof of correct extrinsic interpretation. The digest value is generated once before release and is well-known and deterministic. The digest mechanism is designed to be modular and flexible. It also supports partial metadata transfer as needed by the signing party's extrinsic decoding mechanism. This considers signing devices potentially limited communication bandwidth and/or memory capacity.","breadcrumbs":"RFC-0000: Metadata for offline signers » Summary","id":"96","title":"Summary"},"97":{"body":"","breadcrumbs":"RFC-0000: Metadata for offline signers » Motivation","id":"97","title":"Motivation"},"98":{"body":"While all blockchain systems support (at least in some sense) offline signing used in air-gapped wallets and lightweight embedded devices, only few allow simultaneously complex upgradeable logic and full message decoding on the cold off-line signer side; Substrate is one of these heartening few, and therefore - we should build on this feature to greatly improve transaction security, and thus in general, network resilience. As a starting point, it is important to recognise that prudence and due care are naturally required. As we build further reliance on this feature we should be very careful to make sure it works correctly every time so as not to create false sense of security. In order to enable decoding that is small and optimized for chain storage transactions, a metadata entity is used, which is not at all small in itself (on the order of half-MB for most networks). This is a dynamic data chunk which completely describes chain interfaces and properties that could be made into a portable scale-encoded string for any given network version and passed along into an off-chain device to familiarize it with latest network updates. Of course, compromising this metadata anywhere in the path could result in differences between what user sees and signs, thus it is essential that we protect it. Therefore, we have 2 problems to be solved: Metadata is large, takes long time to be passed into a cold storage device with memory insufficient for its storage; metadata SHOULD be shortened and transmission SHOULD be optimized. Metadata authenticity SHOULD be ensured. As of now, there is no working solution for (1), as the whole metadata has to be passed to the device. On top of this, the solution for (2) heavily relies on a trusted party managing keys and ensuring metadata is indeed authentic: creating poorly decentralized points of potential failure.","breadcrumbs":"RFC-0000: Metadata for offline signers » Background","id":"98","title":"Background"},"99":{"body":"Include metadata digest into signature Some cryptographically strong digest of metadata MAY be included into signable blob. There SHALL NOT be storage overhead for this blob, nor computational overhead; thus MUST be a constant within a given runtime, deterministically defined by metadata. Metadata information that could be used in signable extrinsic decoding MAY be included in digest, its inclusion MUST be indicated in signed extensions; Digest MUST be deterministic with respect to metadata; Digest MUST be cryptographically strong against pre-image, both first and second; Extra-metadata information necessary for extrinsic decoding and constant within runtime version MUST be included in digest; It SHOULD be possible to quickly withdraw offline signing mechanism without access to cold signing devices; Digest format SHOULD be versioned. Work necessary for proving metadata authenticity MAY be omitted at discretion of signer device design (to support automation tools). Reduce metadata size Metadata should be stripped from parts that are not necessary to parse a signable extrinsic, then it should be separated into a finite set of self-descriptive chunks. Thus, a subset of chunks necessary for signable extrinsic decoding and rendering could be sent, possibly in small portions (ultimately - one at a time), to cold device together with proof. Single chunk with proof payload size SHOULD fit within few kB; Chunks handling mechanism SHOULD support chunks being sent in any order without memory utilization overhead; Unused enum variants MUST be stripped (this has great impact on transmitted metadata size; examples: era enum, enum with all calls for call batching).","breadcrumbs":"RFC-0000: Metadata for offline signers » Solution requirements","id":"99","title":"Solution requirements"}},"length":510,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"0":{"0":{"1":{"6":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"9":{"tf":1.0}}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":6,"docs":{"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"7":{"5":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"5":{"df":1,"docs":{"327":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"192":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"0":{"0":{"6":{"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"9":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"327":{"tf":1.0}}},"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"5":{"df":1,"docs":{"375":{"tf":1.0}}},"6":{"df":1,"docs":{"459":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"174":{"tf":1.0},"353":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"364":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"394":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"399":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"275":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"427":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"292":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"303":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"440":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"453":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"323":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"496":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"339":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"120":{"tf":1.0}}},"4":{"df":1,"docs":{"353":{"tf":1.0}}},"5":{".":{"0":{"8":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":2,"docs":{"216":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":4,"docs":{"230":{"tf":1.0},"248":{"tf":1.0},"353":{"tf":1.0},"380":{"tf":1.0}}},"9":{":":{"1":{"3":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"364":{"tf":1.0}}},"b":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":3.3166247903554}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"127":{"tf":1.0},"164":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":3.872983346207417},"223":{"tf":1.0},"329":{"tf":1.7320508075688772},"358":{"tf":4.58257569495584},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"9":{"tf":1.0}},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":4.795831523312719}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"x":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"1":{"df":1,"docs":{"108":{"tf":1.0}}},"2":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"3":{"d":{"d":{"8":{"0":{"8":{"4":{"d":{"5":{"0":{"d":{"b":{"b":{"b":{"c":{"9":{"6":{"2":{"0":{"6":{"7":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"c":{"3":{"7":{"b":{"6":{"2":{"7":{"8":{"3":{"1":{"d":{"9":{"3":{"3":{"9":{"df":0,"docs":{},"f":{"5":{"a":{"6":{"df":0,"docs":{},"e":{"4":{"2":{"6":{"a":{"3":{"2":{"df":0,"docs":{},"e":{"3":{"0":{"7":{"6":{"3":{"1":{"3":{"d":{"8":{"7":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"108":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"179":{"tf":1.0},"188":{"tf":1.0},"385":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"27":{"tf":1.0}}},"5":{"df":3,"docs":{"327":{"tf":1.0},"375":{"tf":1.4142135623730951},"385":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"8":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"224":{"tf":1.0},"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":8,"docs":{"153":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"375":{"tf":2.0},"7":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":3.872983346207417},"224":{"tf":1.0},"358":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"183":{"tf":1.0},"209":{"tf":2.23606797749979},"224":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"440":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"1":{",":{"6":{"df":1,"docs":{"384":{"tf":1.0}}},"7":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"209":{"tf":2.0}},"u":{"3":{"2":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"329":{"tf":1.0},"339":{"tf":1.0},"496":{"tf":1.0},"62":{"tf":1.0}}},"2":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"66":{"tf":1.0}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}}},"8":{"df":6,"docs":{"126":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}}},"9":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":5,"docs":{"141":{"tf":1.0},"188":{"tf":1.0},"23":{"tf":1.0},"429":{"tf":1.0},"63":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":1,"docs":{"482":{"tf":1.0}}},"4":{"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"175":{"tf":1.0},"209":{"tf":1.0},"248":{"tf":1.0},"421":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.0}}}}},"5":{"0":{"0":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":1,"docs":{"209":{"tf":3.4641016151377544}},"u":{"3":{"2":{"df":1,"docs":{"209":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"209":{"tf":1.0}}},"2":{"df":1,"docs":{"209":{"tf":1.0}}},"df":5,"docs":{"209":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"323":{"tf":1.0},"444":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":4,"docs":{"146":{"tf":1.0},"209":{"tf":3.4641016151377544},"384":{"tf":1.0},"385":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}}}},"8":{",":{"3":{"3":{"3":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"141":{"tf":1.0},"188":{"tf":1.0}}},"9":{".":{"0":{"7":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"394":{"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":1,"docs":{"14":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"380":{"tf":1.0}}},":":{"1":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":52,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"108":{"tf":1.0},"110":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"307":{"tf":1.0},"327":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.23606797749979},"358":{"tf":5.656854249492381},"365":{"tf":1.0},"366":{"tf":1.7320508075688772},"371":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"375":{"tf":3.1622776601683795},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":2.23606797749979},"385":{"tf":1.4142135623730951},"406":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":0,"docs":{},"v":{"df":1,"docs":{"444":{"tf":1.0}}}}},"2":{",":{"8":{"9":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"'":{"df":2,"docs":{"177":{"tf":1.4142135623730951},"195":{"tf":1.0}}},"df":5,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"327":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"29":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"30":{"tf":1.0}}},"5":{"df":1,"docs":{"327":{"tf":2.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":2.0},"329":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.7320508075688772}},"u":{"3":{"2":{"df":1,"docs":{"209":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"2":{"df":2,"docs":{"293":{"tf":1.0},"452":{"tf":1.0}}},"3":{"df":30,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"399":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":3,"docs":{"14":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":2.0},"303":{"tf":1.0}}},"2":{",":{"5":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{",":{"8":{"3":{"3":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"153":{"tf":1.0},"199":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"399":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"496":{"tf":1.0}}},"5":{"6":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":1,"docs":{"275":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"7":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"159":{"tf":1.0},"329":{"tf":1.0}}},"8":{"df":1,"docs":{"208":{"tf":1.0}}},"9":{"6":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"164":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"23":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"291":{"tf":1.0},"358":{"tf":3.4641016151377544},"371":{"tf":1.7320508075688772},"375":{"tf":2.23606797749979},"384":{"tf":2.0},"406":{"tf":1.0},"424":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"3":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"32":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"33":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"34":{"tf":1.0}}},"a":{"df":1,"docs":{"140":{"tf":1.0}}},"b":{"df":1,"docs":{"140":{"tf":1.0}}},"c":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"196":{"tf":1.0},"208":{"tf":1.0},"339":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":2.0},"421":{"tf":1.0},"453":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":10,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.4142135623730951},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"486":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}},"3":{"3":{"8":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}}},"4":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"209":{"tf":1.0}}},"8":{"df":1,"docs":{"358":{"tf":1.0}}},"df":25,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.0},"122":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"31":{"tf":1.0},"329":{"tf":1.4142135623730951},"358":{"tf":2.449489742783178},"366":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":2.0},"406":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0}}},"4":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"36":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"37":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.0}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.0}}},"5":{"df":2,"docs":{"23":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"209":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"14":{"tf":1.0}}},"5":{"df":3,"docs":{"208":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":2.0}}},"8":{",":{"6":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"428":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":2.0},"438":{"tf":1.7320508075688772}}},"9":{",":{"2":{"1":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"206":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.0},"358":{"tf":2.449489742783178},"366":{"tf":1.0},"375":{"tf":1.4142135623730951},"384":{"tf":1.7320508075688772},"444":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951}},"·":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"42":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"45":{"tf":1.0}}},"2":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":6,"docs":{"126":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.0},"209":{"tf":2.0},"258":{"tf":1.0}}},"3":{",":{"3":{"3":{"3":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{",":{"6":{"0":{"0":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.4142135623730951},"222":{"tf":1.0},"23":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.4142135623730951},"400":{"tf":1.0},"41":{"tf":1.0}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"48":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"49":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"50":{"tf":1.0}}},"5":{".":{"1":{".":{"1":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"3":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}},"2":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"52":{"tf":1.0}}},"7":{"df":4,"docs":{"23":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"358":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"33":{"tf":1.0},"457":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"5":{",":{"3":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{",":{"6":{"6":{"7":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"206":{"tf":1.0},"23":{"tf":1.0},"384":{"tf":1.4142135623730951},"424":{"tf":1.0},"46":{"tf":1.0},"463":{"tf":1.0}}},"7":{"7":{",":{"0":{"0":{"0":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"179":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"23":{"tf":1.0},"400":{"tf":1.0},"421":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"8":{"0":{",":{"0":{"0":{"0":{"df":3,"docs":{"209":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"134":{"tf":1.0},"205":{"tf":1.7320508075688772},"209":{"tf":2.23606797749979}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"1":{",":{"8":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"102":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"222":{"tf":1.0},"23":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"56":{"tf":1.0}}},"9":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"59":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"183":{"tf":1.0}}},"1":{"b":{"1":{"7":{"1":{"b":{"b":{"1":{"5":{"8":{"df":0,"docs":{},"e":{"2":{"d":{"3":{"8":{"4":{"8":{"df":0,"docs":{},"f":{"a":{"2":{"3":{"a":{"9":{"df":0,"docs":{},"f":{"1":{"c":{"2":{"5":{"1":{"8":{"2":{"df":0,"docs":{},"f":{"b":{"8":{"df":0,"docs":{},"e":{"2":{"0":{"3":{"1":{"3":{"b":{"2":{"c":{"1":{"df":0,"docs":{},"e":{"b":{"4":{"9":{"2":{"1":{"9":{"d":{"a":{"7":{"a":{"7":{"0":{"c":{"df":0,"docs":{},"e":{"9":{"0":{"c":{"3":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"9":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"57":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}},"_":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"164":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"(":{"1":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{},"x":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{".":{"a":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"200":{"tf":1.7320508075688772},"204":{"tf":1.0},"312":{"tf":1.0},"331":{"tf":1.0},"72":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}}},"v":{"df":12,"docs":{"107":{"tf":1.0},"136":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"406":{"tf":1.0},"51":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":3.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"441":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"151":{"tf":1.0},"256":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"131":{"tf":1.0},"149":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.4142135623730951},"358":{"tf":3.0},"359":{"tf":1.0},"362":{"tf":1.0},"378":{"tf":1.0},"422":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"144":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"455":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"5":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"365":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"r":{"d":{"df":10,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"161":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"235":{"tf":1.0},"269":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"197":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.0},"206":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.4142135623730951},"444":{"tf":2.0},"455":{"tf":1.7320508075688772},"469":{"tf":1.0},"483":{"tf":1.4142135623730951},"487":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772}},"i":{"d":{"df":6,"docs":{"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":2,"docs":{"396":{"tf":1.0},"398":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"223":{"tf":1.0},"23":{"tf":1.0},"398":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.7320508075688772}}}}},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":14,"docs":{"209":{"tf":1.0},"236":{"tf":1.0},"254":{"tf":1.0},"276":{"tf":1.0},"375":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.0},"331":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"269":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"211":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"281":{"tf":1.0},"421":{"tf":1.0},"49":{"tf":1.0}}}},"v":{"df":8,"docs":{"178":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"24":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"310":{"tf":1.0},"398":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"12":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.4142135623730951},"374":{"tf":1.0},"384":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"377":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"222":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":1.0},"418":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"146":{"tf":1.0},"177":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"359":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951},"51":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"504":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"108":{"tf":1.0}}}}}}}},"df":6,"docs":{"130":{"tf":1.0},"14":{"tf":1.0},"205":{"tf":1.4142135623730951},"393":{"tf":1.0},"425":{"tf":1.0},"452":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"165":{"tf":1.0},"184":{"tf":1.4142135623730951},"24":{"tf":1.0},"250":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":2.0},"277":{"tf":1.0},"365":{"tf":1.0},"418":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":18,"docs":{"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"140":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"444":{"tf":1.0},"500":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"191":{"tf":1.0},"211":{"tf":1.0},"296":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"418":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"204":{"tf":1.0},"254":{"tf":1.0},"3":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"4":{"tf":1.0},"421":{"tf":2.23606797749979},"466":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"31":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"199":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"384":{"tf":1.0},"422":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"13":{"tf":1.0},"33":{"tf":1.0},"411":{"tf":1.0},"422":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"412":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"132":{"tf":1.0},"14":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"306":{"tf":1.0},"418":{"tf":1.0},"430":{"tf":1.4142135623730951},"435":{"tf":1.0},"449":{"tf":1.4142135623730951},"466":{"tf":1.0},"477":{"tf":1.0},"504":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"375":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1":{"tf":1.0},"421":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"382":{"tf":1.0},"398":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"422":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"196":{"tf":1.7320508075688772},"211":{"tf":1.0},"217":{"tf":1.0},"311":{"tf":1.0},"34":{"tf":1.0},"466":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"269":{"tf":1.0},"327":{"tf":1.0},"444":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"143":{"tf":1.0},"455":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":17,"docs":{"177":{"tf":1.0},"19":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"382":{"tf":1.0},"41":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"a":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{}},"l":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":5,"docs":{"101":{"tf":1.0},"125":{"tf":2.0},"161":{"tf":1.0},"214":{"tf":1.4142135623730951},"486":{"tf":1.0}}}}}}}}},"i":{"c":{"df":4,"docs":{"209":{"tf":4.242640687119285},"364":{"tf":1.0},"441":{"tf":2.0},"444":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"398":{"tf":1.0}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}}},"v":{"df":1,"docs":{"284":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"404":{"tf":1.0},"414":{"tf":1.0}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":46,"docs":{"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":2.8284271247461903},"164":{"tf":2.449489742783178},"165":{"tf":3.1622776601683795},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.0},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":2.0},"209":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"303":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"317":{"tf":1.0},"353":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":3.7416573867739413},"358":{"tf":3.4641016151377544},"363":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.7320508075688772},"421":{"tf":1.7320508075688772},"422":{"tf":1.0},"424":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.4142135623730951},"509":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":54,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"161":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":2.23606797749979},"222":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"255":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.7320508075688772},"343":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.0},"404":{"tf":1.4142135623730951},"411":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.23606797749979},"421":{"tf":1.0},"441":{"tf":1.7320508075688772},"444":{"tf":2.0},"45":{"tf":1.0},"460":{"tf":1.0},"466":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"3":{"tf":1.0},"421":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"441":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":23,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.23606797749979},"211":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"341":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.4142135623730951},"414":{"tf":1.0},"421":{"tf":1.0},"466":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"206":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"222":{"tf":1.0},"318":{"tf":1.0},"436":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":12,"docs":{"196":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"228":{"tf":1.0},"344":{"tf":1.0},"358":{"tf":1.7320508075688772},"384":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"178":{"tf":1.0},"27":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"423":{"tf":1.0},"78":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":25,"docs":{"104":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"164":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"312":{"tf":1.0},"339":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":2.8284271247461903},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"384":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"26":{"tf":1.0},"358":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"180":{"tf":1.0},"340":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"14":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"358":{"tf":1.7320508075688772},"386":{"tf":1.0},"388":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.7320508075688772},"498":{"tf":1.7320508075688772},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"421":{"tf":1.0},"422":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"179":{"tf":1.0}},"u":{"df":1,"docs":{"197":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}},"i":{"df":2,"docs":{"3":{"tf":1.0},"67":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"418":{"tf":1.0},"422":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"131":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"319":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"210":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"250":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"12":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"311":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"398":{"tf":1.0},"423":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"384":{"tf":1.0},"386":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"250":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"179":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.7320508075688772},"472":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"119":{"tf":1.0},"200":{"tf":1.7320508075688772},"209":{"tf":1.0},"281":{"tf":1.0},"358":{"tf":2.449489742783178},"384":{"tf":1.0},"445":{"tf":1.0},"500":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"358":{"tf":1.0},"406":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"#":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":20,"docs":{"140":{"tf":1.4142135623730951},"206":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"309":{"tf":1.4142135623730951},"319":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.4142135623730951},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"492":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":2,"docs":{"200":{"tf":1.0},"235":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"188":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"118":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}},"r":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":11,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.23606797749979},"183":{"tf":2.0},"188":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0}}},"df":14,"docs":{"145":{"tf":1.0},"226":{"tf":1.0},"252":{"tf":1.0},"283":{"tf":1.0},"315":{"tf":1.0},"358":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"449":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"34":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"422":{"tf":1.0},"43":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"205":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"472":{"tf":1.0},"488":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":4,"docs":{"140":{"tf":1.7320508075688772},"268":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"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":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"236":{"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":11,"docs":{"146":{"tf":1.0},"153":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"43":{"tf":1.4142135623730951},"6":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"177":{"tf":2.0},"179":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"303":{"tf":1.0},"310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"144":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.0},"158":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"146":{"tf":1.0},"384":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":1,"docs":{"500":{"tf":1.4142135623730951}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"177":{"tf":1.0},"398":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"223":{"tf":1.0},"372":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":2.0},"418":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"312":{"tf":1.0},"365":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"14":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.0},"258":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"459":{"tf":1.0},"500":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}}}}}},"df":3,"docs":{"122":{"tf":1.0},"33":{"tf":1.0},"486":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"u":{"d":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":56,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"172":{"tf":1.0},"196":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"377":{"tf":1.0},"380":{"tf":1.0},"391":{"tf":1.0},"399":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"493":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"255":{"tf":1.0},"382":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"n":{".":{"1":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.4142135623730951},"421":{"tf":1.0},"443":{"tf":1.0},"452":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"222":{"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":2,"docs":{"125":{"tf":1.0},"167":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"426":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"178":{"tf":1.0},"183":{"tf":1.0}}}}}}}}},"df":24,"docs":{"1":{"tf":1.7320508075688772},"14":{"tf":2.0},"175":{"tf":2.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"184":{"tf":2.6457513110645907},"19":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"310":{"tf":2.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"'":{"df":2,"docs":{"179":{"tf":1.0},"183":{"tf":1.0}}},"df":15,"docs":{"12":{"tf":1.0},"175":{"tf":2.6457513110645907},"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":2.23606797749979},"179":{"tf":2.449489742783178},"180":{"tf":2.0},"181":{"tf":2.23606797749979},"183":{"tf":2.23606797749979},"184":{"tf":2.6457513110645907},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"184":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.7320508075688772},"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":16,"docs":{"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"128":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":2.449489742783178},"206":{"tf":3.1622776601683795},"209":{"tf":3.1622776601683795},"217":{"tf":1.4142135623730951},"222":{"tf":2.449489742783178},"24":{"tf":1.0},"358":{"tf":1.0},"50":{"tf":2.23606797749979}},"e":{"d":{"(":{"a":{"df":1,"docs":{"209":{"tf":2.0}}},"b":{"df":1,"docs":{"209":{"tf":2.449489742783178}}},"c":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":22,"docs":{"106":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"210":{"tf":1.0},"269":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"384":{"tf":1.4142135623730951},"429":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"48":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":14,"docs":{"131":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"421":{"tf":1.0},"455":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"232":{"tf":1.4142135623730951},"398":{"tf":1.0},"407":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772}}}}},"r":{"df":2,"docs":{"284":{"tf":1.0},"398":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"184":{"tf":2.6457513110645907},"188":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"151":{"tf":1.7320508075688772},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"231":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"162":{"tf":1.0},"232":{"tf":1.0},"356":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"500":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"47":{"tf":2.0},"48":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"310":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"199":{"tf":2.0},"204":{"tf":1.0},"206":{"tf":1.0},"307":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}},"df":10,"docs":{"210":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"402":{"tf":1.0},"474":{"tf":1.0},"488":{"tf":1.0},"56":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"292":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":48,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"388":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.7320508075688772},"500":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"26":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"209":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.7320508075688772},"468":{"tf":1.0}}}},"df":4,"docs":{"11":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"99":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"421":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":35,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":2.0},"143":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.4142135623730951},"395":{"tf":1.0},"402":{"tf":1.0},"421":{"tf":1.4142135623730951},"425":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":2.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.4142135623730951},"358":{"tf":1.0},"374":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"421":{"tf":1.0}}},"df":8,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"358":{"tf":1.0}}},"y":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"140":{"tf":2.0},"204":{"tf":1.0},"222":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"406":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"147":{"tf":1.0},"218":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"158":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"355":{"tf":1.0},"500":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":2,"docs":{"235":{"tf":1.4142135623730951},"307":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"222":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":3.0},"321":{"tf":1.0},"322":{"tf":1.0},"382":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":1.0},"459":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"9":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":5,"docs":{"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"61":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"3":{"tf":1.0},"423":{"tf":1.0},"72":{"tf":2.23606797749979},"9":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"5":{"8":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":42,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"164":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"3":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.7320508075688772},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"375":{"tf":1.4142135623730951},"398":{"tf":1.0},"421":{"tf":1.0}}}}}},"i":{"c":{"df":6,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"377":{"tf":1.0}}},"df":6,"docs":{"204":{"tf":1.0},"219":{"tf":1.0},"247":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"54":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"139":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"126":{"tf":1.4142135623730951},"184":{"tf":1.0},"209":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"504":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.4142135623730951},"199":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.4142135623730951},"355":{"tf":1.0},"388":{"tf":1.0},"406":{"tf":1.0},"442":{"tf":1.0},"48":{"tf":1.0}}}}},"df":36,"docs":{"104":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.0},"209":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"235":{"tf":1.0},"255":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"310":{"tf":1.0},"359":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.7320508075688772},"384":{"tf":1.0},"386":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"486":{"tf":1.7320508075688772},"502":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"146":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":31,"docs":{"112":{"tf":1.0},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.4142135623730951},"421":{"tf":1.0},"43":{"tf":1.0},"466":{"tf":1.0},"492":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":1,"docs":{"398":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"130":{"tf":1.4142135623730951},"140":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":5.5677643628300215},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"308":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"384":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"384":{"tf":1.4142135623730951},"74":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"358":{"tf":3.1622776601683795},"501":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"165":{"tf":1.0},"199":{"tf":1.0},"250":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":11,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"193":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"129":{"tf":1.4142135623730951},"358":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}},"w":{"df":13,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"205":{"tf":1.4142135623730951},"329":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.0},"469":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"210":{"tf":1.0},"240":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"455":{"tf":1.4142135623730951},"459":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"206":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}},"df":5,"docs":{"161":{"tf":1.0},"250":{"tf":1.0},"296":{"tf":1.4142135623730951},"418":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":14,"docs":{"14":{"tf":1.0},"161":{"tf":1.7320508075688772},"176":{"tf":1.0},"179":{"tf":1.0},"268":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"398":{"tf":2.449489742783178},"416":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"444":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"169":{"tf":1.0},"180":{"tf":1.0},"313":{"tf":1.0},"355":{"tf":1.0},"396":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"119":{"tf":1.0},"179":{"tf":1.0},"250":{"tf":1.4142135623730951},"372":{"tf":1.0},"414":{"tf":1.0},"465":{"tf":1.0},"51":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"120":{"tf":1.0},"158":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"208":{"tf":1.0},"214":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"327":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"460":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"98":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"183":{"tf":1.0},"200":{"tf":1.4142135623730951},"215":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"199":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.23606797749979}}}}},"df":3,"docs":{"199":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":5,"docs":{"429":{"tf":2.0},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.4142135623730951},"83":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"166":{"tf":1.0},"47":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"171":{"tf":1.0},"500":{"tf":1.0},"95":{"tf":1.0}}}}},"d":{"df":4,"docs":{"208":{"tf":1.0},"23":{"tf":1.4142135623730951},"38":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"102":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"209":{"tf":3.0},"32":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.7320508075688772},"384":{"tf":1.0},"388":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"505":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"209":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"(":{"3":{"2":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}},"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":2,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"191":{"tf":1.0}}}},"b":{"df":8,"docs":{"176":{"tf":1.0},"179":{"tf":2.6457513110645907},"181":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"99":{"tf":1.4142135623730951}},"s":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"'":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"407":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"399":{"tf":1.0},"400":{"tf":1.0},"405":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"14":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":66,"docs":{"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":2.6457513110645907},"146":{"tf":5.196152422706632},"158":{"tf":1.7320508075688772},"161":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":3.1622776601683795},"208":{"tf":2.23606797749979},"209":{"tf":3.1622776601683795},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"363":{"tf":1.0},"382":{"tf":2.0},"384":{"tf":1.0},"39":{"tf":1.0},"399":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":2.449489742783178},"402":{"tf":1.0},"404":{"tf":2.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":2.0},"457":{"tf":2.0},"459":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":3.7416573867739413},"470":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"205":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":6,"docs":{"183":{"tf":1.0},"215":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"311":{"tf":1.0},"366":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"b":{"df":4,"docs":{"209":{"tf":3.0},"364":{"tf":1.0},"441":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"232":{"tf":1.4142135623730951},"235":{"tf":2.6457513110645907},"236":{"tf":1.0},"241":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":1,"docs":{"398":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"384":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"142":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"248":{"tf":1.7320508075688772},"250":{"tf":2.6457513110645907},"256":{"tf":2.23606797749979},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"119":{"tf":1.0}},"h":{"df":29,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"219":{"tf":1.0},"254":{"tf":1.0},"30":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"321":{"tf":1.0},"382":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"344":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.0},"355":{"tf":1.0}}}}},"df":8,"docs":{"209":{"tf":1.7320508075688772},"384":{"tf":1.0},"386":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"431":{"tf":1.0},"500":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"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":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"129":{"tf":1.4142135623730951},"384":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":13,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.0},"311":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.4142135623730951},"436":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":1.0},"506":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"187":{"tf":1.0},"268":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"217":{"tf":1.0},"220":{"tf":1.0}}}},"df":2,"docs":{"366":{"tf":1.0},"368":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"355":{"tf":2.449489742783178},"358":{"tf":5.5677643628300215},"362":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"146":{"tf":1.0},"501":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"215":{"tf":1.0},"235":{"tf":1.4142135623730951},"277":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"425":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"5":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"2":{"2":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"194":{"tf":1.0},"408":{"tf":1.0},"449":{"tf":1.0},"455":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"159":{"tf":1.0},"415":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":2.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"208":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"208":{"tf":3.1622776601683795},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}},"df":18,"docs":{"204":{"tf":3.0},"205":{"tf":3.4641016151377544},"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":2.23606797749979},"364":{"tf":1.7320508075688772},"365":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"129":{"tf":1.0},"296":{"tf":1.0},"400":{"tf":1.0},"486":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"402":{"tf":1.0},"481":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"394":{"tf":1.7320508075688772},"395":{"tf":1.4142135623730951},"398":{"tf":2.8284271247461903}}}},"y":{"df":2,"docs":{"186":{"tf":1.0},"200":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"398":{"tf":1.0},"421":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"253":{"tf":1.0},"254":{"tf":2.0},"33":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"355":{"tf":1.0},"358":{"tf":4.47213595499958},"384":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"51":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"s":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"51":{"tf":1.0},"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":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"256":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":7,"docs":{"309":{"tf":1.0},"421":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"401":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":46,"docs":{"102":{"tf":1.7320508075688772},"128":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.23606797749979},"209":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.7320508075688772},"281":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"355":{"tf":1.7320508075688772},"358":{"tf":2.449489742783178},"362":{"tf":1.4142135623730951},"382":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.7320508075688772},"460":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"df":2,"docs":{"206":{"tf":1.0},"468":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"206":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":1.0},"358":{"tf":1.0},"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"140":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"140":{"tf":3.7416573867739413},"23":{"tf":2.0},"235":{"tf":2.6457513110645907},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"307":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":16,"docs":{"141":{"tf":2.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"146":{"tf":2.8284271247461903},"147":{"tf":2.0},"148":{"tf":2.449489742783178},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"158":{"tf":2.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"200":{"tf":1.0}}}},"c":{"df":6,"docs":{"266":{"tf":1.0},"313":{"tf":1.0},"327":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"179":{"tf":1.0},"204":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"197":{"tf":1.0},"201":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"386":{"tf":1.0},"98":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"473":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"101":{"tf":1.0},"171":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"296":{"tf":1.0},"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":45,"docs":{"106":{"tf":1.0},"112":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"255":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"464":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.4142135623730951},"58":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"382":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"164":{"tf":1.0},"415":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"129":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"358":{"tf":1.0},"361":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"506":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"130":{"tf":1.0},"204":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":2.0},"233":{"tf":1.0},"235":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"284":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"418":{"tf":1.0},"47":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"194":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"18":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0}}},"df":129,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":3.0},"149":{"tf":1.7320508075688772},"158":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":2.23606797749979},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.7320508075688772},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":2.0},"201":{"tf":1.0},"204":{"tf":4.47213595499958},"205":{"tf":2.6457513110645907},"206":{"tf":2.449489742783178},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":3.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.7320508075688772},"250":{"tf":3.1622776601683795},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":2.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":2.0},"309":{"tf":2.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.449489742783178},"312":{"tf":3.1622776601683795},"313":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"366":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":1.7320508075688772},"386":{"tf":1.0},"421":{"tf":1.0},"436":{"tf":1.4142135623730951},"442":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.7320508075688772},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.7320508075688772},"486":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":2.23606797749979},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"365":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"83":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"205":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":106,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"119":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"319":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":2.0},"385":{"tf":1.0},"386":{"tf":1.0},"400":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":2.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.7320508075688772},"468":{"tf":1.4142135623730951},"47":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"492":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":2.0},"504":{"tf":1.0},"506":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"235":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"220":{"tf":1.0},"222":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"427":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"209":{"tf":1.7320508075688772},"441":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"207":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":16,"docs":{"111":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"382":{"tf":1.0},"408":{"tf":1.4142135623730951},"43":{"tf":1.0},"466":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"472":{"tf":2.0},"49":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"358":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"384":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"384":{"tf":2.449489742783178}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"12":{"tf":1.0},"222":{"tf":1.0},"331":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"164":{"tf":1.0},"194":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"143":{"tf":1.4142135623730951},"253":{"tf":1.0},"310":{"tf":1.0},"372":{"tf":1.0},"421":{"tf":1.0},"48":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"129":{"tf":2.0}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"106":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"127":{"tf":2.6457513110645907},"128":{"tf":2.0},"129":{"tf":4.47213595499958},"130":{"tf":2.0},"139":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"122":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}}}}}}}}}}},"i":{"df":1,"docs":{"295":{"tf":1.0}},"r":{"c":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{},"s":{"[":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"179":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"241":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"470":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":3.605551275463989},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"498":{"tf":1.0},"502":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"31":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"179":{"tf":1.0},"187":{"tf":1.0}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"161":{"tf":1.0},"391":{"tf":1.0}}},"r":{"df":12,"docs":{"193":{"tf":1.0},"211":{"tf":1.0},"266":{"tf":1.0},"360":{"tf":1.0},"398":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"442":{"tf":1.0},"472":{"tf":1.0},"502":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.4142135623730951},"429":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":33,"docs":{"130":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"171":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"263":{"tf":1.0},"318":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":2.449489742783178},"386":{"tf":1.0},"388":{"tf":1.0},"456":{"tf":1.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.7320508075688772},"60":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"500":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"183":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"129":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"327":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"410":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"32":{"tf":1.0}}},"df":40,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":2.23606797749979},"126":{"tf":1.0},"127":{"tf":1.0},"134":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"184":{"tf":1.0},"23":{"tf":1.4142135623730951},"270":{"tf":1.0},"297":{"tf":1.0},"33":{"tf":1.7320508075688772},"341":{"tf":1.7320508075688772},"358":{"tf":1.7320508075688772},"360":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0},"385":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.0},"435":{"tf":1.0},"465":{"tf":1.7320508075688772},"466":{"tf":2.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.449489742783178},"470":{"tf":2.449489742783178},"471":{"tf":1.0},"472":{"tf":2.23606797749979},"473":{"tf":1.0},"49":{"tf":1.0},"498":{"tf":1.0},"64":{"tf":2.23606797749979},"7":{"tf":2.0},"80":{"tf":1.0},"9":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"308":{"tf":1.4142135623730951},"465":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"l":{"d":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":19,"docs":{"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":3.872983346207417},"233":{"tf":2.0},"235":{"tf":3.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":27,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":2.0},"265":{"tf":2.449489742783178},"266":{"tf":2.449489742783178},"268":{"tf":2.0},"269":{"tf":2.6457513110645907},"270":{"tf":1.0},"272":{"tf":2.449489742783178},"284":{"tf":1.4142135623730951},"3":{"tf":1.0},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"38":{"tf":1.0},"398":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"277":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"3":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.4142135623730951},"406":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"130":{"tf":1.0},"421":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"328":{"tf":1.0}}}}},"t":{"df":6,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"395":{"tf":1.0},"407":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"204":{"tf":1.0},"268":{"tf":1.4142135623730951},"325":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"183":{"tf":1.0},"305":{"tf":1.4142135623730951},"358":{"tf":1.0},"382":{"tf":1.0},"418":{"tf":1.0},"442":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":12,"docs":{"179":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"268":{"tf":1.0},"3":{"tf":1.0},"398":{"tf":1.0},"439":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":3,"docs":{"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"<":{"df":0,"docs":{},"u":{"3":{"2":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"*":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{")":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"343":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":12,"docs":{"188":{"tf":1.0},"205":{"tf":1.0},"295":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.0},"382":{"tf":1.0},"424":{"tf":1.0},"468":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"382":{"tf":1.0}}}}}}},"t":{"df":85,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"141":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":2.0},"196":{"tf":1.0},"20":{"tf":1.4142135623730951},"211":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"252":{"tf":1.7320508075688772},"257":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"275":{"tf":1.0},"288":{"tf":1.4142135623730951},"292":{"tf":1.0},"299":{"tf":1.0},"303":{"tf":1.4142135623730951},"316":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.4142135623730951},"333":{"tf":1.0},"336":{"tf":1.0},"339":{"tf":1.4142135623730951},"340":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.4142135623730951},"355":{"tf":1.0},"380":{"tf":1.4142135623730951},"387":{"tf":1.0},"390":{"tf":1.0},"399":{"tf":1.4142135623730951},"409":{"tf":1.0},"412":{"tf":1.0},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.4142135623730951},"466":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}},"t":{"df":3,"docs":{"232":{"tf":1.4142135623730951},"241":{"tf":1.0},"446":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"161":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.4142135623730951},"187":{"tf":1.0},"358":{"tf":2.0},"500":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":2,"docs":{"305":{"tf":1.0},"401":{"tf":1.0}}}}}},"t":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"127":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"341":{"tf":1.0},"455":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"x":{"df":12,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"22":{"tf":1.0},"312":{"tf":1.4142135623730951},"34":{"tf":1.0},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"444":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"408":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"131":{"tf":1.0},"149":{"tf":1.0},"312":{"tf":1.7320508075688772},"344":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0}}},"df":1,"docs":{"252":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"183":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"310":{"tf":1.4142135623730951}}},"s":{"df":3,"docs":{"177":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"145":{"tf":1.0},"25":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"128":{"tf":1.0},"180":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"305":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":2.0},"50":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"&":{"[":{"4":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":1,"docs":{"343":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"125":{"tf":1.7320508075688772},"206":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.0}}}}},"v":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"455":{"tf":1.0},"496":{"tf":1.7320508075688772},"498":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"16":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"252":{"tf":1.0},"285":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"398":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"208":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"11":{"tf":1.0},"146":{"tf":1.0},"276":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"132":{"tf":1.0},"212":{"tf":1.4142135623730951},"421":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.0}}}},"i":{"d":{"df":2,"docs":{"313":{"tf":1.0},"366":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"171":{"tf":1.4142135623730951},"184":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"130":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"209":{"tf":1.0},"223":{"tf":1.0},"266":{"tf":1.4142135623730951},"310":{"tf":1.0},"318":{"tf":1.0},"364":{"tf":1.0},"375":{"tf":1.0},"429":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":3.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"431":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"281":{"tf":1.0},"283":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"429":{"tf":2.449489742783178},"43":{"tf":1.0},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"433":{"tf":2.0},"435":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":2.23606797749979}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"250":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"378":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"143":{"tf":1.4142135623730951},"199":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"340":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"130":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"502":{"tf":1.0},"58":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"250":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"240":{"tf":1.0},"375":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":24,"docs":{"10":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"140":{"tf":1.0},"146":{"tf":1.0},"174":{"tf":1.0},"26":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.0},"359":{"tf":1.4142135623730951},"375":{"tf":1.0},"384":{"tf":1.4142135623730951},"398":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.0},"444":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"147":{"tf":1.0},"254":{"tf":1.4142135623730951},"294":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.0},"504":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"153":{"tf":1.0},"258":{"tf":1.0},"3":{"tf":1.0},"359":{"tf":1.0},"469":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"486":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}},"t":{"df":4,"docs":{"314":{"tf":1.0},"37":{"tf":1.0},"371":{"tf":1.0},"455":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"178":{"tf":1.0},"269":{"tf":1.0},"358":{"tf":1.0},"42":{"tf":1.4142135623730951},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":12,"docs":{"125":{"tf":1.0},"134":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"295":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"455":{"tf":1.0},"72":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"418":{"tf":1.0},"497":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"224":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":3.1622776601683795},"382":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":12,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.0},"179":{"tf":1.4142135623730951},"204":{"tf":1.0},"297":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.4142135623730951},"48":{"tf":1.0},"488":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":1,"docs":{"366":{"tf":1.0}}}}},"u":{"df":8,"docs":{"22":{"tf":1.0},"237":{"tf":1.0},"295":{"tf":1.0},"325":{"tf":1.0},"355":{"tf":1.0},"383":{"tf":1.4142135623730951},"421":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"175":{"tf":3.1622776601683795},"176":{"tf":1.7320508075688772},"177":{"tf":2.449489742783178},"178":{"tf":2.449489742783178},"179":{"tf":1.7320508075688772},"180":{"tf":2.23606797749979},"181":{"tf":2.0},"183":{"tf":3.4641016151377544},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":2.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"199":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":1.0},"30":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"209":{"tf":1.7320508075688772},"23":{"tf":1.0},"30":{"tf":1.0},"327":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"151":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"256":{"tf":1.0},"294":{"tf":1.0},"355":{"tf":1.0},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":2.0},"442":{"tf":1.0},"444":{"tf":1.7320508075688772},"484":{"tf":1.0},"500":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"363":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}},"t":{"df":4,"docs":{"23":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"486":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"452":{"tf":1.0},"51":{"tf":1.0}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"161":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"307":{"tf":1.0},"440":{"tf":1.7320508075688772},"441":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"170":{"tf":1.0}}}}},"n":{"c":{"df":2,"docs":{"162":{"tf":1.0},"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"358":{"tf":2.0},"362":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"204":{"tf":1.0},"209":{"tf":1.4142135623730951}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"399":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"128":{"tf":2.0},"131":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}}},"df":41,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":2.6457513110645907},"179":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":2.0},"204":{"tf":3.3166247903554},"205":{"tf":3.1622776601683795},"206":{"tf":4.123105625617661},"207":{"tf":1.7320508075688772},"208":{"tf":3.0},"209":{"tf":5.656854249492381},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.7320508075688772},"220":{"tf":1.0},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"231":{"tf":1.0},"266":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":2.449489742783178},"314":{"tf":1.0},"365":{"tf":2.0},"371":{"tf":2.0},"372":{"tf":2.23606797749979},"374":{"tf":2.23606797749979},"375":{"tf":1.0},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"421":{"tf":3.0},"422":{"tf":1.0},"462":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"128":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":2.0},"222":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"131":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"206":{"tf":1.0},"209":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"180":{"tf":1.0}}},"df":8,"docs":{"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":1.0},"195":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"208":{"tf":2.449489742783178},"372":{"tf":1.0},"373":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":40,"docs":{"196":{"tf":2.23606797749979},"197":{"tf":1.0},"204":{"tf":6.244997998398398},"205":{"tf":4.58257569495584},"206":{"tf":4.0},"207":{"tf":3.3166247903554},"208":{"tf":3.1622776601683795},"209":{"tf":2.8284271247461903},"211":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":2.6457513110645907},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"223":{"tf":1.0},"227":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.0},"318":{"tf":1.0},"364":{"tf":1.7320508075688772},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"394":{"tf":1.7320508075688772},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":3.4641016151377544},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.0},"421":{"tf":2.6457513110645907},"422":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"466":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"165":{"tf":1.0},"502":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"112":{"tf":1.0},"375":{"tf":1.0},"455":{"tf":1.0},"474":{"tf":1.0},"488":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"167":{"tf":1.0},"309":{"tf":1.0},"459":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"418":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.0},"153":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"12":{"tf":1.0},"188":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"329":{"tf":1.0},"344":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"465":{"tf":2.0},"466":{"tf":1.0},"469":{"tf":1.0},"481":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"358":{"tf":3.3166247903554},"362":{"tf":1.4142135623730951},"421":{"tf":1.0}},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"471":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"205":{"tf":1.0},"238":{"tf":1.0},"455":{"tf":1.0},"465":{"tf":1.0},"472":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"296":{"tf":1.0},"72":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"296":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"126":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"284":{"tf":1.0},"29":{"tf":1.0},"358":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"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":{}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"204":{"tf":2.6457513110645907},"206":{"tf":1.7320508075688772},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"232":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":8,"docs":{"130":{"tf":1.0},"14":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"25":{"tf":1.0},"407":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"199":{"tf":1.0},"204":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":2.6457513110645907},"307":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"207":{"tf":1.4142135623730951},"398":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"486":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}},"u":{"df":2,"docs":{"204":{"tf":1.0},"255":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"102":{"tf":1.0},"13":{"tf":1.7320508075688772},"22":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":67,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":2.449489742783178},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"179":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.449489742783178},"209":{"tf":2.0},"222":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.4142135623730951},"284":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"310":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"393":{"tf":1.4142135623730951},"406":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"429":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.7320508075688772},"469":{"tf":1.0},"477":{"tf":1.0},"484":{"tf":1.0},"488":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":2.23606797749979},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"s":{"df":1,"docs":{"422":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"372":{"tf":1.0}}}}}},"df":7,"docs":{"205":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"421":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"161":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"179":{"tf":1.0},"54":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"130":{"tf":1.0},"58":{"tf":1.0}}}}},"d":{"a":{"df":4,"docs":{"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"415":{"tf":1.0}}},"df":4,"docs":{"325":{"tf":1.0},"327":{"tf":2.449489742783178},"328":{"tf":1.7320508075688772},"329":{"tf":1.0}}},"o":{"df":1,"docs":{"70":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":31,"docs":{"121":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":2.0},"129":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":2.0},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"254":{"tf":1.0},"281":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.4142135623730951},"358":{"tf":4.795831523312719},"362":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":2.23606797749979},"436":{"tf":1.4142135623730951},"44":{"tf":2.0},"470":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":2.0},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":6,"docs":{"179":{"tf":1.4142135623730951},"199":{"tf":1.0},"208":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"498":{"tf":1.0}}}},"df":2,"docs":{"209":{"tf":1.4142135623730951},"372":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"209":{"tf":1.0},"358":{"tf":2.0},"401":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"314":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"284":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"d":{"df":8,"docs":{"128":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.4142135623730951},"396":{"tf":1.0},"455":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"119":{"tf":1.0},"165":{"tf":1.0}}}},"o":{"d":{"df":13,"docs":{"102":{"tf":2.0},"119":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"202":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"134":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":2.0},"214":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"355":{"tf":1.0},"372":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"177":{"tf":1.0},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.4142135623730951},"325":{"tf":1.0},"340":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"256":{"tf":1.0},"277":{"tf":1.0},"384":{"tf":2.23606797749979},"486":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"+":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"178":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"178":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":2,"docs":{"178":{"tf":2.0},"183":{"tf":1.0}},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"146":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"164":{"tf":1.0},"208":{"tf":1.7320508075688772},"223":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"32":{"tf":1.4142135623730951},"340":{"tf":1.0},"370":{"tf":1.0},"44":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"500":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"7":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"412":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"11":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"444":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":8,"docs":{"440":{"tf":1.7320508075688772},"441":{"tf":3.1622776601683795},"442":{"tf":2.23606797749979},"444":{"tf":4.898979485566356},"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.7320508075688772},"452":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"473":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"185":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"375":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.7320508075688772},"465":{"tf":2.0},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.4142135623730951},"312":{"tf":1.0},"39":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"204":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772}}}}},"t":{"df":4,"docs":{"205":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"421":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"469":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"250":{"tf":1.4142135623730951},"27":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"465":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"0":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"1":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":2.0}}},"df":0,"docs":{}},"df":33,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"183":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"281":{"tf":1.0},"3":{"tf":2.6457513110645907},"312":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":3.3166247903554},"470":{"tf":1.0},"472":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":2.6457513110645907},"7":{"tf":2.449489742783178},"8":{"tf":2.0},"9":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":7,"docs":{"130":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"393":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"455":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"281":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"473":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":10,"docs":{"4":{"tf":1.0},"444":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":2.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"85":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"205":{"tf":1.0},"384":{"tf":1.7320508075688772},"421":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":26,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.7320508075688772},"307":{"tf":1.0},"316":{"tf":1.0},"358":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.4142135623730951},"466":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"248":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":2.0},"107":{"tf":1.0},"47":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":23,"docs":{"13":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"172":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.4142135623730951},"24":{"tf":1.0},"284":{"tf":1.0},"341":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"498":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":16,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"153":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"238":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"421":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.0},"56":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"223":{"tf":1.0},"72":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"196":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"25":{"tf":1.4142135623730951},"296":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"277":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"200":{"tf":1.0},"227":{"tf":1.0},"254":{"tf":1.4142135623730951},"284":{"tf":1.0},"355":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":2.0},"469":{"tf":1.0},"48":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.0},"128":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":2,"docs":{"167":{"tf":1.0},"295":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":44,"docs":{"117":{"tf":1.4142135623730951},"123":{"tf":1.0},"144":{"tf":1.0},"166":{"tf":1.4142135623730951},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"192":{"tf":1.7320508075688772},"202":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":1.0},"250":{"tf":1.4142135623730951},"266":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"342":{"tf":1.0},"366":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"436":{"tf":1.0},"460":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"367":{"tf":1.0}}}},"c":{"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"t":{"df":13,"docs":{"141":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"148":{"tf":2.23606797749979},"149":{"tf":2.0},"151":{"tf":1.0},"153":{"tf":1.0},"248":{"tf":2.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.7320508075688772},"256":{"tf":1.0},"258":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"384":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"104":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"205":{"tf":1.4142135623730951},"219":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"415":{"tf":1.0},"43":{"tf":1.0},"460":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"504":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"179":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"312":{"tf":1.0},"360":{"tf":1.4142135623730951},"501":{"tf":1.0}},"i":{"df":3,"docs":{"277":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":2.449489742783178},"110":{"tf":1.0},"47":{"tf":1.4142135623730951},"51":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":2.6457513110645907}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"m":{"a":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":50,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"322":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"380":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"444":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"509":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"186":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.0},"405":{"tf":1.0},"436":{"tf":1.4142135623730951},"498":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"164":{"tf":1.0},"171":{"tf":1.4142135623730951},"256":{"tf":1.0},"457":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"444":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"106":{"tf":1.0},"205":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}},"v":{"df":5,"docs":{"142":{"tf":1.0},"158":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"277":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}},"i":{"df":6,"docs":{"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"249":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"418":{"tf":1.0},"422":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"131":{"tf":1.0},"174":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"384":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"416":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.4142135623730951},"452":{"tf":1.0},"462":{"tf":1.0},"479":{"tf":1.0},"5":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"256":{"tf":1.0},"382":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"206":{"tf":3.0},"277":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"462":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"140":{"tf":2.6457513110645907},"466":{"tf":1.0},"470":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"305":{"tf":1.0},"35":{"tf":1.0},"472":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"206":{"tf":1.0},"249":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"418":{"tf":1.0},"422":{"tf":1.0},"52":{"tf":1.0}}},"s":{"df":2,"docs":{"3":{"tf":1.0},"5":{"tf":1.0}}},"t":{"df":2,"docs":{"395":{"tf":1.0},"398":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"158":{"tf":1.0},"205":{"tf":1.0},"35":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"419":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"204":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"425":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"487":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"34":{"tf":1.0}}},"df":11,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"26":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"358":{"tf":1.0},"417":{"tf":1.0},"45":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":9,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"132":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"358":{"tf":2.6457513110645907},"384":{"tf":2.0},"385":{"tf":1.0},"421":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"481":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"250":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0},"382":{"tf":1.4142135623730951},"386":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":19,"docs":{"119":{"tf":1.0},"153":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"235":{"tf":1.0},"258":{"tf":1.0},"308":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"406":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":36,"docs":{"11":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":2.0},"193":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.7320508075688772},"222":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.7320508075688772},"310":{"tf":1.4142135623730951},"312":{"tf":2.449489742783178},"313":{"tf":1.0},"328":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"419":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":1.0},"8":{"tf":2.8284271247461903},"9":{"tf":2.8284271247461903}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"208":{"tf":1.0},"375":{"tf":1.0}},"i":{"df":1,"docs":{"372":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":8,"docs":{"102":{"tf":1.0},"127":{"tf":1.0},"256":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"147":{"tf":1.0},"204":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"308":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"372":{"tf":1.4142135623730951},"421":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":59,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"166":{"tf":1.4142135623730951},"175":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.4142135623730951},"248":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"275":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"314":{"tf":1.0},"323":{"tf":1.0},"331":{"tf":1.0},"339":{"tf":1.0},"344":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"385":{"tf":1.0},"399":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.4142135623730951},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"463":{"tf":1.0},"473":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"501":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"452":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"312":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}},"n":{"df":1,"docs":{"417":{"tf":1.0}}},"r":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"129":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"110":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"204":{"tf":1.0},"256":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"205":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"469":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"146":{"tf":1.0},"165":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.449489742783178},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"311":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"417":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"417":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"296":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":15,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.4142135623730951},"3":{"tf":1.0},"364":{"tf":1.7320508075688772},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"422":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":9,"docs":{"178":{"tf":1.4142135623730951},"179":{"tf":2.0},"204":{"tf":1.0},"235":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"318":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0}}}},"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":42,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":2.6457513110645907},"222":{"tf":1.0},"232":{"tf":1.7320508075688772},"24":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"325":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"37":{"tf":1.0},"384":{"tf":1.4142135623730951},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"42":{"tf":1.0},"421":{"tf":1.7320508075688772},"442":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.0},"486":{"tf":1.4142135623730951},"50":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"178":{"tf":1.0},"215":{"tf":1.0},"386":{"tf":1.0},"421":{"tf":1.4142135623730951},"498":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"177":{"tf":1.0}},"i":{"df":5,"docs":{"129":{"tf":1.0},"140":{"tf":1.4142135623730951},"277":{"tf":1.0},"488":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"422":{"tf":1.0},"505":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"143":{"tf":1.0},"254":{"tf":1.0},"295":{"tf":1.0},"386":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":12,"docs":{"14":{"tf":1.4142135623730951},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.0},"244":{"tf":1.0},"3":{"tf":1.0},"396":{"tf":1.0},"424":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":26,"docs":{"115":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"313":{"tf":1.0},"449":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"48":{"tf":1.0},"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":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}},"g":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"424":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.8284271247461903},"208":{"tf":1.0},"209":{"tf":1.0},"285":{"tf":1.0},"398":{"tf":1.4142135623730951},"418":{"tf":1.0},"465":{"tf":1.4142135623730951},"47":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":15,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"166":{"tf":1.4142135623730951},"18":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"311":{"tf":1.0},"355":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"127":{"tf":1.0},"442":{"tf":1.0},"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"179":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"205":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"232":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"241":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"358":{"tf":1.0},"418":{"tf":1.0},"47":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"58":{"tf":1.0}}}}}}},"m":{"b":{"df":1,"docs":{"128":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"47":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"312":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"178":{"tf":1.0},"422":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":4,"docs":{"43":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"444":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"209":{"tf":2.0},"358":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"119":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"146":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"194":{"tf":1.0},"204":{"tf":1.0},"45":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"205":{"tf":1.0},"217":{"tf":1.0},"492":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":19,"docs":{"102":{"tf":2.0},"104":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"23":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":2.0},"358":{"tf":2.0},"47":{"tf":1.4142135623730951},"486":{"tf":2.23606797749979},"51":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"292":{"tf":2.0},"293":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"295":{"tf":2.0},"296":{"tf":2.449489742783178},"297":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"296":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"24":{"tf":1.0},"251":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"3":{"tf":1.0},"384":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"106":{"tf":1.4142135623730951},"125":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.6457513110645907},"208":{"tf":2.449489742783178},"209":{"tf":4.898979485566356},"341":{"tf":1.0},"373":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.4142135623730951},"436":{"tf":1.0},"442":{"tf":1.0},"491":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"311":{"tf":1.0},"398":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"253":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"284":{"tf":1.0},"339":{"tf":1.4142135623730951},"349":{"tf":1.0},"406":{"tf":1.0},"497":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"188":{"tf":1.0},"202":{"tf":1.0},"328":{"tf":1.4142135623730951},"337":{"tf":1.0},"419":{"tf":1.0},"60":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"19":{"tf":1.0},"22":{"tf":1.0},"423":{"tf":1.0},"433":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"126":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"233":{"tf":1.0},"262":{"tf":1.0},"442":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":48,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"412":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"484":{"tf":1.4142135623730951},"488":{"tf":1.0},"498":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":15,"docs":{"122":{"tf":1.0},"157":{"tf":1.0},"206":{"tf":2.0},"256":{"tf":1.0},"262":{"tf":1.0},"313":{"tf":1.4142135623730951},"35":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.4142135623730951},"501":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"430":{"tf":1.0},"98":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"151":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.4142135623730951},"256":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"406":{"tf":1.4142135623730951},"423":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"102":{"tf":1.0},"104":{"tf":2.6457513110645907},"129":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":1.0},"384":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"164":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"161":{"tf":1.4142135623730951},"164":{"tf":1.0},"176":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":3,"docs":{"179":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"'":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":4.123105625617661},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":23,"docs":{"129":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"206":{"tf":3.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"222":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.0},"340":{"tf":1.0},"358":{"tf":2.0},"362":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"422":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"48":{"tf":1.4142135623730951},"498":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"206":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":2,"docs":{"312":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"502":{"tf":1.0},"51":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"51":{"tf":2.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"120":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"134":{"tf":1.0}}}}}},"c":{"2":{"0":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"7":{"2":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":78,"docs":{"1":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"152":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"287":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"303":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"323":{"tf":1.4142135623730951},"333":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.4142135623730951},"346":{"tf":1.0},"348":{"tf":1.0},"380":{"tf":1.4142135623730951},"387":{"tf":1.0},"389":{"tf":1.0},"399":{"tf":1.4142135623730951},"409":{"tf":1.0},"411":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.4142135623730951},"458":{"tf":1.0},"460":{"tf":1.0},"463":{"tf":1.4142135623730951},"475":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"130":{"tf":1.0},"143":{"tf":1.0},"165":{"tf":1.0},"358":{"tf":4.242640687119285},"502":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"422":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"309":{"tf":1.0},"34":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.0},"448":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"308":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"421":{"tf":1.0},"423":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"t":{"c":{"df":5,"docs":{"250":{"tf":1.0},"313":{"tf":1.0},"384":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"179":{"tf":1.0}}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.0},"66":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"247":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"266":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"368":{"tf":1.0}}}}},"n":{"df":14,"docs":{"127":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":2.6457513110645907},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"429":{"tf":1.0},"473":{"tf":1.4142135623730951},"48":{"tf":1.0},"506":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"120":{"tf":1.0},"122":{"tf":1.0}}}},"t":{"df":4,"docs":{"140":{"tf":1.0},"311":{"tf":1.0},"444":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951}},"u":{"df":5,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.4142135623730951},"402":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"250":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"145":{"tf":1.0},"509":{"tf":1.0}}}}}}},"m":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":2.23606797749979},"179":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"189":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"310":{"tf":1.0},"54":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"146":{"tf":1.0},"366":{"tf":1.0},"382":{"tf":1.0},"415":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":35,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"112":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"235":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"321":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.4142135623730951},"364":{"tf":1.0},"375":{"tf":1.7320508075688772},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"421":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"32":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.7320508075688772},"429":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"183":{"tf":1.4142135623730951},"191":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"358":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"160":{"tf":1.0},"161":{"tf":1.0},"166":{"tf":1.0},"305":{"tf":1.4142135623730951},"358":{"tf":3.7416573867739413},"401":{"tf":1.7320508075688772},"408":{"tf":1.0},"413":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"165":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":47,"docs":{"151":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.7320508075688772},"179":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":2.449489742783178},"209":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"242":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":2.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"391":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"465":{"tf":1.0},"498":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"191":{"tf":1.0},"192":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"312":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"343":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.4142135623730951},"410":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"504":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"207":{"tf":1.0},"232":{"tf":1.0},"277":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"111":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"287":{"tf":1.0},"308":{"tf":1.0},"412":{"tf":1.0},"444":{"tf":1.0},"70":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"423":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"204":{"tf":1.0},"206":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"205":{"tf":1.0},"325":{"tf":1.0},"343":{"tf":1.0},"486":{"tf":1.4142135623730951}}}},"n":{"df":67,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"175":{"tf":1.0},"182":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0},"280":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"403":{"tf":1.0},"41":{"tf":1.4142135623730951},"416":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"431":{"tf":1.0},"440":{"tf":1.0},"444":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"130":{"tf":1.0},"223":{"tf":1.0},"276":{"tf":1.0},"283":{"tf":1.0},"32":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"21":{"tf":1.0},"306":{"tf":1.0},"41":{"tf":1.0},"465":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":1,"docs":{"424":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"12":{"tf":1.0},"372":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"161":{"tf":1.0},"164":{"tf":3.0},"165":{"tf":1.4142135623730951},"486":{"tf":1.0}}}},"s":{"df":13,"docs":{"179":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"316":{"tf":1.0},"359":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"457":{"tf":1.0},"469":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"265":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"358":{"tf":1.7320508075688772},"425":{"tf":1.0},"430":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"*":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"4":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"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":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"362":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"362":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":4,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"249":{"tf":1.0},"423":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":1.0},"184":{"tf":1.0},"289":{"tf":1.0},"411":{"tf":1.0},"425":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":1,"docs":{"187":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"161":{"tf":1.0},"212":{"tf":1.0},"296":{"tf":1.0},"398":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"343":{"tf":1.0}}}},"df":8,"docs":{"119":{"tf":1.0},"250":{"tf":1.4142135623730951},"358":{"tf":1.0},"362":{"tf":1.4142135623730951},"448":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"179":{"tf":1.0},"183":{"tf":1.0},"374":{"tf":1.4142135623730951},"423":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.7320508075688772},"130":{"tf":1.0},"181":{"tf":1.0},"404":{"tf":1.4142135623730951},"444":{"tf":1.0},"455":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.4641016151377544},"85":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":2.0}},"i":{"c":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"404":{"tf":1.7320508075688772},"414":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"f":{"+":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"201":{"tf":1.4142135623730951},"206":{"tf":1.0},"27":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"232":{"tf":1.0},"312":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":12,"docs":{"208":{"tf":2.6457513110645907},"222":{"tf":1.0},"312":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"126":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"358":{"tf":3.1622776601683795},"98":{"tf":1.0}}}}},"r":{"df":4,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"417":{"tf":1.4142135623730951},"422":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"126":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"127":{"tf":1.4142135623730951},"208":{"tf":1.0},"370":{"tf":1.0}}},"s":{"df":3,"docs":{"104":{"tf":1.0},"384":{"tf":2.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"157":{"tf":1.0},"178":{"tf":1.0},"262":{"tf":1.0},"487":{"tf":1.0},"98":{"tf":1.0}}}},"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":4,"docs":{"179":{"tf":1.0},"200":{"tf":1.0},"311":{"tf":1.0},"398":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"201":{"tf":1.0},"311":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"307":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"214":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"122":{"tf":1.0},"406":{"tf":1.0}}}}}}},"df":1,"docs":{"372":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"426":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"255":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"136":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"211":{"tf":1.0},"313":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"502":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"207":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.0},"268":{"tf":1.0},"442":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}},"df":2,"docs":{"398":{"tf":1.0},"442":{"tf":1.0}},"l":{"df":4,"docs":{"446":{"tf":1.0},"452":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"177":{"tf":1.0},"179":{"tf":1.0},"220":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"0":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"9":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"4":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"df":1,"docs":{"266":{"tf":1.0}}},"df":27,"docs":{"0":{"tf":1.0},"202":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":2.0},"273":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.0},"337":{"tf":1.0},"419":{"tf":1.0},"443":{"tf":1.0},"446":{"tf":1.0},"84":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"129":{"tf":1.0},"398":{"tf":1.0},"436":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"32":{"tf":1.0},"382":{"tf":1.0},"442":{"tf":1.0},"501":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"129":{"tf":1.0},"147":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"222":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"32":{"tf":1.0},"384":{"tf":2.0},"48":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"402":{"tf":1.0}}},"l":{"df":4,"docs":{"102":{"tf":1.0},"205":{"tf":1.0},"235":{"tf":1.4142135623730951},"48":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"146":{"tf":2.8284271247461903},"205":{"tf":2.0},"206":{"tf":3.605551275463989},"212":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"48":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"210":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"406":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"297":{"tf":1.0}},"i":{"df":3,"docs":{"13":{"tf":1.0},"3":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":15,"docs":{"125":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"178":{"tf":1.0},"200":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"398":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"130":{"tf":1.0},"418":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"358":{"tf":1.0},"422":{"tf":1.0}}}},"t":{"df":2,"docs":{"200":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":28,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":2.23606797749979},"223":{"tf":1.0},"23":{"tf":1.0},"258":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"312":{"tf":1.4142135623730951},"358":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":2.23606797749979},"474":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"171":{"tf":1.0},"205":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"358":{"tf":2.449489742783178},"50":{"tf":1.0},"99":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"236":{"tf":1.0},"35":{"tf":1.0}}}},"x":{"df":10,"docs":{"128":{"tf":1.0},"146":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"235":{"tf":2.0},"32":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"296":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"384":{"tf":1.0},"500":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"208":{"tf":1.0},"310":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"311":{"tf":1.0}},"p":{"df":1,"docs":{"372":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"103":{"tf":1.0},"398":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":10,"docs":{"128":{"tf":1.0},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":2.0},"457":{"tf":1.0},"469":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"327":{"tf":1.0},"65":{"tf":1.0}},"s":{"df":2,"docs":{"26":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":40,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"164":{"tf":1.7320508075688772},"177":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"268":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"359":{"tf":1.4142135623730951},"362":{"tf":1.0},"398":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.4142135623730951},"43":{"tf":1.0},"436":{"tf":1.0},"444":{"tf":1.0},"457":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"200":{"tf":1.0},"343":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":2.449489742783178},"421":{"tf":1.0},"83":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"445":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"254":{"tf":1.4142135623730951},"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"140":{"tf":1.4142135623730951},"24":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"58":{"tf":2.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}},"t":{"df":13,"docs":{"204":{"tf":1.0},"254":{"tf":1.0},"306":{"tf":1.0},"33":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"486":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}}}},"df":16,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"116":{"tf":1.0},"207":{"tf":1.0},"222":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"382":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"422":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"208":{"tf":1.0},"48":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"14":{"tf":1.0},"244":{"tf":1.0},"273":{"tf":1.0},"379":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"341":{"tf":1.0},"425":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"212":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0},"61":{"tf":1.0}}}},"df":10,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"32":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"45":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"179":{"tf":1.0},"235":{"tf":1.0},"255":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"455":{"tf":1.0},"462":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"204":{"tf":1.4142135623730951},"416":{"tf":1.0},"418":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":4,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"83":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":7,"docs":{"199":{"tf":1.0},"206":{"tf":1.4142135623730951},"281":{"tf":1.0},"312":{"tf":1.0},"355":{"tf":1.7320508075688772},"452":{"tf":1.0},"504":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"442":{"tf":1.0},"469":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"398":{"tf":1.0},"469":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"161":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"425":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"284":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0}}}}},"l":{"df":15,"docs":{"104":{"tf":1.0},"153":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"219":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":1.4142135623730951},"258":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"33":{"tf":1.0},"382":{"tf":2.23606797749979},"421":{"tf":1.0},"83":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":5,"docs":{"119":{"tf":1.0},"161":{"tf":1.0},"205":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"164":{"tf":3.0},"358":{"tf":7.0},"359":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},"df":74,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":2.23606797749979},"120":{"tf":1.0},"128":{"tf":2.6457513110645907},"130":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.0},"164":{"tf":2.23606797749979},"165":{"tf":1.7320508075688772},"179":{"tf":2.0},"196":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.7320508075688772},"208":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"253":{"tf":1.4142135623730951},"272":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.23606797749979},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"316":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"353":{"tf":1.0},"355":{"tf":2.0},"358":{"tf":7.280109889280518},"359":{"tf":2.23606797749979},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"372":{"tf":2.23606797749979},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":2.0},"421":{"tf":1.0},"43":{"tf":2.449489742783178},"44":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":2.23606797749979},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":2.23606797749979},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"157":{"tf":1.0},"262":{"tf":1.0}}}}}}},"df":9,"docs":{"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"269":{"tf":1.0},"297":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"422":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"204":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.4142135623730951},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"151":{"tf":1.0},"201":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"355":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":70,"docs":{"1":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.4142135623730951},"275":{"tf":1.0},"291":{"tf":1.7320508075688772},"292":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"374":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.4142135623730951},"419":{"tf":1.0},"421":{"tf":1.4142135623730951},"427":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"509":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"212":{"tf":1.0}}}}}},"g":{"a":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":2,"docs":{"180":{"tf":1.0},"183":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"384":{"tf":1.0},"504":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"231":{"tf":1.0},"422":{"tf":1.0}}}},"p":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"196":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"452":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"394":{"tf":1.0},"416":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":43,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"179":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.7320508075688772},"277":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"36":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"395":{"tf":1.0},"398":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"443":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"482":{"tf":1.4142135623730951},"488":{"tf":1.0},"492":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":10,"docs":{"143":{"tf":1.4142135623730951},"146":{"tf":2.0},"148":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"284":{"tf":1.7320508075688772},"308":{"tf":1.4142135623730951},"312":{"tf":1.0},"47":{"tf":2.8284271247461903}},"s":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"131":{"tf":1.0},"140":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"472":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"b":{"df":3,"docs":{"358":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":4,"docs":{"244":{"tf":1.4142135623730951},"250":{"tf":1.0},"268":{"tf":1.0},"481":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"143":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"70":{"tf":1.0}},"n":{"df":29,"docs":{"11":{"tf":1.0},"129":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.7320508075688772},"222":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"34":{"tf":1.0},"358":{"tf":2.8284271247461903},"362":{"tf":1.4142135623730951},"367":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"164":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"209":{"tf":1.0},"276":{"tf":1.0},"325":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.0}}}},"df":10,"docs":{"129":{"tf":1.0},"183":{"tf":1.0},"215":{"tf":1.0},"277":{"tf":1.0},"291":{"tf":1.0},"355":{"tf":1.0},"452":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"o":{"d":{"df":9,"docs":{"157":{"tf":1.0},"232":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"307":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"146":{"tf":1.0},"340":{"tf":1.0}}}}}},"v":{"1":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"365":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"183":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"312":{"tf":3.0},"313":{"tf":2.23606797749979},"321":{"tf":1.0},"322":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.0},"442":{"tf":1.0},"449":{"tf":1.0},"466":{"tf":1.0}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"421":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"452":{"tf":1.4142135623730951},"474":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"206":{"tf":1.0},"222":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"439":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"442":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":13,"docs":{"126":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"305":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"382":{"tf":1.0}}}},"w":{"df":2,"docs":{"179":{"tf":1.0},"367":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"188":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"204":{"tf":1.0},"232":{"tf":1.0},"305":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":3,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"245":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"209":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":2,"docs":{"232":{"tf":1.0},"312":{"tf":1.0}}},"v":{"df":1,"docs":{"134":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"130":{"tf":1.0},"297":{"tf":1.0},"329":{"tf":1.0}},"l":{"df":9,"docs":{"118":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"312":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"140":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"388":{"tf":1.0},"422":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"178":{"tf":1.0},"401":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"151":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}},"i":{"df":1,"docs":{"416":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"129":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"33":{"tf":1.4142135623730951},"355":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":2.23606797749979},"44":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"72":{"tf":2.0},"95":{"tf":1.0}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":22,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"385":{"tf":1.0},"422":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"141":{"tf":1.0},"146":{"tf":2.23606797749979},"149":{"tf":1.7320508075688772},"158":{"tf":1.0},"281":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"358":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"358":{"tf":2.23606797749979},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":5,"docs":{"164":{"tf":1.0},"355":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"498":{"tf":1.4142135623730951},"501":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"502":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"165":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"361":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"l":{"d":{"df":3,"docs":{"207":{"tf":1.0},"312":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":11,"docs":{"145":{"tf":1.0},"161":{"tf":1.0},"207":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"425":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"465":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":2.0}}}}}},"n":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"140":{"tf":1.0}}},"df":24,"docs":{"125":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"157":{"tf":1.0},"161":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.7320508075688772},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"50":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"470":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"341":{"tf":1.0},"343":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":12,"docs":{"179":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"227":{"tf":1.0},"325":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"41":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"487":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"370":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"473":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"235":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"166":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"232":{"tf":1.0},"424":{"tf":1.0},"468":{"tf":1.0},"481":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"449":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"158":{"tf":1.0},"412":{"tf":1.0}},"i":{"df":5,"docs":{"146":{"tf":2.23606797749979},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"127":{"tf":1.0},"165":{"tf":1.7320508075688772},"181":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"122":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"313":{"tf":1.0},"368":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"419":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"178":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"401":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"178":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"439":{"tf":1.0},"452":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}},"df":23,"docs":{"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"200":{"tf":1.0},"353":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"355":{"tf":3.0},"358":{"tf":4.898979485566356},"359":{"tf":2.23606797749979},"362":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"384":{"tf":1.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"428":{"tf":1.4142135623730951},"429":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"438":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.7320508075688772}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"296":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"3":{"7":{"7":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"4":{"7":{"5":{"8":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"8":{"5":{"df":2,"docs":{"289":{"tf":1.0},"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"3":{"9":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"130":{"tf":1.0},"146":{"tf":1.0},"479":{"tf":1.0},"500":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"509":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"3":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"0":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"383":{"tf":1.0}}},"6":{"df":1,"docs":{"358":{"tf":1.0}}},"7":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"/":{"#":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"9":{"1":{"%":{"a":{"0":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"6":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"q":{"?":{"df":0,"docs":{},"t":{"=":{"5":{"2":{"6":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":15,"docs":{"1":{"tf":1.7320508075688772},"14":{"tf":2.0},"175":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"19":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"235":{"tf":1.0},"3":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"411":{"tf":1.0},"424":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.0}}}}}}},"i":{"'":{"d":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"157":{"tf":1.0},"262":{"tf":1.0}}}},".":{"df":8,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"358":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"3":{"2":{"df":2,"docs":{"164":{"tf":2.8284271247461903},"358":{"tf":9.273618495495704}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"358":{"tf":8.246211251235321},"359":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":10,"docs":{"104":{"tf":2.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"358":{"tf":1.4142135623730951},"384":{"tf":1.0},"469":{"tf":1.4142135623730951},"483":{"tf":1.0},"487":{"tf":1.0}},"e":{"a":{"df":5,"docs":{"13":{"tf":1.0},"355":{"tf":1.0},"425":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0}},"l":{"df":8,"docs":{"200":{"tf":1.0},"208":{"tf":1.0},"277":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"24":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"312":{"tf":2.6457513110645907},"313":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.1622776601683795},"39":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":16,"docs":{"102":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"235":{"tf":1.0},"254":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"358":{"tf":2.23606797749979},"42":{"tf":1.0},"446":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"108":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"384":{"tf":1.0}}}}}},"i":{"df":3,"docs":{"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0}},"i":{"df":3,"docs":{"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"422":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"374":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":1,"docs":{"94":{"tf":1.0}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":23,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"14":{"tf":1.7320508075688772},"169":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.4142135623730951},"423":{"tf":1.0},"455":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":89,"docs":{"0":{"tf":1.0},"100":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":2.0},"151":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":2.0},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"27":{"tf":1.0},"285":{"tf":1.4142135623730951},"3":{"tf":1.0},"310":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"355":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"441":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951}}}}}}}}},"i":{"c":{"df":2,"docs":{"14":{"tf":1.0},"388":{"tf":1.0}}},"df":2,"docs":{"199":{"tf":1.0},"47":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"468":{"tf":1.0}}}}}}},"df":22,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"164":{"tf":2.0},"170":{"tf":1.0},"195":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"318":{"tf":1.0},"384":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"47":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"183":{"tf":1.0}},"s":{"df":4,"docs":{"127":{"tf":1.0},"200":{"tf":1.0},"341":{"tf":1.0},"385":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"481":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"239":{"tf":1.0},"275":{"tf":1.7320508075688772},"277":{"tf":1.0},"287":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"433":{"tf":1.0},"444":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"457":{"tf":1.0},"58":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"262":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"235":{"tf":1.0},"325":{"tf":1.0},"398":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"473":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"207":{"tf":1.0},"421":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":2.0},"146":{"tf":1.7320508075688772},"178":{"tf":1.0},"18":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"245":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"283":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"441":{"tf":1.0},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"483":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":2.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":6,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"324":{"tf":1.0},"398":{"tf":1.7320508075688772}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"398":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":43,"docs":{"110":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"153":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"214":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"235":{"tf":1.0},"258":{"tf":1.0},"327":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":2.0},"375":{"tf":1.7320508075688772},"398":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"429":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.4142135623730951},"455":{"tf":1.0},"469":{"tf":1.0},"481":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"310":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.4142135623730951},"358":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"140":{"tf":1.0},"178":{"tf":1.0},"337":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"207":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"205":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":3.605551275463989},"140":{"tf":2.449489742783178},"205":{"tf":1.4142135623730951},"222":{"tf":1.0},"449":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"i":{"c":{"df":15,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"255":{"tf":1.0},"269":{"tf":1.7320508075688772},"341":{"tf":1.0},"358":{"tf":3.605551275463989},"384":{"tf":1.0},"398":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":14,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.0},"310":{"tf":1.0},"327":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}},"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":2,"docs":{"355":{"tf":1.0},"424":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"358":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"398":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"398":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"396":{"tf":1.0},"398":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":3,"docs":{"104":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.0},"209":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"312":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"215":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"250":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"362":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":2.0},"407":{"tf":1.0},"413":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"12":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":2.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}},"k":{"!":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"175":{"tf":1.0},"176":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":2.449489742783178},"181":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"200":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":2.449489742783178},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":2.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"159":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"172":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"66":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"165":{"tf":1.4142135623730951},"26":{"tf":1.0},"272":{"tf":1.0},"421":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"196":{"tf":1.0},"204":{"tf":4.0},"205":{"tf":2.0},"206":{"tf":2.449489742783178},"207":{"tf":2.449489742783178},"208":{"tf":2.8284271247461903},"209":{"tf":2.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"222":{"tf":2.0},"223":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"165":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"209":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":2.449489742783178}}}}}}}},"t":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"204":{"tf":1.0},"255":{"tf":1.0},"328":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.3166247903554},"398":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.4142135623730951},"469":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"309":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"457":{"tf":1.0}},"r":{"df":12,"docs":{"164":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"27":{"tf":1.0},"315":{"tf":1.0},"416":{"tf":1.0},"430":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"n":{"d":{"df":6,"docs":{"208":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"41":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.0},"41":{"tf":1.0}}},"t":{"df":1,"docs":{"422":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"179":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"416":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.0},"144":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"382":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}},"f":{"a":{"c":{"df":25,"docs":{"179":{"tf":1.4142135623730951},"184":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"221":{"tf":1.0},"227":{"tf":1.0},"288":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.0},"411":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":2.449489742783178},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"199":{"tf":1.0},"406":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"206":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}},"l":{"a":{"c":{"df":3,"docs":{"205":{"tf":2.0},"206":{"tf":1.0},"209":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"205":{"tf":2.0},"206":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"205":{"tf":1.7320508075688772},"208":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"360":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"32":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"200":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.0},"498":{"tf":1.0},"96":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"201":{"tf":1.0},"469":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":33,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.4142135623730951},"358":{"tf":1.0},"374":{"tf":2.0},"398":{"tf":1.0},"400":{"tf":1.4142135623730951},"418":{"tf":2.0},"453":{"tf":1.4142135623730951},"468":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"492":{"tf":1.0},"498":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"t":{"df":8,"docs":{"0":{"tf":1.0},"23":{"tf":1.4142135623730951},"265":{"tf":1.0},"308":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"140":{"tf":1.0},"179":{"tf":1.0},"277":{"tf":1.4142135623730951},"284":{"tf":1.0},"358":{"tf":2.23606797749979},"384":{"tf":1.4142135623730951},"415":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"372":{"tf":1.0},"398":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"200":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":11,"docs":{"119":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"312":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"416":{"tf":1.0},"464":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"232":{"tf":1.0},"235":{"tf":2.449489742783178},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":9,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"389":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"256":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"472":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"310":{"tf":1.0},"352":{"tf":1.0},"505":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"395":{"tf":1.0},"398":{"tf":1.0}}},"df":0,"docs":{}}},"df":22,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"312":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"444":{"tf":1.0},"462":{"tf":1.0},"481":{"tf":1.0},"502":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}}}},"t":{"'":{"df":16,"docs":{"128":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"312":{"tf":1.0},"385":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"41":{"tf":1.0},"418":{"tf":1.0},"468":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":11,"docs":{"206":{"tf":1.7320508075688772},"224":{"tf":1.0},"3":{"tf":1.0},"341":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":2.0},"385":{"tf":2.0},"42":{"tf":2.449489742783178},"455":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"r":{"df":3,"docs":{"153":{"tf":1.0},"200":{"tf":1.0},"258":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":16,"docs":{"147":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"199":{"tf":1.0},"223":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"422":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"df":3,"docs":{"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0}}},"x":{"df":2,"docs":{"327":{"tf":1.0},"328":{"tf":1.0}}},"z":{"df":1,"docs":{"385":{"tf":1.0}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"293":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"230":{"tf":1.0},"264":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"235":{"tf":1.0},"268":{"tf":1.0},"296":{"tf":1.0},"329":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"296":{"tf":1.0}}}}}}},"n":{"a":{"df":2,"docs":{"394":{"tf":1.0},"416":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"118":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"208":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"216":{"tf":1.0},"230":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"364":{"tf":1.0},"399":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"196":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"165":{"tf":1.0}},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}}},"k":{"+":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"253":{"tf":1.7320508075688772},"256":{"tf":1.0},"258":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"129":{"tf":1.0},"145":{"tf":1.0},"167":{"tf":1.0},"209":{"tf":1.0},"296":{"tf":1.0},"384":{"tf":1.0},"460":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"191":{"tf":1.0},"256":{"tf":1.0},"51":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"358":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":3.605551275463989}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":32,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":2.8284271247461903},"151":{"tf":2.0},"153":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.7320508075688772},"253":{"tf":2.449489742783178},"256":{"tf":2.0},"258":{"tf":1.4142135623730951},"277":{"tf":1.0},"358":{"tf":5.916079783099616},"382":{"tf":2.8284271247461903},"384":{"tf":4.47213595499958},"386":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.6457513110645907},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":2.0},"487":{"tf":1.0},"492":{"tf":1.0},"498":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":2.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"358":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}},"b":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"153":{"tf":1.0},"258":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"164":{"tf":1.0},"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"129":{"tf":1.4142135623730951},"143":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"194":{"tf":1.0},"258":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"129":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"221":{"tf":1.0},"256":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"35":{"tf":1.0},"358":{"tf":2.0},"422":{"tf":1.0},"45":{"tf":1.0},"498":{"tf":1.4142135623730951},"50":{"tf":1.0},"64":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"141":{"tf":1.0},"248":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"380":{"tf":1.0},"496":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"m":{"df":5,"docs":{"184":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":3.0},"9":{"tf":3.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"453":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"a":{"'":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}}},"df":19,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"254":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":2.8284271247461903},"322":{"tf":1.0},"382":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"ö":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"1":{"7":{"6":{"2":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"179":{"tf":1.0}}},"2":{"df":1,"docs":{"194":{"tf":1.0}}},"3":{"4":{"0":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"5":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"c":{"1":{"5":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"245":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"188":{"tf":1.0},"235":{"tf":1.0},"277":{"tf":1.0},"358":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"161":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"358":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":17,"docs":{"126":{"tf":1.0},"134":{"tf":1.0},"151":{"tf":1.4142135623730951},"183":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"312":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"419":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"175":{"tf":1.0},"179":{"tf":1.0},"313":{"tf":1.0},"358":{"tf":1.4142135623730951},"424":{"tf":1.0},"442":{"tf":1.4142135623730951},"50":{"tf":1.0},"501":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"408":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}}}}}}},"df":13,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"149":{"tf":1.0},"161":{"tf":1.0},"188":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"384":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"470":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}},"n":{"c":{"df":2,"docs":{"208":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":9,"docs":{"131":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.0},"422":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":4,"docs":{"106":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"500":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"126":{"tf":1.0},"210":{"tf":1.0},"273":{"tf":1.0},"284":{"tf":1.0},"304":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"120":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"372":{"tf":1.0}},"e":{"a":{"d":{"df":18,"docs":{"14":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"193":{"tf":1.0},"206":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"455":{"tf":1.0},"473":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"205":{"tf":1.0},"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"205":{"tf":1.7320508075688772},"208":{"tf":2.23606797749979},"214":{"tf":1.0},"418":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":2,"docs":{"102":{"tf":1.0},"106":{"tf":2.0}}},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}},"s":{"df":14,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"277":{"tf":2.0},"278":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":2.449489742783178}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"204":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{">":{"1":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"1":{"2":{"8":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"430":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"372":{"tf":1.0}}},"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"372":{"tf":1.0}}},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"372":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"421":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"60":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"161":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.0},"167":{"tf":1.0},"171":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":1,"docs":{"486":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":8,"docs":{"125":{"tf":1.0},"205":{"tf":1.0},"254":{"tf":1.7320508075688772},"340":{"tf":1.0},"343":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"372":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"200":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.7320508075688772},"232":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"312":{"tf":1.0},"328":{"tf":1.0},"358":{"tf":1.0},"374":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"372":{"tf":1.0}}},"df":2,"docs":{"372":{"tf":1.0},"398":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"144":{"tf":1.0},"209":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"342":{"tf":1.0},"41":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"127":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"374":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":3,"docs":{"151":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":1,"docs":{"421":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"432":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"207":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"149":{"tf":1.0},"153":{"tf":1.0},"250":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"318":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":2.23606797749979},"388":{"tf":1.0},"456":{"tf":1.0},"470":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"232":{"tf":1.0},"269":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":31,"docs":{"126":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":2.8284271247461903},"191":{"tf":1.4142135623730951},"199":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"240":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"256":{"tf":1.0},"272":{"tf":1.0},"313":{"tf":1.0},"358":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"388":{"tf":1.0},"455":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.0},"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"179":{"tf":1.0},"375":{"tf":1.7320508075688772},"377":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"df":6,"docs":{"372":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"98":{"tf":1.0}}},"k":{"df":9,"docs":{"1":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"147":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"253":{"tf":1.0},"42":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"16":{"tf":1.0},"164":{"tf":1.0},"184":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.4142135623730951},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"269":{"tf":1.0},"307":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":2.23606797749979},"382":{"tf":1.4142135623730951},"386":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":7,"docs":{"128":{"tf":1.0},"239":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.0},"318":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951}}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":5,"docs":{"130":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"497":{"tf":1.0},"500":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":10,"docs":{"117":{"tf":1.0},"238":{"tf":1.0},"296":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"358":{"tf":3.1622776601683795},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":4.47213595499958}}}},"df":0,"docs":{},"k":{"df":12,"docs":{"199":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"281":{"tf":2.23606797749979},"282":{"tf":3.1622776601683795},"283":{"tf":1.4142135623730951},"284":{"tf":1.7320508075688772},"291":{"tf":1.0},"312":{"tf":2.0},"406":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":3,"docs":{"130":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}},"i":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":24,"docs":{"161":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.0},"272":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"358":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.4142135623730951},"444":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"430":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":22,"docs":{"143":{"tf":1.0},"151":{"tf":1.0},"180":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"232":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"223":{"tf":1.0},"277":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.4142135623730951},"386":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"429":{"tf":1.0},"486":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.0}}}}},"p":{"df":1,"docs":{"343":{"tf":1.0}}},"s":{"df":2,"docs":{"252":{"tf":1.0},"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"444":{"tf":1.0}}},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"t":{"df":1,"docs":{"252":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"df":13,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"180":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"342":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"3":{"tf":1.0},"329":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"465":{"tf":1.0},"498":{"tf":1.0},"6":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"199":{"tf":1.0},"305":{"tf":1.0},"358":{"tf":3.4641016151377544},"455":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":14,"docs":{"125":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"184":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"312":{"tf":1.0},"356":{"tf":1.0},"442":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"112":{"tf":1.0},"122":{"tf":1.0},"149":{"tf":2.0},"202":{"tf":1.0},"384":{"tf":2.23606797749979},"386":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"61":{"tf":1.0},"83":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"297":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":25,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"188":{"tf":1.4142135623730951},"2":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"390":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"250":{"tf":1.7320508075688772},"270":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"402":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"183":{"tf":1.4142135623730951},"195":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"423":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":62,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"325":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"341":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"377":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":2.23606797749979},"386":{"tf":1.0},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.4142135623730951},"501":{"tf":1.0},"505":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"502":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"386":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"504":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"188":{"tf":1.0},"200":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.7320508075688772},"240":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"278":{"tf":1.7320508075688772},"281":{"tf":2.23606797749979},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"311":{"tf":1.0},"328":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"266":{"tf":1.0},"268":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"209":{"tf":1.0},"252":{"tf":1.0},"343":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":24,"docs":{"100":{"tf":1.4142135623730951},"161":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.7320508075688772},"180":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.4142135623730951},"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"245":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"418":{"tf":1.0},"442":{"tf":1.0},"455":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"268":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"205":{"tf":2.0},"216":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"<":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":10,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"177":{"tf":1.0},"184":{"tf":2.0},"189":{"tf":1.0},"209":{"tf":1.4142135623730951},"24":{"tf":1.0},"35":{"tf":1.0},"472":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}}}}},"k":{"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"14":{"tf":1.0},"200":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"417":{"tf":1.0},"421":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}},"df":25,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"416":{"tf":2.23606797749979},"417":{"tf":1.7320508075688772},"418":{"tf":3.1622776601683795},"421":{"tf":3.605551275463989},"422":{"tf":2.6457513110645907},"423":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"205":{"tf":2.0},"206":{"tf":3.872983346207417},"209":{"tf":6.6332495807108}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"104":{"tf":1.0},"179":{"tf":1.0},"32":{"tf":1.0},"327":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"263":{"tf":1.0},"275":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"322":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"380":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"509":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"x":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"372":{"tf":1.0},"422":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"305":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":20,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"254":{"tf":1.0},"329":{"tf":1.4142135623730951},"365":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"418":{"tf":1.0},"421":{"tf":2.0},"422":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}},"y":{"b":{"df":5,"docs":{"153":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"285":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":3.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"98":{"tf":1.0}},"m":{"df":2,"docs":{"399":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":25,"docs":{"128":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.0},"179":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"227":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"470":{"tf":1.4142135623730951},"486":{"tf":1.0}},"t":{"df":3,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"328":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":42,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"153":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"244":{"tf":1.0},"252":{"tf":1.4142135623730951},"256":{"tf":2.8284271247461903},"258":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.0},"366":{"tf":1.4142135623730951},"391":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"416":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"473":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"429":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"165":{"tf":1.0},"232":{"tf":1.0},"328":{"tf":1.0},"422":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"268":{"tf":2.449489742783178},"269":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":17,"docs":{"140":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"358":{"tf":4.898979485566356},"386":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":2.23606797749979},"500":{"tf":3.3166247903554},"501":{"tf":1.7320508075688772},"509":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"245":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"145":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}},"g":{"df":8,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"265":{"tf":1.0},"413":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"k":{"df":0,"docs":{},"l":{"df":10,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.4142135623730951},"179":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"140":{"tf":1.0},"193":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":2.449489742783178},"222":{"tf":2.449489742783178},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"254":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":2.6457513110645907},"72":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":2.8284271247461903},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"2":{"tf":1.0},"3":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.6457513110645907},"99":{"tf":3.1622776601683795}},"v":{"1":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":3,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":1,"docs":{"325":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"197":{"tf":1.4142135623730951},"23":{"tf":1.0},"358":{"tf":1.4142135623730951},"38":{"tf":1.0},"51":{"tf":3.1622776601683795},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"i":{"b":{"df":4,"docs":{"384":{"tf":1.0},"385":{"tf":2.23606797749979},"498":{"tf":1.0},"500":{"tf":1.0}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"158":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"211":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"265":{"tf":1.0},"275":{"tf":1.0},"283":{"tf":1.7320508075688772},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.0},"311":{"tf":1.7320508075688772},"312":{"tf":2.8284271247461903},"313":{"tf":2.0},"399":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"406":{"tf":2.23606797749979},"411":{"tf":1.0},"413":{"tf":1.0},"468":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":1,"docs":{"429":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"303":{"tf":1.4142135623730951},"410":{"tf":1.0},"414":{"tf":1.0},"504":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"303":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"1":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"431":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}},"u":{"df":1,"docs":{"146":{"tf":1.0}},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"422":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":5,"docs":{"127":{"tf":1.0},"180":{"tf":1.0},"209":{"tf":1.0},"239":{"tf":1.0},"384":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"415":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"364":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":1.0},"131":{"tf":1.0},"18":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":2,"docs":{"469":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":2,"docs":{"406":{"tf":1.0},"414":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"11":{"tf":1.0}}},"df":33,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.4142135623730951},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":2.0},"367":{"tf":1.0},"370":{"tf":1.4142135623730951},"375":{"tf":1.0},"377":{"tf":2.0},"418":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"455":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.4142135623730951},"465":{"tf":2.6457513110645907},"466":{"tf":1.4142135623730951},"468":{"tf":1.7320508075688772},"469":{"tf":1.7320508075688772},"472":{"tf":1.0},"477":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1":{"tf":1.0},"272":{"tf":1.0},"427":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"469":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":16,"docs":{"127":{"tf":1.0},"14":{"tf":1.4142135623730951},"238":{"tf":1.0},"250":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"349":{"tf":1.4142135623730951},"358":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":1.0},"501":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"165":{"tf":1.4142135623730951},"266":{"tf":1.0},"272":{"tf":1.0},"413":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.0},"255":{"tf":1.0},"470":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"179":{"tf":1.0},"18":{"tf":1.0},"210":{"tf":1.0},"455":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"188":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.0},"311":{"tf":1.0},"423":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":67,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"34":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"377":{"tf":1.0},"384":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"411":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0},"423":{"tf":1.0},"431":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.4142135623730951},"465":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"490":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":68,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.4142135623730951},"416":{"tf":1.0},"418":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0},"498":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":17,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"172":{"tf":1.0},"215":{"tf":1.0},"231":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"320":{"tf":1.0},"321":{"tf":1.0},"355":{"tf":1.0},"415":{"tf":1.4142135623730951},"423":{"tf":1.0},"496":{"tf":1.0},"504":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":2.449489742783178}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"308":{"tf":1.0},"358":{"tf":1.0},"374":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":9,"docs":{"161":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"205":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.4142135623730951},"401":{"tf":1.0},"444":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"341":{"tf":1.0}}}},"i":{"df":3,"docs":{"205":{"tf":1.0},"208":{"tf":1.0},"421":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.4142135623730951},"312":{"tf":1.0}}}},"df":1,"docs":{"44":{"tf":1.0}}}}},"n":{"+":{"1":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"/":{"3":{"df":3,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}},"8":{"df":1,"docs":{"33":{"tf":1.0}}},"a":{"df":8,"docs":{"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"408":{"tf":1.4142135623730951},"437":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0}}},"df":0,"docs":{}},"=":{"3":{"df":0,"docs":{},"f":{"+":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"3":{"df":2,"docs":{"125":{"tf":1.0},"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"122":{"tf":1.0},"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"122":{"tf":1.0},"140":{"tf":1.0},"355":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.4142135623730951},"164":{"tf":1.0},"208":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.0},"310":{"tf":1.0},"358":{"tf":2.23606797749979},"359":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"13":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"199":{"tf":1.0},"498":{"tf":2.23606797749979},"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"398":{"tf":1.4142135623730951},"421":{"tf":1.0},"98":{"tf":1.0}}}}},"y":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"126":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":2.23606797749979},"372":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"180":{"tf":1.0},"204":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"134":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.0},"26":{"tf":1.0},"304":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"469":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.4142135623730951},"94":{"tf":1.0},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"341":{"tf":1.0}}}}}}},"df":3,"docs":{"295":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"421":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":69,"docs":{"11":{"tf":1.4142135623730951},"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.7320508075688772},"241":{"tf":1.0},"250":{"tf":2.0},"255":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":2.0},"312":{"tf":2.23606797749979},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.7320508075688772},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.4142135623730951},"374":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.4142135623730951},"398":{"tf":1.0},"401":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"487":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"455":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"114":{"tf":1.0},"153":{"tf":1.0},"193":{"tf":1.0},"258":{"tf":1.0},"362":{"tf":1.0},"504":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"441":{"tf":1.0},"444":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951}}}},"t":{"df":4,"docs":{"212":{"tf":1.0},"398":{"tf":1.0},"445":{"tf":1.0},"504":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"270":{"tf":1.0},"308":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":59,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"255":{"tf":2.0},"258":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":2.0},"269":{"tf":1.0},"27":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"341":{"tf":1.0},"366":{"tf":1.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.0},"382":{"tf":2.0},"384":{"tf":2.23606797749979},"386":{"tf":1.4142135623730951},"390":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"442":{"tf":2.6457513110645907},"444":{"tf":1.7320508075688772},"452":{"tf":1.0},"474":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":2.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"164":{"tf":1.0},"205":{"tf":1.0},"283":{"tf":1.4142135623730951},"289":{"tf":1.0},"358":{"tf":2.0},"54":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"208":{"tf":1.7320508075688772},"373":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":79,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.23606797749979},"140":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"167":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":2.0},"188":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"270":{"tf":1.0},"272":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"282":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":3.4641016151377544},"359":{"tf":1.4142135623730951},"361":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.7320508075688772},"400":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"417":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"468":{"tf":1.7320508075688772},"469":{"tf":2.0},"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"48":{"tf":1.0},"484":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"250":{"tf":1.0},"358":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"129":{"tf":1.0},"171":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"30":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":2.8284271247461903},"421":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"178":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"209":{"tf":1.0},"3":{"tf":1.7320508075688772},"5":{"tf":2.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"307":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":49,"docs":{"102":{"tf":3.1622776601683795},"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":3.4641016151377544},"146":{"tf":2.449489742783178},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"153":{"tf":2.23606797749979},"158":{"tf":2.449489742783178},"232":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":2.8284271247461903},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":2.23606797749979},"258":{"tf":2.23606797749979},"312":{"tf":1.4142135623730951},"358":{"tf":1.0},"382":{"tf":2.6457513110645907},"384":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"412":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"191":{"tf":1.0},"206":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0}}}}},"n":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"358":{"tf":2.23606797749979},"421":{"tf":1.0}},"e":{"df":30,"docs":{"150":{"tf":1.0},"165":{"tf":1.4142135623730951},"173":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"246":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"338":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"358":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"47":{"tf":1.0},"480":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"160":{"tf":1.0},"165":{"tf":1.0},"222":{"tf":1.0},"414":{"tf":1.0}}}},"df":1,"docs":{"11":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"312":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":40,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"164":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.7320508075688772},"384":{"tf":1.7320508075688772},"386":{"tf":1.0},"398":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.4142135623730951},"429":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"51":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"296":{"tf":1.0}}}}}}}}},"i":{"c":{"df":3,"docs":{"140":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":7,"docs":{"209":{"tf":1.0},"339":{"tf":1.7320508075688772},"340":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"343":{"tf":2.8284271247461903},"344":{"tf":1.4142135623730951},"349":{"tf":1.0}},"i":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"222":{"tf":1.0},"223":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"v":{"a":{"df":2,"docs":{"436":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"b":{"df":5,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"323":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"161":{"tf":1.0},"179":{"tf":1.4142135623730951},"343":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"390":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"500":{"tf":1.0},"98":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"311":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"235":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":50,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"201":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":2.0},"219":{"tf":1.4142135623730951},"222":{"tf":2.449489742783178},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.7320508075688772},"256":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.3166247903554},"365":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"455":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":2.6457513110645907},"498":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"222":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"}":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"d":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"176":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"421":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"502":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"140":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"255":{"tf":1.0},"358":{"tf":1.4142135623730951},"362":{"tf":1.0},"382":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":4,"docs":{"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"235":{"tf":1.0},"355":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"235":{"tf":1.0}},"i":{"df":2,"docs":{"131":{"tf":1.0},"140":{"tf":2.23606797749979}}}},"r":{"df":7,"docs":{"205":{"tf":1.0},"305":{"tf":1.0},"374":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.4142135623730951},"449":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"33":{"tf":3.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.449489742783178},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"33":{"tf":1.7320508075688772},"42":{"tf":1.0}}}},"o":{"b":{"df":4,"docs":{"440":{"tf":1.0},"453":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":4,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"161":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"424":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"309":{"tf":1.0},"312":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":20,"docs":{"13":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"29":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.7320508075688772},"365":{"tf":1.0},"366":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"45":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"51":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"117":{"tf":1.0},"48":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":2.8284271247461903}}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"208":{"tf":2.449489742783178},"372":{"tf":1.4142135623730951},"373":{"tf":1.7320508075688772},"375":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.0},"206":{"tf":1.7320508075688772},"222":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.4142135623730951},"146":{"tf":1.0},"158":{"tf":1.4142135623730951},"363":{"tf":1.0},"390":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"399":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"401":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":20,"docs":{"122":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"167":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"266":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.7320508075688772},"362":{"tf":1.0},"382":{"tf":1.0},"410":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":68,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"255":{"tf":1.7320508075688772},"258":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"325":{"tf":1.0},"327":{"tf":1.0},"339":{"tf":1.7320508075688772},"341":{"tf":1.0},"343":{"tf":2.0},"344":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"429":{"tf":1.4142135623730951},"433":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"498":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"504":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"201":{"tf":1.0},"209":{"tf":1.0},"250":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"200":{"tf":1.0},"218":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"486":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"179":{"tf":1.7320508075688772},"189":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"206":{"tf":1.4142135623730951},"223":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"340":{"tf":1.0},"452":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"16":{"tf":1.0},"308":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0}}}}}},"r":{"df":21,"docs":{"14":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"186":{"tf":1.0},"206":{"tf":2.449489742783178},"208":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"26":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"305":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"157":{"tf":1.0},"262":{"tf":1.0},"384":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"322":{"tf":1.0},"421":{"tf":1.0},"468":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":15,"docs":{"115":{"tf":1.0},"13":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"310":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"341":{"tf":1.0},"384":{"tf":1.0},"436":{"tf":1.0},"491":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0}},"t":{"df":2,"docs":{"179":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"209":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"126":{"tf":1.4142135623730951},"171":{"tf":1.0},"188":{"tf":1.0},"254":{"tf":1.0},"384":{"tf":2.449489742783178},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"500":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":44,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"126":{"tf":1.7320508075688772},"140":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":2.8284271247461903},"381":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"486":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"267":{"tf":1.0},"268":{"tf":1.0},"298":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":3.1622776601683795},"235":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"281":{"tf":1.7320508075688772},"312":{"tf":1.0},"341":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.0},"272":{"tf":1.0},"308":{"tf":1.0},"327":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"205":{"tf":1.0},"277":{"tf":1.0},"375":{"tf":1.0},"406":{"tf":1.0},"469":{"tf":1.0},"492":{"tf":1.0},"52":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"22":{"tf":1.0},"498":{"tf":1.0}}}}},"df":16,"docs":{"111":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"296":{"tf":1.0},"358":{"tf":8.12403840463596},"363":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"47":{"tf":1.0},"501":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"31":{"tf":1.0},"398":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"51":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"119":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"268":{"tf":1.0},"358":{"tf":3.4641016151377544},"412":{"tf":1.0},"421":{"tf":1.0},"435":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"199":{"tf":1.0},"398":{"tf":1.4142135623730951},"445":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"80":{"tf":1.0}}}},"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}},"df":23,"docs":{"12":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"310":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.0},"372":{"tf":1.0},"384":{"tf":1.4142135623730951},"401":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"470":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":10,"docs":{"111":{"tf":1.4142135623730951},"127":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"410":{"tf":1.0},"422":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"128":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"312":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"481":{"tf":1.0}}},"o":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"196":{"tf":1.0},"204":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"41":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"204":{"tf":2.0},"205":{"tf":1.7320508075688772},"206":{"tf":2.8284271247461903},"209":{"tf":4.69041575982343},"39":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":14,"docs":{"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":2.23606797749979},"53":{"tf":1.0}}}}}}}}}},"y":{"df":1,"docs":{"95":{"tf":1.0}}}},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"372":{"tf":1.0}}}},"0":{"df":1,"docs":{"209":{"tf":1.0}}},"1":{"df":1,"docs":{"209":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"372":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"130":{"tf":1.0}}}},"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":4,"docs":{"496":{"tf":1.7320508075688772},"498":{"tf":2.0},"501":{"tf":1.0},"61":{"tf":1.0}}}},"i":{"d":{"df":13,"docs":{"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"268":{"tf":1.0},"398":{"tf":1.7320508075688772},"463":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"472":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"444":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"235":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":35,"docs":{"102":{"tf":1.0},"157":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":2.0},"262":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.7320508075688772},"281":{"tf":1.0},"296":{"tf":1.4142135623730951},"3":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":2.449489742783178},"319":{"tf":1.0},"328":{"tf":1.0},"401":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"441":{"tf":1.0},"444":{"tf":1.0},"449":{"tf":1.0},"469":{"tf":1.7320508075688772},"471":{"tf":2.6457513110645907},"472":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"253":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"281":{"tf":1.0}}},"(":{"1":{"0":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":82,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"178":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":2.6457513110645907},"210":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.0},"250":{"tf":2.23606797749979},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":2.449489742783178},"255":{"tf":2.23606797749979},"256":{"tf":2.6457513110645907},"258":{"tf":2.23606797749979},"263":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"272":{"tf":1.4142135623730951},"275":{"tf":1.7320508075688772},"276":{"tf":2.6457513110645907},"277":{"tf":4.58257569495584},"278":{"tf":2.6457513110645907},"279":{"tf":1.4142135623730951},"281":{"tf":4.123105625617661},"282":{"tf":3.3166247903554},"283":{"tf":2.449489742783178},"284":{"tf":3.7416573867739413},"287":{"tf":1.0},"289":{"tf":2.0},"291":{"tf":1.0},"304":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"306":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":3.872983346207417},"313":{"tf":2.23606797749979},"318":{"tf":1.4142135623730951},"368":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.0},"465":{"tf":2.6457513110645907},"467":{"tf":1.0},"468":{"tf":2.0},"469":{"tf":2.8284271247461903},"470":{"tf":2.8284271247461903},"471":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.4142135623730951},"477":{"tf":1.7320508075688772},"481":{"tf":1.4142135623730951},"500":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"430":{"tf":1.0}}}}},"df":12,"docs":{"130":{"tf":1.0},"209":{"tf":1.4142135623730951},"244":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"d":{"df":10,"docs":{"179":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.0},"269":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":2.23606797749979},"472":{"tf":1.4142135623730951},"473":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.0},"192":{"tf":1.0},"312":{"tf":1.4142135623730951}}}}}},"m":{"df":2,"docs":{"164":{"tf":2.449489742783178},"358":{"tf":11.269427669584644}},"e":{"df":0,"docs":{},"t":{"df":21,"docs":{"102":{"tf":1.0},"205":{"tf":1.7320508075688772},"208":{"tf":2.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"358":{"tf":3.1622776601683795},"364":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":2,"docs":{"128":{"tf":1.0},"197":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"324":{"tf":1.0},"325":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"72":{"tf":2.23606797749979}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"202":{"tf":1.4142135623730951},"419":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":2,"docs":{"126":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"385":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":23,"docs":{"102":{"tf":1.7320508075688772},"115":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"160":{"tf":1.0},"171":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"231":{"tf":1.4142135623730951},"235":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.0},"33":{"tf":1.0},"415":{"tf":1.0},"43":{"tf":1.0},"441":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.0},"158":{"tf":1.0},"235":{"tf":1.0},"284":{"tf":2.0},"3":{"tf":1.0},"398":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"442":{"tf":2.23606797749979},"444":{"tf":2.0},"452":{"tf":1.0},"48":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"122":{"tf":1.0},"14":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"232":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.7320508075688772},"501":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"129":{"tf":1.0},"318":{"tf":1.0},"465":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"169":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"t":{"df":4,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"5":{"7":{"6":{"0":{"0":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"206":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"329":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0}}}}},"t":{"df":2,"docs":{"222":{"tf":1.0},"384":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"120":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"266":{"tf":1.0},"395":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.7320508075688772},"504":{"tf":1.7320508075688772},"506":{"tf":1.0},"509":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"398":{"tf":1.0},"436":{"tf":1.0},"460":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"187":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":1,"docs":{"469":{"tf":1.0}}}}}}},"df":7,"docs":{"209":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":2.23606797749979},"466":{"tf":1.0}},"e":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"129":{"tf":1.0},"140":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"209":{"tf":1.0},"331":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.7320508075688772},"468":{"tf":1.4142135623730951},"469":{"tf":2.0},"477":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"119":{"tf":1.0},"209":{"tf":1.0},"313":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"254":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"126":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"158":{"tf":2.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"258":{"tf":1.0},"340":{"tf":1.0},"382":{"tf":1.4142135623730951}},"i":{"d":{"df":5,"docs":{"151":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.0},"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"13":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":7,"docs":{"144":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.0},"310":{"tf":1.4142135623730951},"322":{"tf":1.0},"329":{"tf":1.0},"384":{"tf":1.0}}}}},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"214":{"tf":1.0},"469":{"tf":1.0}}}},"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":25,"docs":{"122":{"tf":1.0},"128":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"236":{"tf":1.0},"328":{"tf":1.0},"339":{"tf":1.4142135623730951},"343":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.4142135623730951},"384":{"tf":1.0},"410":{"tf":1.0},"421":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.0},"481":{"tf":1.4142135623730951},"50":{"tf":1.0},"504":{"tf":1.4142135623730951},"51":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":95,"docs":{"1":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"248":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"275":{"tf":1.0},"277":{"tf":2.0},"278":{"tf":1.0},"281":{"tf":1.0},"286":{"tf":1.4142135623730951},"292":{"tf":1.0},"299":{"tf":1.0},"303":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"323":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.0},"339":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"362":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"382":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"409":{"tf":1.0},"410":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":35,"docs":{"151":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":4.242640687119285},"206":{"tf":2.6457513110645907},"207":{"tf":1.0},"208":{"tf":2.0},"214":{"tf":1.4142135623730951},"222":{"tf":1.0},"256":{"tf":1.0},"309":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":2.23606797749979},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"398":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":3.4641016151377544},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"429":{"tf":2.449489742783178},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"433":{"tf":2.0},"435":{"tf":1.0},"438":{"tf":2.23606797749979},"464":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"200":{"tf":1.0},"238":{"tf":1.0},"277":{"tf":1.0},"308":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}}}},"t":{"df":2,"docs":{"468":{"tf":1.0},"470":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"128":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"231":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.0},"72":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"230":{"tf":1.0},"264":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"140":{"tf":1.0},"210":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"143":{"tf":1.0},"215":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"370":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"141":{"tf":1.0},"248":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"380":{"tf":1.0},"496":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"206":{"tf":1.7320508075688772},"423":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":15,"docs":{"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"213":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"421":{"tf":1.4142135623730951},"471":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":5,"docs":{"177":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"308":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":3,"docs":{"370":{"tf":1.4142135623730951},"372":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"14":{"tf":1.0},"179":{"tf":2.0},"183":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":2.0},"5":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"145":{"tf":1.0},"414":{"tf":1.4142135623730951},"48":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"206":{"tf":1.0},"224":{"tf":1.0},"245":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"14":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"359":{"tf":1.0},"406":{"tf":1.4142135623730951},"416":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"444":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"358":{"tf":3.4641016151377544}}}}}}},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"'":{"df":9,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"188":{"tf":1.0},"232":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"398":{"tf":1.0}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":111,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":2.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"169":{"tf":1.0},"175":{"tf":2.449489742783178},"176":{"tf":1.7320508075688772},"177":{"tf":2.6457513110645907},"178":{"tf":2.6457513110645907},"179":{"tf":3.0},"180":{"tf":1.4142135623730951},"181":{"tf":2.0},"183":{"tf":2.449489742783178},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":2.6457513110645907},"201":{"tf":2.449489742783178},"202":{"tf":2.0},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"211":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"296":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":2.0},"316":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.0},"337":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"379":{"tf":1.0},"382":{"tf":1.4142135623730951},"395":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"413":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"429":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.4142135623730951},"443":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.4142135623730951},"498":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"436":{"tf":1.0},"449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"177":{"tf":1.0},"187":{"tf":1.0}}},"df":2,"docs":{"176":{"tf":1.0},"180":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":2,"docs":{"401":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"179":{"tf":1.0},"193":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"307":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}}}}},"r":{"df":1,"docs":{"166":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"442":{"tf":1.0}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"385":{"tf":1.0},"470":{"tf":1.0},"99":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"122":{"tf":1.0},"14":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"422":{"tf":1.0},"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"358":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"504":{"tf":1.0},"69":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"129":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"50":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":45,"docs":{"104":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"209":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"250":{"tf":1.0},"263":{"tf":1.0},"284":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"312":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"367":{"tf":1.0},"378":{"tf":1.0},"382":{"tf":3.1622776601683795},"384":{"tf":2.449489742783178},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"417":{"tf":1.0},"422":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.0}}}}}}}},"df":6,"docs":{"273":{"tf":1.0},"379":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"501":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":25,"docs":{"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"250":{"tf":1.0},"375":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"452":{"tf":1.0},"473":{"tf":1.0},"67":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"126":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"204":{"tf":1.0},"240":{"tf":1.4142135623730951},"313":{"tf":1.0},"462":{"tf":1.4142135623730951}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"179":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"431":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":2.23606797749979}}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.0}}}},"r":{"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"325":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"137":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"61":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":2.0}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"204":{"tf":1.0},"358":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"177":{"tf":1.0}}}},"s":{"df":1,"docs":{"252":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"165":{"tf":1.4142135623730951}},"t":{"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"151":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"256":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"398":{"tf":1.7320508075688772},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":7,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.7320508075688772},"501":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"174":{"tf":1.0},"311":{"tf":1.0},"384":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}},"r":{"df":1,"docs":{"398":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"254":{"tf":1.0},"358":{"tf":2.0},"382":{"tf":2.0},"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"127":{"tf":1.0},"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"232":{"tf":1.0},"421":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"363":{"tf":1.0},"399":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"149":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"125":{"tf":1.0},"417":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"341":{"tf":1.0},"343":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"355":{"tf":1.0},"94":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"166":{"tf":1.0},"2":{"tf":1.0},"256":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"444":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":13,"docs":{"14":{"tf":1.7320508075688772},"205":{"tf":2.449489742783178},"206":{"tf":1.0},"208":{"tf":2.0},"358":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"5":{"tf":1.0}},"s":{"df":5,"docs":{"206":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"416":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.4142135623730951}}}}}}}}}},"df":35,"docs":{"1":{"tf":1.0},"12":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"183":{"tf":1.0},"204":{"tf":2.23606797749979},"205":{"tf":3.605551275463989},"206":{"tf":3.605551275463989},"207":{"tf":1.4142135623730951},"208":{"tf":4.795831523312719},"21":{"tf":1.0},"214":{"tf":2.449489742783178},"22":{"tf":1.0},"3":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":2.6457513110645907},"366":{"tf":2.23606797749979},"367":{"tf":2.6457513110645907},"370":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.7320508075688772},"374":{"tf":3.1622776601683795},"375":{"tf":3.605551275463989},"377":{"tf":1.4142135623730951},"379":{"tf":1.0},"398":{"tf":1.7320508075688772},"4":{"tf":1.0},"417":{"tf":2.23606797749979},"418":{"tf":3.7416573867739413},"421":{"tf":4.123105625617661},"422":{"tf":3.7416573867739413},"424":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":20,"docs":{"18":{"tf":1.0},"202":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"327":{"tf":1.0},"368":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"232":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"312":{"tf":1.0},"41":{"tf":1.7320508075688772},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":66,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"172":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"377":{"tf":1.0},"380":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"479":{"tf":1.4142135623730951},"482":{"tf":1.0},"493":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"424":{"tf":1.0}},"i":{"df":4,"docs":{"204":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"432":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":53,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"212":{"tf":1.4142135623730951},"216":{"tf":1.0},"226":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.4142135623730951},"292":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"399":{"tf":1.0},"408":{"tf":1.4142135623730951},"427":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.4142135623730951},"482":{"tf":1.0},"488":{"tf":1.0},"496":{"tf":1.0},"502":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"207":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"235":{"tf":1.0},"281":{"tf":1.0},"429":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"363":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":20,"docs":{"131":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.4142135623730951},"158":{"tf":1.0},"192":{"tf":1.4142135623730951},"196":{"tf":1.0},"200":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"358":{"tf":1.0},"380":{"tf":1.0},"473":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"199":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"210":{"tf":1.0},"264":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"358":{"tf":1.4142135623730951},"37":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"439":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":12,"docs":{"276":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":7,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"309":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"398":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"266":{"tf":1.0},"311":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"444":{"tf":1.0}},"m":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"178":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"137":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"325":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.4142135623730951},"201":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"398":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"166":{"tf":1.0},"9":{"tf":1.0}}},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"284":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"268":{"tf":1.0},"27":{"tf":1.0},"325":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":26,"docs":{"129":{"tf":2.6457513110645907},"146":{"tf":2.23606797749979},"179":{"tf":2.0},"181":{"tf":2.0},"183":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"377":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":2.23606797749979},"385":{"tf":2.23606797749979},"386":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":2.0},"457":{"tf":2.23606797749979},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772},"483":{"tf":2.0},"486":{"tf":3.0},"488":{"tf":1.0},"51":{"tf":1.4142135623730951},"83":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"116":{"tf":1.0},"206":{"tf":1.0},"341":{"tf":1.0},"474":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"204":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"396":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"128":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"364":{"tf":1.0},"374":{"tf":1.0},"455":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.7320508075688772}}}},"s":{"a":{"df":0,"docs":{},"l":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"df":114,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"10":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.8284271247461903},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":2.0},"235":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":2.449489742783178},"421":{"tf":1.4142135623730951},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.4142135623730951},"444":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.4142135623730951},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"6":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":2.449489742783178},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"386":{"tf":1.4142135623730951},"422":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"2":{"df":1,"docs":{"254":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"254":{"tf":1.0},"384":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":2,"docs":{"26":{"tf":1.0},"430":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}}},"df":68,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.0},"131":{"tf":1.0},"140":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"158":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":2.23606797749979},"231":{"tf":1.0},"235":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":2.449489742783178},"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"35":{"tf":1.7320508075688772},"368":{"tf":1.0},"37":{"tf":1.0},"380":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":2.449489742783178},"386":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"41":{"tf":1.0},"419":{"tf":1.0},"42":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"210":{"tf":1.0},"222":{"tf":2.0},"223":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"382":{"tf":1.4142135623730951},"99":{"tf":1.0}},"n":{"df":4,"docs":{"134":{"tf":1.0},"179":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0}}}},"i":{"d":{"df":70,"docs":{"101":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":3.605551275463989},"147":{"tf":2.8284271247461903},"148":{"tf":1.4142135623730951},"149":{"tf":2.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"158":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.23606797749979},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":2.0},"258":{"tf":1.7320508075688772},"26":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"358":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"384":{"tf":2.0},"401":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"442":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"51":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"207":{"tf":1.0},"421":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":2.0},"206":{"tf":1.4142135623730951}}}}}}}}},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"463":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":2.449489742783178},"472":{"tf":1.0},"473":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"33":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"df":10,"docs":{"128":{"tf":1.0},"129":{"tf":3.3166247903554},"309":{"tf":1.0},"319":{"tf":1.0},"469":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"317":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":8,"docs":{"199":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"358":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":1.0},"296":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"250":{"tf":1.0},"462":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"204":{"tf":2.0},"205":{"tf":3.605551275463989},"206":{"tf":3.3166247903554},"207":{"tf":2.8284271247461903},"208":{"tf":2.23606797749979},"211":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"470":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":8,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"158":{"tf":1.0},"188":{"tf":1.0},"249":{"tf":1.0},"312":{"tf":1.0},"384":{"tf":1.0},"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"188":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"200":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"406":{"tf":1.0},"425":{"tf":1.0}}}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"472":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"421":{"tf":1.7320508075688772}}}},"z":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"140":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":2.0},"384":{"tf":2.23606797749979},"385":{"tf":1.0},"386":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"382":{"tf":2.0},"384":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":57,"docs":{"1":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"321":{"tf":1.4142135623730951},"323":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"208":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"106":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"106":{"tf":2.23606797749979},"208":{"tf":1.4142135623730951}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"128":{"tf":1.0},"375":{"tf":1.4142135623730951},"415":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"488":{"tf":1.0}}}},"o":{"df":2,"docs":{"275":{"tf":1.0},"281":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"146":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"200":{"tf":1.0},"481":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"126":{"tf":1.4142135623730951},"147":{"tf":2.6457513110645907},"153":{"tf":1.0},"23":{"tf":1.0},"253":{"tf":2.23606797749979},"258":{"tf":1.0},"47":{"tf":3.1622776601683795},"48":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"54":{"tf":2.6457513110645907}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"126":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0},"256":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"54":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":2.0},"54":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"54":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"223":{"tf":1.4142135623730951},"358":{"tf":3.7416573867739413},"370":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"323":{"tf":1.0},"328":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"424":{"tf":1.0}}}},"t":{"a":{"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"200":{"tf":1.0},"367":{"tf":1.4142135623730951},"422":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}},"o":{"df":5,"docs":{"204":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"330":{"tf":1.0},"47":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"165":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"250":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"df":2,"docs":{"358":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"358":{"tf":1.4142135623730951},"367":{"tf":1.0},"421":{"tf":1.0},"501":{"tf":1.0}}},"t":{"df":3,"docs":{"375":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0}}}},"d":{"df":9,"docs":{"145":{"tf":1.4142135623730951},"149":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"111":{"tf":1.0},"200":{"tf":1.4142135623730951},"377":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"151":{"tf":1.0},"216":{"tf":1.0},"224":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"313":{"tf":1.0},"385":{"tf":1.0}}}},"z":{"df":2,"docs":{"251":{"tf":1.0},"372":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"128":{"tf":1.0},"151":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":12,"docs":{"129":{"tf":2.0},"153":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"385":{"tf":1.0},"418":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"208":{"tf":1.0},"498":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"454":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"328":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"312":{"tf":1.0},"98":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"22":{"tf":1.0},"268":{"tf":1.0},"412":{"tf":1.0},"48":{"tf":1.0}}},"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":5,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":14,"docs":{"104":{"tf":1.0},"140":{"tf":1.4142135623730951},"153":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":2.23606797749979},"209":{"tf":1.7320508075688772},"258":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":2.0},"291":{"tf":1.0},"58":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"u":{"c":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"239":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"367":{"tf":1.0},"381":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.4142135623730951},"444":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"502":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"459":{"tf":1.0},"473":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":13,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"209":{"tf":1.0},"384":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":2.0},"501":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"d":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":68,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"172":{"tf":1.0},"196":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"350":{"tf":1.0},"364":{"tf":1.4142135623730951},"371":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"391":{"tf":1.0},"399":{"tf":1.0},"41":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.4142135623730951},"450":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":2.0},"482":{"tf":1.0},"493":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.0},"61":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":3,"docs":{"268":{"tf":1.0},"307":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"130":{"tf":1.0},"268":{"tf":1.7320508075688772},"270":{"tf":1.0},"296":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"416":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"207":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.7320508075688772},"486":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}},"m":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"204":{"tf":1.4142135623730951},"422":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"161":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"130":{"tf":1.0},"222":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"206":{"tf":3.0}}},"df":9,"docs":{"204":{"tf":1.7320508075688772},"205":{"tf":5.196152422706632},"206":{"tf":6.082762530298219},"208":{"tf":1.0},"209":{"tf":4.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"206":{"tf":2.449489742783178},"209":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"141":{"tf":1.0},"147":{"tf":2.6457513110645907},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"309":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":3.0},"470":{"tf":1.0},"472":{"tf":1.4142135623730951},"481":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"472":{"tf":1.0}}}},"df":15,"docs":{"141":{"tf":1.0},"147":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"463":{"tf":2.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":2.0},"473":{"tf":1.0},"477":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0}},"i":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"107":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":2.6457513110645907},"206":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0},"469":{"tf":1.7320508075688772},"472":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"232":{"tf":1.0},"233":{"tf":1.0}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"268":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":62,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"322":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"352":{"tf":1.0},"380":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0},"41":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.0},"433":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"509":{"tf":1.4142135623730951},"63":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.0}}}}}}}}}},"x":{"df":1,"docs":{"501":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"277":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":47,"docs":{"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":3.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"208":{"tf":2.0},"209":{"tf":2.449489742783178},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"248":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"255":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"305":{"tf":2.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":2.449489742783178},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.4142135623730951}}}},"df":16,"docs":{"128":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"188":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"327":{"tf":1.4142135623730951},"330":{"tf":1.0},"422":{"tf":1.0},"429":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"72":{"tf":3.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"180":{"tf":1.0},"210":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"96":{"tf":1.0}}}},"df":1,"docs":{"418":{"tf":1.0}},"v":{"df":8,"docs":{"117":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"13":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"147":{"tf":1.0},"151":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"331":{"tf":1.0},"398":{"tf":1.0},"98":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":17,"docs":{"106":{"tf":1.4142135623730951},"178":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"24":{"tf":1.0},"321":{"tf":1.0},"358":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.4142135623730951},"63":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"312":{"tf":1.0},"381":{"tf":1.0},"384":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"384":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.7320508075688772}},"v":{"2":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":35,"docs":{"100":{"tf":1.0},"130":{"tf":1.4142135623730951},"151":{"tf":1.0},"164":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":2.0},"209":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"264":{"tf":1.4142135623730951},"269":{"tf":2.23606797749979},"276":{"tf":1.0},"291":{"tf":1.0},"312":{"tf":1.4142135623730951},"317":{"tf":1.0},"353":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"390":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"444":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"473":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"498":{"tf":1.0},"50":{"tf":1.0},"504":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"414":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"312":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"204":{"tf":2.8284271247461903},"205":{"tf":2.8284271247461903},"206":{"tf":4.123105625617661},"208":{"tf":1.7320508075688772},"214":{"tf":1.0},"277":{"tf":1.4142135623730951},"289":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":2.23606797749979},"421":{"tf":2.8284271247461903},"422":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}}}}}}}}},"df":1,"docs":{"469":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":8,"docs":{"463":{"tf":2.0},"464":{"tf":1.0},"466":{"tf":1.7320508075688772},"468":{"tf":2.0},"469":{"tf":2.449489742783178},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"472":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"254":{"tf":1.0},"341":{"tf":1.0},"384":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":12,"docs":{"235":{"tf":1.0},"256":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":3,"docs":{"382":{"tf":1.7320508075688772},"384":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"384":{"tf":2.0},"386":{"tf":1.4142135623730951}}}}}},"o":{"df":6,"docs":{"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"300":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"312":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"117":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"294":{"tf":1.0},"8":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":18,"docs":{"108":{"tf":1.7320508075688772},"151":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"384":{"tf":1.0},"419":{"tf":1.0},"457":{"tf":1.4142135623730951},"498":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"1":{"df":1,"docs":{"130":{"tf":1.0}}},"2":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":25,"docs":{"0":{"tf":1.0},"126":{"tf":1.7320508075688772},"129":{"tf":3.7416573867739413},"140":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.4142135623730951},"204":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.7320508075688772},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"254":{"tf":2.23606797749979},"255":{"tf":1.0},"358":{"tf":2.8284271247461903},"380":{"tf":1.7320508075688772},"384":{"tf":3.4641016151377544},"386":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"393":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"462":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":83,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"14":{"tf":2.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"165":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.7320508075688772},"275":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":2.0},"385":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"401":{"tf":1.4142135623730951},"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.4142135623730951},"468":{"tf":1.7320508075688772},"469":{"tf":2.23606797749979},"47":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":2,"docs":{"277":{"tf":1.4142135623730951},"278":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"202":{"tf":1.0},"212":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"368":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.0},"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"108":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"358":{"tf":1.7320508075688772},"421":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":2.0},"470":{"tf":1.0},"473":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"418":{"tf":1.0},"421":{"tf":3.1622776601683795},"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"199":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":23,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"205":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"277":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"314":{"tf":1.0},"317":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"140":{"tf":1.0},"184":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"404":{"tf":1.0},"429":{"tf":1.0},"448":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"254":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":17,"docs":{"11":{"tf":1.7320508075688772},"129":{"tf":2.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"151":{"tf":1.0},"204":{"tf":1.4142135623730951},"217":{"tf":1.0},"254":{"tf":2.23606797749979},"255":{"tf":1.0},"256":{"tf":1.0},"29":{"tf":1.0},"358":{"tf":1.4142135623730951},"384":{"tf":2.23606797749979},"385":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"422":{"tf":1.0},"465":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}},"df":3,"docs":{"343":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"417":{"tf":1.0},"421":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":29,"docs":{"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"199":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"277":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":3.0},"359":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"180":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"208":{"tf":1.0},"325":{"tf":1.0},"470":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"125":{"tf":1.0},"127":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"454":{"tf":1.0},"455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":21,"docs":{"106":{"tf":1.0},"129":{"tf":1.0},"165":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"222":{"tf":1.0},"281":{"tf":1.0},"33":{"tf":2.8284271247461903},"355":{"tf":1.0},"358":{"tf":7.280109889280518},"400":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"204":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"422":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":20,"docs":{"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.23606797749979},"394":{"tf":1.7320508075688772},"395":{"tf":2.0},"396":{"tf":1.0},"398":{"tf":2.6457513110645907},"422":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"112":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.4142135623730951},"295":{"tf":1.0},"407":{"tf":1.0},"442":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"268":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"244":{"tf":1.0},"416":{"tf":1.4142135623730951},"500":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"119":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"284":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"468":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"c":{"#":{"0":{"0":{"0":{"1":{"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":158,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"131":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"235":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":2.23606797749979},"253":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"27":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":1.0},"303":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"330":{"tf":1.0},"339":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"353":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":2.23606797749979},"368":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"401":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"425":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"443":{"tf":1.4142135623730951},"444":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"457":{"tf":1.4142135623730951},"460":{"tf":1.0},"463":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"498":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.23606797749979},"502":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"509":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"197":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":14,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"343":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"407":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"61":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":4,"docs":{"161":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"370":{"tf":1.0}}},"k":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"199":{"tf":1.0},"284":{"tf":1.7320508075688772},"297":{"tf":1.0},"311":{"tf":1.0},"375":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"245":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"216":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"311":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"313":{"tf":1.0},"418":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"285":{"tf":1.0},"474":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"267":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"84":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"196":{"tf":1.0},"210":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"p":{"df":11,"docs":{"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"179":{"tf":4.795831523312719},"181":{"tf":3.1622776601683795},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}},"t":{"df":25,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.7320508075688772},"312":{"tf":1.0},"384":{"tf":1.4142135623730951},"429":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"487":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"483":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"205":{"tf":1.0},"35":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"311":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"311":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"p":{"c":{"df":4,"docs":{"102":{"tf":1.0},"158":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"436":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"472":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}},"n":{"df":18,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"204":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"358":{"tf":1.0},"401":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":79,"docs":{"102":{"tf":1.4142135623730951},"112":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":2.23606797749979},"160":{"tf":2.0},"161":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"166":{"tf":2.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"292":{"tf":2.0},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"300":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.7320508075688772},"353":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":2.8284271247461903},"358":{"tf":4.47213595499958},"359":{"tf":1.7320508075688772},"362":{"tf":1.0},"374":{"tf":1.0},"385":{"tf":1.0},"399":{"tf":1.7320508075688772},"400":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"405":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"411":{"tf":1.0},"415":{"tf":2.0},"444":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"460":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":3.0},"499":{"tf":1.0},"500":{"tf":2.6457513110645907},"501":{"tf":2.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.7320508075688772},"509":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"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":{}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"414":{"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":{"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"33":{"tf":1.0},"500":{"tf":1.0}}}}},"·":{"df":1,"docs":{"48":{"tf":1.0}},"s":{")":{"/":{"(":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{")":{"/":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"/":{"2":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"140":{"tf":1.0},"42":{"tf":1.0},"470":{"tf":1.0}}}},"k":{"a":{"c":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"208":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"268":{"tf":1.0},"270":{"tf":1.0},"323":{"tf":2.0},"327":{"tf":1.4142135623730951},"328":{"tf":2.449489742783178},"329":{"tf":1.0},"337":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"205":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":19,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":4.58257569495584},"206":{"tf":3.0},"208":{"tf":3.3166247903554},"214":{"tf":1.7320508075688772},"223":{"tf":1.0},"364":{"tf":1.7320508075688772},"365":{"tf":1.7320508075688772},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"374":{"tf":1.0},"379":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":2.6457513110645907},"421":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":31,"docs":{"104":{"tf":1.4142135623730951},"129":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":1.0},"208":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.7320508075688772},"486":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"509":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"425":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":11,"docs":{"23":{"tf":2.23606797749979},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"127":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":2.0}}}}},"df":21,"docs":{"102":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"125":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"232":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"305":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"370":{"tf":1.0},"375":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":2.0},"51":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"266":{"tf":1.0}}},"n":{"df":1,"docs":{"436":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":7,"docs":{"130":{"tf":1.0},"140":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":9,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"311":{"tf":1.7320508075688772}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"209":{"tf":1.0},"384":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"127":{"tf":1.0},"130":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"27":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"41":{"tf":1.0},"421":{"tf":1.0},"509":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"436":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"#":{"1":{"7":{"8":{"1":{"df":1,"docs":{"413":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"7":{"9":{"6":{"df":1,"docs":{"479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"3":{"3":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"2":{"1":{"7":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"169":{"tf":1.0},"211":{"tf":1.0}}}},"df":2,"docs":{"358":{"tf":1.0},"48":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"141":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":2.23606797749979},"197":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"253":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.4142135623730951},"423":{"tf":1.0},"444":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0}}}}},"df":11,"docs":{"106":{"tf":1.0},"149":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"107":{"tf":1.0},"136":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.4142135623730951},"164":{"tf":2.0},"177":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"31":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"41":{"tf":1.0},"430":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":73,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"112":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"189":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"226":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"238":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.4142135623730951},"264":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"315":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.4142135623730951},"399":{"tf":1.0},"408":{"tf":1.4142135623730951},"417":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"488":{"tf":1.0},"496":{"tf":1.0},"502":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"211":{"tf":1.0}},"e":{"d":{"df":4,"docs":{"268":{"tf":1.0},"358":{"tf":1.7320508075688772},"43":{"tf":1.0},"486":{"tf":1.0}}},"df":27,"docs":{"101":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.4142135623730951},"150":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"273":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"321":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.4142135623730951},"429":{"tf":1.0},"430":{"tf":1.0},"445":{"tf":1.0},"500":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":5,"docs":{"268":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"417":{"tf":1.0},"465":{"tf":1.0}}},"m":{"df":4,"docs":{"167":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"438":{"tf":1.0}}},"n":{"df":4,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"140":{"tf":1.0},"188":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"35":{"tf":1.4142135623730951},"421":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"205":{"tf":1.0},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"235":{"tf":2.8284271247461903},"238":{"tf":1.0},"244":{"tf":1.4142135623730951},"247":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":9,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"209":{"tf":1.4142135623730951},"268":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"312":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"l":{"df":4,"docs":{"197":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"366":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"232":{"tf":1.0},"311":{"tf":1.0}}}},"n":{"d":{"df":17,"docs":{"129":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"258":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":2.0},"344":{"tf":1.0},"349":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":2.0},"386":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"343":{"tf":1.0},"349":{"tf":1.0},"486":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"179":{"tf":1.0},"328":{"tf":1.0}}}}},"s":{"df":6,"docs":{"312":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"t":{"df":7,"docs":{"106":{"tf":1.0},"223":{"tf":1.0},"254":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.4142135623730951},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"255":{"tf":1.0},"295":{"tf":1.0},"417":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"23":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":9,"docs":{"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"126":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":1,"docs":{"463":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"382":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":15,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":2.449489742783178},"149":{"tf":1.0},"158":{"tf":1.7320508075688772},"215":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"421":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"388":{"tf":1.0}}}},"i":{"c":{"df":7,"docs":{"199":{"tf":1.0},"207":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"122":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"240":{"tf":1.0},"313":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"487":{"tf":1.0},"492":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"482":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"486":{"tf":2.0},"490":{"tf":1.0},"492":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"483":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"486":{"tf":1.0}},"s":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"486":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":47,"docs":{"108":{"tf":1.0},"14":{"tf":1.0},"165":{"tf":2.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"208":{"tf":2.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"305":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.7320508075688772},"419":{"tf":1.0},"42":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"500":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"421":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}},"r":{"df":9,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"235":{"tf":1.0},"304":{"tf":1.0},"341":{"tf":1.0},"63":{"tf":1.0}}}}}},"h":{"a":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"0":{"df":0,"docs":{},"f":{"1":{"2":{"8":{"7":{"2":{"4":{"4":{"7":{"9":{"5":{"8":{"d":{"5":{"0":{"a":{"a":{"7":{"b":{"9":{"3":{"7":{"b":{"0":{"1":{"0":{"6":{"5":{"6":{"1":{"a":{"5":{"8":{"8":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"2":{"6":{"2":{"8":{"d":{"3":{"3":{"df":0,"docs":{},"f":{"8":{"1":{"b":{"5":{"3":{"6":{"1":{"b":{"1":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"8":{"d":{"df":0,"docs":{},"f":{"7":{"0":{"8":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"151":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"171":{"tf":1.4142135623730951},"206":{"tf":3.0},"248":{"tf":1.0},"330":{"tf":1.0},"366":{"tf":1.7320508075688772},"374":{"tf":1.0},"378":{"tf":1.0},"454":{"tf":1.0},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"370":{"tf":1.0},"372":{"tf":1.0},"421":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"199":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"207":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"177":{"tf":1.0},"423":{"tf":1.0}}}},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"291":{"tf":1.0},"385":{"tf":1.0},"423":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":2.0},"118":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"134":{"tf":1.0}},"n":{"df":3,"docs":{"329":{"tf":1.0},"459":{"tf":1.0},"51":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"367":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":32,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"218":{"tf":1.0},"254":{"tf":1.7320508075688772},"285":{"tf":1.0},"296":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":2.0},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"372":{"tf":2.449489742783178},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"438":{"tf":1.0},"455":{"tf":1.0},"462":{"tf":1.0},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"99":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"108":{"tf":1.0},"164":{"tf":1.0},"23":{"tf":1.4142135623730951},"358":{"tf":2.449489742783178},"359":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":4.898979485566356},"457":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":2.6457513110645907},"49":{"tf":1.0},"51":{"tf":2.8284271247461903},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":17,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"206":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"48":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":7,"docs":{"100":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"43":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"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":4,"docs":{"183":{"tf":1.0},"344":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0}}}}}}},"df":6,"docs":{"179":{"tf":1.0},"192":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"421":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":1,"docs":{"245":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"145":{"tf":1.0},"205":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.0},"43":{"tf":1.0},"500":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"148":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"384":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":13,"docs":{"128":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"265":{"tf":1.0},"312":{"tf":1.0},"352":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":1.0},"435":{"tf":1.0},"51":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"312":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"384":{"tf":1.0},"422":{"tf":1.0}}},"df":10,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"308":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"422":{"tf":1.0}},"f":{"df":1,"docs":{"498":{"tf":1.0}},"i":{"df":3,"docs":{"312":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"312":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":19,"docs":{"108":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"219":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"268":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"441":{"tf":1.0},"444":{"tf":2.0},"48":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"208":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"370":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"423":{"tf":1.0}}},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":27,"docs":{"110":{"tf":1.4142135623730951},"126":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"166":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":4.898979485566356},"384":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"386":{"tf":2.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":2.23606797749979},"457":{"tf":1.7320508075688772},"460":{"tf":1.4142135623730951},"468":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"408":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"384":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"310":{"tf":1.0},"311":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"410":{"tf":1.0},"421":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"111":{"tf":1.0},"362":{"tf":1.0},"375":{"tf":1.0},"422":{"tf":1.0},"487":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"372":{"tf":1.0},"374":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":22,"docs":{"199":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":2.0},"232":{"tf":1.0},"235":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":3.7416573867739413},"51":{"tf":4.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0}}},"w":{"df":4,"docs":{"166":{"tf":1.0},"180":{"tf":1.0},"270":{"tf":1.0},"367":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"362":{"tf":1.4142135623730951},"388":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"374":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"126":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"254":{"tf":1.0},"344":{"tf":1.0},"358":{"tf":1.0},"429":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"209":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"175":{"tf":2.23606797749979},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":2.0},"181":{"tf":1.4142135623730951},"183":{"tf":2.8284271247461903},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"202":{"tf":1.4142135623730951},"220":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":15,"docs":{"204":{"tf":1.7320508075688772},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"374":{"tf":2.0},"421":{"tf":1.0},"423":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"222":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"d":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"t":{"df":19,"docs":{"165":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":2.6457513110645907},"208":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"255":{"tf":1.0},"291":{"tf":1.0},"367":{"tf":2.23606797749979},"377":{"tf":1.0},"455":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":2.6457513110645907},"468":{"tf":1.4142135623730951},"481":{"tf":1.0},"500":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"v":{"df":8,"docs":{"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"158":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"380":{"tf":1.0},"385":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"1":{"df":1,"docs":{"209":{"tf":1.0}}},"2":{"df":1,"docs":{"209":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"327":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"131":{"tf":1.0},"158":{"tf":1.0},"85":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"180":{"tf":1.0},"205":{"tf":1.0},"222":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"h":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":36,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.4142135623730951},"185":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"197":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}},"n":{"df":5,"docs":{"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"125":{"tf":1.0},"199":{"tf":1.0}}}},"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":8,"docs":{"111":{"tf":1.0},"126":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"167":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"250":{"tf":1.4142135623730951},"268":{"tf":1.0},"425":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":43,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"196":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"250":{"tf":2.449489742783178},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"341":{"tf":1.4142135623730951},"37":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"408":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"473":{"tf":1.0},"501":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":13,"docs":{"107":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.6457513110645907},"213":{"tf":1.0},"252":{"tf":1.0},"328":{"tf":1.0},"384":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"166":{"tf":1.0},"362":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"269":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"429":{"tf":2.23606797749979},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"218":{"tf":1.0},"311":{"tf":1.0},"401":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"241":{"tf":1.0},"406":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"23":{"tf":1.0},"245":{"tf":1.0},"66":{"tf":2.0}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"398":{"tf":1.0}}}},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"205":{"tf":1.0},"250":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"177":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"179":{"tf":1.7320508075688772},"189":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"255":{"tf":1.7320508075688772},"355":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":5,"docs":{"165":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.0},"470":{"tf":1.7320508075688772}}}},"k":{"df":0,"docs":{},"e":{"df":15,"docs":{"119":{"tf":1.0},"183":{"tf":1.0},"232":{"tf":2.23606797749979},"245":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"312":{"tf":4.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"442":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":67,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.4142135623730951},"175":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.7320508075688772},"210":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"353":{"tf":1.0},"356":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"380":{"tf":1.0},"383":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"402":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.4142135623730951},"433":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.4142135623730951},"453":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":6,"docs":{"221":{"tf":1.0},"226":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}}}},"t":{"df":51,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":2.23606797749979},"364":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"464":{"tf":1.0},"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":28,"docs":{"104":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.4142135623730951},"305":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"312":{"tf":2.0},"313":{"tf":1.0},"324":{"tf":1.0},"337":{"tf":1.0},"358":{"tf":1.0},"393":{"tf":1.0},"418":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"72":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":2,"docs":{"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"204":{"tf":1.0},"275":{"tf":1.0},"281":{"tf":1.0},"358":{"tf":1.0},"471":{"tf":1.0}}}},"y":{"df":3,"docs":{"205":{"tf":1.0},"312":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"398":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"365":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"374":{"tf":1.0}}}},"m":{"df":1,"docs":{"18":{"tf":1.0}}},"p":{"df":13,"docs":{"106":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":2.449489742783178},"270":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"349":{"tf":1.0},"39":{"tf":1.0},"444":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":19,"docs":{"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.4142135623730951},"309":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.7320508075688772},"423":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"231":{"tf":1.0},"232":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":3.4641016151377544}}},"r":{"a":{"df":0,"docs":{},"g":{"df":33,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"115":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"18":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"312":{"tf":1.0},"358":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":2.449489742783178},"384":{"tf":2.23606797749979},"385":{"tf":1.7320508075688772},"406":{"tf":1.4142135623730951},"422":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":2.6457513110645907},"457":{"tf":1.4142135623730951},"468":{"tf":1.0},"472":{"tf":1.4142135623730951},"481":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"453":{"tf":1.4142135623730951},"454":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"_":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"129":{"tf":1.0},"143":{"tf":1.7320508075688772},"151":{"tf":1.0},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"382":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.7320508075688772},"471":{"tf":1.0},"472":{"tf":1.7320508075688772}}},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"341":{"tf":1.0},"372":{"tf":1.0}}}}},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":9,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"422":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"385":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"295":{"tf":1.4142135623730951},"296":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"418":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"122":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"240":{"tf":1.0},"305":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"201":{"tf":1.0},"255":{"tf":1.4142135623730951},"272":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"500":{"tf":1.0},"504":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"254":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":2,"docs":{"104":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"473":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"452":{"tf":1.0},"500":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"209":{"tf":2.23606797749979},"254":{"tf":1.0},"384":{"tf":1.0},"486":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"294":{"tf":1.0},"32":{"tf":2.0},"425":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"b":{"0":{"df":1,"docs":{"452":{"tf":1.0}}},"df":4,"docs":{"204":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"215":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"36":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}}},"t":{"df":10,"docs":{"179":{"tf":1.7320508075688772},"312":{"tf":1.0},"36":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"22":{"tf":1.0},"460":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}},"t":{"df":6,"docs":{"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"38":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"a":{"c":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"436":{"tf":1.0},"449":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"355":{"tf":1.0},"481":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":15,"docs":{"146":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"164":{"tf":1.4142135623730951},"174":{"tf":1.0},"188":{"tf":1.0},"252":{"tf":2.0},"341":{"tf":1.0},"343":{"tf":1.0},"360":{"tf":1.0},"402":{"tf":1.0},"495":{"tf":1.0},"498":{"tf":1.0},"98":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"254":{"tf":1.0},"340":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":12,"docs":{"140":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"318":{"tf":1.0},"470":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"501":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"206":{"tf":1.0},"224":{"tf":1.4142135623730951},"313":{"tf":1.0},"358":{"tf":3.1622776601683795},"398":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"206":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"472":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":36,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"398":{"tf":1.0},"423":{"tf":1.0},"449":{"tf":1.4142135623730951},"464":{"tf":1.0},"473":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"375":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"200":{"tf":1.0},"204":{"tf":1.0},"382":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"102":{"tf":1.0},"151":{"tf":1.0},"193":{"tf":1.0},"256":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"22":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"16":{"tf":1.0},"165":{"tf":1.0},"294":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"200":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":60,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"358":{"tf":1.7320508075688772},"359":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"358":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"366":{"tf":1.0},"370":{"tf":1.0},"421":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":33,"docs":{"114":{"tf":1.0},"130":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"161":{"tf":2.0},"164":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"210":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"312":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":3,"docs":{"388":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"129":{"tf":1.0},"254":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"498":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}},"g":{"df":1,"docs":{"375":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"178":{"tf":1.0},"358":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"398":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"393":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"363":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"295":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"254":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"238":{"tf":1.0},"310":{"tf":1.0}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"401":{"tf":1.0},"406":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"s":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"125":{"tf":2.0},"127":{"tf":2.449489742783178},"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":64,"docs":{"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":2.6457513110645907},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.7320508075688772},"236":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":2.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"311":{"tf":1.4142135623730951},"312":{"tf":3.1622776601683795},"313":{"tf":1.4142135623730951},"317":{"tf":1.0},"35":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":2.0},"98":{"tf":1.0}}}}}}},"·":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"0":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"50":{"tf":1.0}}},"4":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"df":1,"docs":{"50":{"tf":1.0}}},":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"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":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":32,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":20,"docs":{"114":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"197":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"222":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"386":{"tf":1.4142135623730951},"432":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":3,"docs":{"240":{"tf":1.0},"358":{"tf":1.0},"74":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"399":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}},"k":{"df":1,"docs":{"504":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":17,"docs":{"151":{"tf":1.0},"170":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"256":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":2.23606797749979}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"100":{"tf":1.0},"140":{"tf":1.0},"204":{"tf":2.8284271247461903},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"209":{"tf":4.58257569495584},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"277":{"tf":1.0},"421":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"208":{"tf":1.0},"33":{"tf":2.449489742783178},"372":{"tf":1.7320508075688772},"48":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":18,"docs":{"100":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.7320508075688772},"25":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.4142135623730951},"287":{"tf":1.0},"296":{"tf":1.0},"368":{"tf":1.0},"402":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":21,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"187":{"tf":1.0},"209":{"tf":1.0},"231":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.4142135623730951},"341":{"tf":1.0},"422":{"tf":1.4142135623730951},"426":{"tf":1.0},"443":{"tf":1.4142135623730951},"446":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":8,"docs":{"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"419":{"tf":1.0},"95":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"444":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"401":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"167":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"417":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"151":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"256":{"tf":1.0},"270":{"tf":1.0},"291":{"tf":1.4142135623730951},"415":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":57,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":2.0},"175":{"tf":1.0},"189":{"tf":1.4142135623730951},"196":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"216":{"tf":1.0},"226":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.7320508075688772},"240":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.4142135623730951},"292":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"323":{"tf":1.0},"332":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"399":{"tf":1.0},"402":{"tf":1.0},"408":{"tf":1.7320508075688772},"427":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.4142135623730951},"463":{"tf":1.0},"474":{"tf":1.4142135623730951},"482":{"tf":1.0},"488":{"tf":1.7320508075688772},"496":{"tf":1.0},"502":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"285":{"tf":1.0},"313":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"372":{"tf":1.4142135623730951}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"382":{"tf":1.0},"386":{"tf":1.0},"425":{"tf":1.0}}}},"t":{"'":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"129":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"141":{"tf":1.0},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.4142135623730951},"398":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"i":{"df":2,"docs":{"255":{"tf":1.0},"422":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"13":{"tf":1.0},"297":{"tf":1.0},"501":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"207":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"398":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"129":{"tf":1.0},"340":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.4142135623730951},"504":{"tf":1.0}}},"k":{"df":2,"docs":{"235":{"tf":1.0},"251":{"tf":1.0}}}},"r":{"d":{"df":3,"docs":{"169":{"tf":1.0},"222":{"tf":1.0},"327":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"116":{"tf":1.0},"181":{"tf":1.7320508075688772},"217":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"325":{"tf":1.0},"398":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"177":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"425":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"501":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"201":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"311":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"406":{"tf":1.0},"469":{"tf":1.0},"500":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"128":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"442":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"235":{"tf":1.0},"277":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.4142135623730951},"498":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"421":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"194":{"tf":1.0},"311":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"129":{"tf":1.0},"14":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"25":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"311":{"tf":1.0},"328":{"tf":1.0},"382":{"tf":2.0},"386":{"tf":1.0},"442":{"tf":1.0},"492":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":15,"docs":{"23":{"tf":3.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":5.196152422706632},"49":{"tf":2.23606797749979},"50":{"tf":3.605551275463989},"51":{"tf":2.6457513110645907},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"i":{"d":{"df":2,"docs":{"48":{"tf":2.23606797749979},"50":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"341":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"415":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"e":{"df":61,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.4142135623730951},"282":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"325":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":2.8284271247461903},"382":{"tf":1.4142135623730951},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"442":{"tf":2.0},"444":{"tf":1.4142135623730951},"455":{"tf":2.23606797749979},"465":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"480":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"430":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"205":{"tf":2.6457513110645907},"206":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":3.872983346207417}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"429":{"tf":1.4142135623730951}}}}}}},"k":{"df":1,"docs":{"50":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"99":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"179":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"368":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":2.23606797749979},"419":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"232":{"tf":1.0},"284":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"364":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"164":{"tf":1.0},"180":{"tf":1.0},"277":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"134":{"tf":1.0},"178":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"252":{"tf":1.0},"479":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":3.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"209":{"tf":1.4142135623730951},"258":{"tf":1.0},"329":{"tf":1.0},"395":{"tf":1.0},"469":{"tf":1.0},"48":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"406":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"205":{"tf":1.0},"452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"429":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0}}},"df":25,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"312":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"429":{"tf":2.8284271247461903},"430":{"tf":1.0},"431":{"tf":2.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.7320508075688772},"455":{"tf":1.0},"460":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"436":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"119":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"368":{"tf":1.0},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"175":{"tf":1.0},"188":{"tf":1.0}}}}},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"153":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}},"t":{"df":4,"docs":{"206":{"tf":1.4142135623730951},"407":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":28,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.7320508075688772},"14":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"221":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"235":{"tf":1.0},"277":{"tf":1.0},"309":{"tf":1.0},"317":{"tf":1.0},"339":{"tf":2.0},"340":{"tf":1.7320508075688772},"341":{"tf":2.6457513110645907},"343":{"tf":2.0},"344":{"tf":1.4142135623730951},"349":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"408":{"tf":1.0},"413":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"320":{"tf":1.0},"322":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"42":{"tf":1.0},"44":{"tf":2.449489742783178},"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":9,"docs":{"110":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"382":{"tf":1.0},"421":{"tf":1.4142135623730951},"459":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":2,"docs":{"222":{"tf":1.0},"421":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"105":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.0},"118":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.0},"305":{"tf":2.23606797749979},"382":{"tf":1.0},"423":{"tf":1.0},"506":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"178":{"tf":1.0},"179":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":2,"docs":{"129":{"tf":1.0},"99":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"429":{"tf":2.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.4142135623730951}},"i":{"df":16,"docs":{"117":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"269":{"tf":1.0},"297":{"tf":1.4142135623730951},"307":{"tf":1.0},"312":{"tf":1.0},"326":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":3.1622776601683795},"429":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"104":{"tf":1.0},"209":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"102":{"tf":2.6457513110645907},"103":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"112":{"tf":1.0},"129":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"429":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":5,"docs":{"126":{"tf":1.4142135623730951},"143":{"tf":1.0},"384":{"tf":1.4142135623730951},"414":{"tf":1.0},"422":{"tf":1.0}},"e":{"df":6,"docs":{"126":{"tf":1.0},"250":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":3.872983346207417},"385":{"tf":1.0},"455":{"tf":2.0}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"140":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"209":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"381":{"tf":1.0}},"l":{"df":1,"docs":{"375":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"208":{"tf":1.4142135623730951},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"442":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"250":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"129":{"tf":1.4142135623730951},"178":{"tf":1.0},"384":{"tf":2.0},"422":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"199":{"tf":1.0},"232":{"tf":1.7320508075688772},"255":{"tf":1.0},"263":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"418":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"486":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"444":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"442":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"355":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":37,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"221":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.4142135623730951},"310":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"362":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951},"498":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0}},"x":{"6":{"4":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"104":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"104":{"tf":1.0}}}}},"df":30,"docs":{"102":{"tf":2.0},"104":{"tf":3.605551275463989},"164":{"tf":1.4142135623730951},"196":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":3.605551275463989},"216":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"23":{"tf":1.0},"268":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"341":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.4142135623730951},"436":{"tf":1.0},"45":{"tf":1.4142135623730951},"469":{"tf":2.23606797749979},"470":{"tf":1.0},"472":{"tf":1.0},"486":{"tf":2.0},"491":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":9,"docs":{"219":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"328":{"tf":1.0},"358":{"tf":1.0},"385":{"tf":1.0},"438":{"tf":1.0},"460":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":1,"docs":{"372":{"tf":1.0}}}}},"·":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{".":{"df":1,"docs":{"328":{"tf":1.0}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"128":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":2.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"457":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"102":{"tf":1.7320508075688772},"209":{"tf":1.0},"42":{"tf":1.4142135623730951},"486":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.7320508075688772}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"305":{"tf":1.0}}}}}}}},"c":{"'":{"df":1,"docs":{"417":{"tf":1.0}}},"df":11,"docs":{"199":{"tf":1.0},"201":{"tf":2.23606797749979},"204":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"365":{"tf":1.0},"395":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0}}},"df":1,"docs":{"372":{"tf":1.0}},"i":{"df":2,"docs":{"272":{"tf":1.0},"306":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"119":{"tf":1.0},"266":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"99":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"204":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"281":{"tf":1.4142135623730951},"284":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"204":{"tf":1.0},"222":{"tf":1.0},"472":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.4142135623730951},"388":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"364":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"441":{"tf":1.0},"444":{"tf":1.7320508075688772}}}}},"r":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"421":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}},"df":11,"docs":{"127":{"tf":1.0},"147":{"tf":1.7320508075688772},"208":{"tf":1.0},"222":{"tf":1.0},"236":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"444":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"82":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"37":{"tf":1.0},"423":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"449":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"218":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"398":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":1,"docs":{"406":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"146":{"tf":1.0},"341":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"501":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"161":{"tf":1.0},"415":{"tf":1.0},"70":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"311":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":10,"docs":{"13":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"238":{"tf":1.0},"337":{"tf":1.0},"421":{"tf":1.0},"7":{"tf":2.0},"74":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}}}}}}},"df":1,"docs":{"72":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":7,"docs":{"156":{"tf":1.0},"180":{"tf":1.0},"196":{"tf":1.0},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"228":{"tf":1.0},"455":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"207":{"tf":1.0},"32":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"179":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"205":{"tf":1.0},"235":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"199":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.7320508075688772},"282":{"tf":2.0},"283":{"tf":1.0},"289":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"341":{"tf":1.0},"398":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"386":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"256":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"122":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"322":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"464":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":52,"docs":{"1":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"362":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0},"399":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"205":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"457":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"421":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.0},"24":{"tf":1.0},"256":{"tf":1.0},"282":{"tf":1.0},"358":{"tf":1.0},"498":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"207":{"tf":1.0},"255":{"tf":1.0},"454":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"209":{"tf":1.0},"366":{"tf":1.0},"421":{"tf":1.0},"48":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"131":{"tf":1.0},"167":{"tf":1.4142135623730951},"179":{"tf":1.0},"209":{"tf":1.7320508075688772},"238":{"tf":1.0},"250":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"281":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"365":{"tf":1.0},"412":{"tf":1.0},"436":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.7320508075688772},"54":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"126":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.0},"166":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.4142135623730951},"370":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"442":{"tf":1.4142135623730951},"48":{"tf":1.0},"498":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":16,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":3.0},"131":{"tf":1.0},"136":{"tf":1.4142135623730951},"171":{"tf":1.0},"210":{"tf":1.4142135623730951},"242":{"tf":1.0},"281":{"tf":1.0},"296":{"tf":1.0},"374":{"tf":1.0},"461":{"tf":1.0},"472":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"386":{"tf":1.0},"472":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"418":{"tf":1.0},"465":{"tf":1.0},"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"421":{"tf":1.0},"431":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":21,"docs":{"115":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":2.23606797749979},"205":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"224":{"tf":1.0},"381":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"436":{"tf":1.0},"460":{"tf":1.0},"491":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0}}}},"c":{"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.0}}},"df":3,"docs":{"13":{"tf":1.4142135623730951},"192":{"tf":1.0},"328":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"177":{"tf":1.0},"178":{"tf":1.0},"328":{"tf":1.7320508075688772}}}},"df":114,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":2.0},"180":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":2.0},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"321":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":2.23606797749979},"358":{"tf":2.449489742783178},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"384":{"tf":1.7320508075688772},"388":{"tf":1.0},"393":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"418":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":2.6457513110645907},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"49":{"tf":1.0},"500":{"tf":1.7320508075688772},"51":{"tf":2.449489742783178},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":2.23606797749979},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"312":{"tf":1.0}}},"df":30,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.0},"279":{"tf":1.0},"312":{"tf":1.4142135623730951},"318":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"436":{"tf":1.0},"444":{"tf":1.4142135623730951},"469":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"486":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":21,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"35":{"tf":1.0},"398":{"tf":1.4142135623730951},"411":{"tf":1.0},"418":{"tf":1.0},"44":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"468":{"tf":1.0},"52":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"250":{"tf":1.0}}}},"v":{"0":{"df":2,"docs":{"102":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},".":{"0":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":2.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"2":{"+":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"122":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":49,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.8284271247461903},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":2.6457513110645907},"206":{"tf":1.0},"23":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"24":{"tf":1.4142135623730951},"249":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.7320508075688772},"309":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"444":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"466":{"tf":2.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.23606797749979},"47":{"tf":2.0},"470":{"tf":2.449489742783178},"471":{"tf":1.0},"472":{"tf":2.0},"473":{"tf":1.0},"48":{"tf":3.1622776601683795},"485":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.7320508075688772},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"310":{"tf":1.0},"311":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}}},"df":59,"docs":{"1":{"tf":1.0},"102":{"tf":2.23606797749979},"103":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"14":{"tf":1.0},"147":{"tf":1.4142135623730951},"153":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"208":{"tf":2.449489742783178},"209":{"tf":2.0},"21":{"tf":1.0},"222":{"tf":2.23606797749979},"223":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":5.196152422706632},"366":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":3.605551275463989},"384":{"tf":2.6457513110645907},"386":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"400":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"48":{"tf":2.8284271247461903},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"49":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":2.0},"500":{"tf":2.0},"501":{"tf":1.0},"502":{"tf":1.0},"54":{"tf":1.7320508075688772},"7":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"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":{"358":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"254":{"tf":1.0},"374":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"104":{"tf":3.1622776601683795},"250":{"tf":1.0},"421":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"205":{"tf":1.0},"232":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":11,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"277":{"tf":1.0},"416":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":7,"docs":{"129":{"tf":1.4142135623730951},"161":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"358":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{"c":{"!":{"[":{"(":{"a":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"340":{"tf":1.0},"341":{"tf":1.7320508075688772},"343":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"8":{"df":3,"docs":{"102":{"tf":2.0},"129":{"tf":1.4142135623730951},"486":{"tf":2.0}}},"df":0,"docs":{}}},"df":3,"docs":{"209":{"tf":3.0},"340":{"tf":1.0},"343":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":27,"docs":{"128":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"222":{"tf":1.0},"239":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"277":{"tf":1.4142135623730951},"318":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.7320508075688772},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"48":{"tf":1.0},"501":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":12,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"161":{"tf":1.4142135623730951},"23":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"483":{"tf":1.0},"488":{"tf":1.0},"52":{"tf":1.7320508075688772},"83":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":17,"docs":{"119":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"255":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"159":{"tf":1.0},"160":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"102":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"112":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"171":{"tf":1.0},"250":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"344":{"tf":1.0},"358":{"tf":5.916079783099616},"363":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"449":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":3.3166247903554},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"l":{"df":2,"docs":{"465":{"tf":1.0},"500":{"tf":1.0}}}},"df":22,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"242":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"330":{"tf":1.0},"370":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"202":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":2,"docs":{"327":{"tf":1.0},"328":{"tf":1.0}},"i":{"df":2,"docs":{"327":{"tf":1.0},"328":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"405":{"tf":1.0},"406":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"184":{"tf":1.0},"199":{"tf":1.0},"358":{"tf":3.4641016151377544}}}},"df":1,"docs":{"206":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"365":{"tf":1.0},"379":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"180":{"tf":1.0}},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"310":{"tf":1.0},"313":{"tf":1.0}}},"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"398":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"140":{"tf":2.23606797749979},"235":{"tf":1.4142135623730951},"277":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":1.7320508075688772},"441":{"tf":3.3166247903554},"442":{"tf":2.23606797749979},"444":{"tf":4.358898943540674}},"r":{"df":4,"docs":{"235":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}},"s":{"(":{"1":{"6":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}},"s":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":9,"docs":{"23":{"tf":2.23606797749979},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"61":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"42":{"tf":2.0},"43":{"tf":2.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"43":{"tf":2.23606797749979},"44":{"tf":1.0},"45":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"51":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":2.0},"45":{"tf":2.8284271247461903},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"438":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"232":{"tf":1.0}}}}}}},"·":{"2":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"325":{"tf":1.0},"337":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"208":{"tf":1.4142135623730951},"382":{"tf":1.0},"422":{"tf":1.0},"470":{"tf":1.0},"506":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"382":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.7320508075688772},"256":{"tf":1.0},"269":{"tf":1.0},"375":{"tf":1.0},"425":{"tf":1.0},"449":{"tf":1.0},"481":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"393":{"tf":1.0}}},"t":{"df":1,"docs":{"344":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"284":{"tf":1.0}}}}}}}}},"df":10,"docs":{"161":{"tf":1.7320508075688772},"165":{"tf":2.0},"170":{"tf":1.0},"180":{"tf":1.4142135623730951},"281":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.0},"498":{"tf":2.23606797749979},"500":{"tf":2.0},"501":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"177":{"tf":1.0},"311":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"48":{"tf":1.0}}}},"y":{"df":35,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.4142135623730951},"161":{"tf":1.0},"164":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"22":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"429":{"tf":1.0},"452":{"tf":1.4142135623730951},"455":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951}}}},"b":{"3":{"df":6,"docs":{"177":{"tf":1.0},"212":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"205":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.4142135623730951},"422":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"175":{"tf":1.0},"183":{"tf":2.23606797749979},"191":{"tf":1.0},"209":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":2.23606797749979},"457":{"tf":1.0},"462":{"tf":1.0},"490":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"365":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"449":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"498":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"296":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"204":{"tf":1.0},"206":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"199":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"129":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"330":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"438":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"205":{"tf":1.0},"232":{"tf":1.0},"439":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"48":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"343":{"tf":1.0},"384":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"435":{"tf":1.0}}},"h":{"df":4,"docs":{"268":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"444":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":3,"docs":{"179":{"tf":1.7320508075688772},"183":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"157":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"227":{"tf":1.0},"250":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.0},"358":{"tf":1.4142135623730951},"398":{"tf":1.0},"41":{"tf":1.0},"418":{"tf":2.0},"422":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"199":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"423":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.4142135623730951},"82":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"468":{"tf":1.0},"470":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":5,"docs":{"196":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"452":{"tf":1.0}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"128":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.7320508075688772},"421":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":26,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.7320508075688772},"256":{"tf":1.0},"295":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"382":{"tf":1.0},"422":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"209":{"tf":3.1622776601683795},"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"206":{"tf":1.4142135623730951},"209":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"200":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"180":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"355":{"tf":1.0},"388":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"192":{"tf":1.0},"205":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"358":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"179":{"tf":1.0},"253":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":5.656854249492381}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"178":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":2.6457513110645907}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{".":{"0":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"d":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"184":{"tf":1.4142135623730951}},"m":{"df":17,"docs":{"184":{"tf":1.0},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.4142135623730951},"238":{"tf":1.0},"277":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":3,"docs":{"33":{"tf":2.6457513110645907},"372":{"tf":1.0},"48":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}},"df":1,"docs":{"206":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"372":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"171":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"328":{"tf":1.0},"329":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"159":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"421":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"125":{"tf":1.4142135623730951},"192":{"tf":1.0},"208":{"tf":1.4142135623730951},"223":{"tf":1.0},"358":{"tf":2.0}}}}},"k":{"df":6,"docs":{"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"179":{"tf":1.0},"193":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"292":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"0":{"0":{"1":{"6":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"9":{"tf":1.0}}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":6,"docs":{"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"7":{"5":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"5":{"df":1,"docs":{"327":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"192":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"0":{"0":{"6":{"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"9":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"327":{"tf":1.0}}},"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"5":{"df":1,"docs":{"375":{"tf":1.0}}},"6":{"df":1,"docs":{"459":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":47,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"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},"11":{"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},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"4":{"df":12,"docs":{"174":{"tf":1.0},"353":{"tf":2.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0}}},"6":{"df":16,"docs":{"364":{"tf":2.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0}}},"7":{"df":18,"docs":{"230":{"tf":2.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}}},"8":{"df":16,"docs":{"248":{"tf":2.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}},"9":{"df":14,"docs":{"380":{"tf":2.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":5,"docs":{"394":{"tf":2.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0}}},"2":{"df":11,"docs":{"264":{"tf":2.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0}}},"3":{"df":17,"docs":{"399":{"tf":2.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0}}},"4":{"df":17,"docs":{"275":{"tf":2.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}},"5":{"df":11,"docs":{"416":{"tf":2.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":13,"docs":{"427":{"tf":2.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0}}},"2":{"df":11,"docs":{"292":{"tf":2.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0}}},"6":{"df":45,"docs":{"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"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}}},"df":0,"docs":{}},"3":{"2":{"df":20,"docs":{"303":{"tf":2.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0}}},"5":{"df":13,"docs":{"440":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":14,"docs":{"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"3":{"df":10,"docs":{"453":{"tf":2.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0}}},"4":{"df":19,"docs":{"463":{"tf":2.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}},"7":{"df":21,"docs":{"120":{"tf":2.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}}},"8":{"df":14,"docs":{"482":{"tf":2.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":16,"docs":{"323":{"tf":2.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0}}},"4":{"df":14,"docs":{"496":{"tf":2.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0}}},"6":{"df":14,"docs":{"339":{"tf":2.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0}}},"9":{"df":18,"docs":{"141":{"tf":2.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}}},"df":0,"docs":{}},"6":{"1":{"df":16,"docs":{"159":{"tf":2.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}}},"6":{"df":21,"docs":{"175":{"tf":2.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}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"120":{"tf":1.0}}},"4":{"df":1,"docs":{"353":{"tf":1.0}}},"5":{".":{"0":{"8":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":2,"docs":{"216":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":4,"docs":{"230":{"tf":1.0},"248":{"tf":1.0},"353":{"tf":1.0},"380":{"tf":1.0}}},"9":{":":{"1":{"3":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"364":{"tf":1.0}}},"b":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":3.3166247903554}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"127":{"tf":1.0},"164":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":3.872983346207417},"223":{"tf":1.0},"329":{"tf":1.7320508075688772},"358":{"tf":4.58257569495584},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"9":{"tf":1.0}},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":4.795831523312719}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"x":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"1":{"df":1,"docs":{"108":{"tf":1.0}}},"2":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"3":{"d":{"d":{"8":{"0":{"8":{"4":{"d":{"5":{"0":{"d":{"b":{"b":{"b":{"c":{"9":{"6":{"2":{"0":{"6":{"7":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"c":{"3":{"7":{"b":{"6":{"2":{"7":{"8":{"3":{"1":{"d":{"9":{"3":{"3":{"9":{"df":0,"docs":{},"f":{"5":{"a":{"6":{"df":0,"docs":{},"e":{"4":{"2":{"6":{"a":{"3":{"2":{"df":0,"docs":{},"e":{"3":{"0":{"7":{"6":{"3":{"1":{"3":{"d":{"8":{"7":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"108":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"179":{"tf":1.0},"188":{"tf":1.0},"385":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"5":{"df":3,"docs":{"327":{"tf":1.0},"375":{"tf":1.4142135623730951},"385":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"8":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"224":{"tf":1.0},"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":8,"docs":{"153":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"375":{"tf":2.0},"7":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":3.872983346207417},"224":{"tf":1.0},"358":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"183":{"tf":1.0},"209":{"tf":2.23606797749979},"224":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"440":{"tf":1.0},"61":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"1":{",":{"6":{"df":1,"docs":{"384":{"tf":1.0}}},"7":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"209":{"tf":2.0}},"u":{"3":{"2":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"329":{"tf":1.0},"339":{"tf":1.0},"496":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"2":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}}},"8":{"df":6,"docs":{"126":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}}},"9":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":5,"docs":{"141":{"tf":1.0},"188":{"tf":1.0},"23":{"tf":1.0},"429":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"3":{"0":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":1,"docs":{"482":{"tf":1.0}}},"4":{"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"175":{"tf":1.0},"209":{"tf":1.0},"248":{"tf":1.0},"421":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.0}}}}},"5":{"0":{"0":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":1,"docs":{"209":{"tf":3.4641016151377544}},"u":{"3":{"2":{"df":1,"docs":{"209":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"209":{"tf":1.0}}},"2":{"df":1,"docs":{"209":{"tf":1.0}}},"df":5,"docs":{"209":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"323":{"tf":1.0},"444":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":4,"docs":{"146":{"tf":1.0},"209":{"tf":3.4641016151377544},"384":{"tf":1.0},"385":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}}}},"8":{",":{"3":{"3":{"3":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"141":{"tf":1.0},"188":{"tf":1.0}}},"9":{".":{"0":{"7":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"394":{"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":1,"docs":{"14":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"380":{"tf":1.0}}},":":{"1":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":69,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"108":{"tf":1.0},"110":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":2.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.0},"208":{"tf":1.4142135623730951},"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},"217":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"277":{"tf":1.0},"307":{"tf":1.0},"327":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.23606797749979},"358":{"tf":5.656854249492381},"365":{"tf":1.0},"366":{"tf":1.7320508075688772},"371":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"375":{"tf":3.1622776601683795},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":2.23606797749979},"385":{"tf":1.4142135623730951},"406":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":0,"docs":{},"v":{"df":1,"docs":{"444":{"tf":1.0}}}}},"2":{",":{"8":{"9":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"'":{"df":2,"docs":{"177":{"tf":1.4142135623730951},"195":{"tf":1.0}}},"df":5,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"327":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"327":{"tf":2.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":2.0},"329":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.7320508075688772}},"u":{"3":{"2":{"df":1,"docs":{"209":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"2":{"df":2,"docs":{"293":{"tf":1.0},"452":{"tf":1.0}}},"3":{"df":30,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"399":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":3,"docs":{"14":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":2.0},"303":{"tf":1.0}}},"2":{",":{"5":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{",":{"8":{"3":{"3":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"153":{"tf":1.0},"199":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"399":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"496":{"tf":1.0}}},"5":{"6":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":1,"docs":{"275":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"7":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"159":{"tf":1.0},"329":{"tf":1.0}}},"8":{"df":1,"docs":{"208":{"tf":1.0}}},"9":{"6":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"164":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"23":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.4142135623730951},"291":{"tf":1.0},"358":{"tf":3.4641016151377544},"371":{"tf":1.7320508075688772},"375":{"tf":2.23606797749979},"384":{"tf":2.0},"406":{"tf":1.0},"424":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"3":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"32":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"a":{"df":1,"docs":{"140":{"tf":1.0}}},"b":{"df":1,"docs":{"140":{"tf":1.0}}},"c":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"196":{"tf":1.0},"208":{"tf":1.0},"339":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":2.0},"421":{"tf":1.0},"453":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":10,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.4142135623730951},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"486":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}},"3":{"3":{"8":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}}},"4":{"df":13,"docs":{"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"209":{"tf":1.0}}},"8":{"df":1,"docs":{"358":{"tf":1.0}}},"df":25,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.0},"122":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"31":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"358":{"tf":2.449489742783178},"366":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":2.0},"406":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0}}},"4":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"36":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"37":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"23":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"209":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"14":{"tf":1.0}}},"5":{"df":3,"docs":{"208":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":2.0}}},"8":{",":{"6":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"428":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":2.0},"438":{"tf":1.7320508075688772}}},"9":{",":{"2":{"1":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"206":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.4142135623730951},"358":{"tf":2.449489742783178},"366":{"tf":1.0},"375":{"tf":1.4142135623730951},"384":{"tf":1.7320508075688772},"444":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951}},"·":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.4142135623730951}}},"4":{".":{"1":{"df":1,"docs":{"45":{"tf":1.0}}},"2":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":6,"docs":{"126":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.0},"209":{"tf":2.0},"258":{"tf":1.0}}},"3":{",":{"3":{"3":{"3":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{",":{"6":{"0":{"0":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.4142135623730951},"400":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"47":{"tf":1.4142135623730951},"54":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"4":{".":{"1":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"5":{".":{"1":{".":{"1":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"3":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"7":{"df":4,"docs":{"23":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"358":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"33":{"tf":1.0},"457":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"5":{",":{"3":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{",":{"6":{"6":{"7":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"206":{"tf":1.0},"23":{"tf":1.0},"384":{"tf":1.4142135623730951},"424":{"tf":1.0},"46":{"tf":1.4142135623730951},"463":{"tf":1.0}}},"7":{"7":{",":{"0":{"0":{"0":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"179":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"23":{"tf":1.0},"400":{"tf":1.0},"421":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"8":{"0":{",":{"0":{"0":{"0":{"df":3,"docs":{"209":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"134":{"tf":1.0},"205":{"tf":1.7320508075688772},"209":{"tf":2.23606797749979}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"1":{",":{"8":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"102":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"222":{"tf":1.0},"23":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"9":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"183":{"tf":1.0}}},"1":{"b":{"1":{"7":{"1":{"b":{"b":{"1":{"5":{"8":{"df":0,"docs":{},"e":{"2":{"d":{"3":{"8":{"4":{"8":{"df":0,"docs":{},"f":{"a":{"2":{"3":{"a":{"9":{"df":0,"docs":{},"f":{"1":{"c":{"2":{"5":{"1":{"8":{"2":{"df":0,"docs":{},"f":{"b":{"8":{"df":0,"docs":{},"e":{"2":{"0":{"3":{"1":{"3":{"b":{"2":{"c":{"1":{"df":0,"docs":{},"e":{"b":{"4":{"9":{"2":{"1":{"9":{"d":{"a":{"7":{"a":{"7":{"0":{"c":{"df":0,"docs":{},"e":{"9":{"0":{"c":{"3":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"9":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"57":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}},"_":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"164":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"(":{"1":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{},"x":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{".":{"a":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"200":{"tf":1.7320508075688772},"204":{"tf":1.0},"312":{"tf":1.0},"331":{"tf":1.0},"72":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}}},"v":{"df":12,"docs":{"107":{"tf":1.0},"136":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"406":{"tf":1.0},"51":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":3.1622776601683795},"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}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"441":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"151":{"tf":1.0},"256":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"131":{"tf":1.0},"149":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.4142135623730951},"358":{"tf":3.0},"359":{"tf":1.0},"362":{"tf":1.0},"378":{"tf":1.0},"422":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"144":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"455":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"5":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"365":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"r":{"d":{"df":10,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"161":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"235":{"tf":1.0},"269":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":29,"docs":{"197":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.0},"206":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.4142135623730951},"444":{"tf":2.0},"455":{"tf":1.7320508075688772},"469":{"tf":1.0},"483":{"tf":1.4142135623730951},"487":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"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}},"i":{"d":{"df":6,"docs":{"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":2,"docs":{"396":{"tf":1.0},"398":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"223":{"tf":1.0},"23":{"tf":1.0},"398":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":2.0}}}}},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":14,"docs":{"209":{"tf":1.0},"236":{"tf":1.0},"254":{"tf":1.0},"276":{"tf":1.0},"375":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.0},"331":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"269":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"211":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"281":{"tf":1.0},"421":{"tf":1.0},"49":{"tf":1.0}}}},"v":{"df":8,"docs":{"178":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"24":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"310":{"tf":1.0},"398":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"12":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.4142135623730951},"374":{"tf":1.0},"384":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"377":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":75,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.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.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"165":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":1.4142135623730951},"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},"222":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":1.0},"418":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"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}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"146":{"tf":1.0},"177":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"359":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951},"51":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"504":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"108":{"tf":1.0}}}}}}}},"df":6,"docs":{"130":{"tf":1.0},"14":{"tf":1.0},"205":{"tf":1.4142135623730951},"393":{"tf":1.0},"425":{"tf":1.0},"452":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"165":{"tf":1.0},"184":{"tf":1.4142135623730951},"24":{"tf":1.0},"250":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":2.0},"277":{"tf":1.0},"365":{"tf":1.0},"418":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":27,"docs":{"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"140":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":2.23606797749979},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"444":{"tf":1.0},"500":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"191":{"tf":1.0},"211":{"tf":1.0},"296":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"418":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"204":{"tf":1.0},"254":{"tf":1.0},"3":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"4":{"tf":1.0},"421":{"tf":2.23606797749979},"466":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":16,"docs":{"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"292":{"tf":2.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"199":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"384":{"tf":1.0},"422":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"13":{"tf":1.0},"33":{"tf":1.0},"411":{"tf":1.0},"422":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"412":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"132":{"tf":1.0},"14":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"306":{"tf":1.0},"418":{"tf":1.0},"430":{"tf":1.4142135623730951},"435":{"tf":1.0},"449":{"tf":1.4142135623730951},"466":{"tf":1.0},"477":{"tf":1.0},"504":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"375":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1":{"tf":1.0},"421":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"382":{"tf":1.0},"398":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"422":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"l":{"df":24,"docs":{"196":{"tf":2.23606797749979},"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.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"311":{"tf":1.0},"34":{"tf":1.0},"466":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"269":{"tf":1.0},"327":{"tf":1.0},"444":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"143":{"tf":1.0},"455":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":17,"docs":{"177":{"tf":1.0},"19":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"382":{"tf":1.0},"41":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"a":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{}},"l":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":5,"docs":{"101":{"tf":1.0},"125":{"tf":2.0},"161":{"tf":1.0},"214":{"tf":1.4142135623730951},"486":{"tf":1.0}}}}}}}}},"i":{"c":{"df":4,"docs":{"209":{"tf":4.242640687119285},"364":{"tf":1.0},"441":{"tf":2.0},"444":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"398":{"tf":1.0}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}}},"v":{"df":1,"docs":{"284":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"404":{"tf":1.0},"414":{"tf":1.0}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":58,"docs":{"159":{"tf":2.23606797749979},"160":{"tf":2.0},"161":{"tf":3.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":2.6457513110645907},"165":{"tf":3.3166247903554},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":2.0},"209":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"303":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":2.0},"317":{"tf":1.0},"353":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"355":{"tf":3.872983346207417},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":3.605551275463989},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.7320508075688772},"421":{"tf":1.7320508075688772},"422":{"tf":1.0},"424":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.4142135623730951},"509":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":54,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"161":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":2.23606797749979},"222":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"255":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.7320508075688772},"343":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.0},"404":{"tf":1.4142135623730951},"411":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.23606797749979},"421":{"tf":1.0},"441":{"tf":1.7320508075688772},"444":{"tf":2.0},"45":{"tf":1.0},"460":{"tf":1.0},"466":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"3":{"tf":1.0},"421":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"441":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":23,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.23606797749979},"211":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"341":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.4142135623730951},"414":{"tf":1.0},"421":{"tf":1.0},"466":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"206":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"222":{"tf":1.0},"318":{"tf":1.0},"436":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":12,"docs":{"196":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"228":{"tf":1.4142135623730951},"344":{"tf":1.0},"358":{"tf":1.7320508075688772},"384":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"178":{"tf":1.0},"27":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"423":{"tf":1.0},"78":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":25,"docs":{"104":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"164":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"312":{"tf":1.0},"339":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":2.8284271247461903},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"384":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"26":{"tf":1.0},"358":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"180":{"tf":1.0},"340":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"14":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"358":{"tf":1.7320508075688772},"386":{"tf":1.0},"388":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.7320508075688772},"498":{"tf":1.7320508075688772},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"421":{"tf":1.0},"422":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"179":{"tf":1.0}},"u":{"df":1,"docs":{"197":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}},"i":{"df":2,"docs":{"3":{"tf":1.0},"67":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"418":{"tf":1.0},"422":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"131":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"319":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"210":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"250":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"12":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"311":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"398":{"tf":1.0},"423":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"384":{"tf":1.0},"386":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"250":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"179":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.7320508075688772},"472":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"119":{"tf":1.0},"200":{"tf":1.7320508075688772},"209":{"tf":1.0},"281":{"tf":1.0},"358":{"tf":2.449489742783178},"384":{"tf":1.0},"445":{"tf":1.0},"500":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"358":{"tf":1.0},"406":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"#":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":33,"docs":{"140":{"tf":1.4142135623730951},"206":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"309":{"tf":1.4142135623730951},"319":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.4142135623730951},"399":{"tf":2.23606797749979},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.4142135623730951},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"492":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":2,"docs":{"200":{"tf":1.0},"235":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"188":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"118":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}},"r":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":11,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.449489742783178},"183":{"tf":2.0},"188":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0}}},"df":14,"docs":{"145":{"tf":1.0},"226":{"tf":1.0},"252":{"tf":1.0},"283":{"tf":1.0},"315":{"tf":1.0},"358":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"449":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"34":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"422":{"tf":1.0},"43":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"205":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"472":{"tf":1.0},"488":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":4,"docs":{"140":{"tf":1.7320508075688772},"268":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"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":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"236":{"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":11,"docs":{"146":{"tf":1.0},"153":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"43":{"tf":1.4142135623730951},"6":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"177":{"tf":2.0},"179":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"303":{"tf":1.0},"310":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"144":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.0},"158":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"146":{"tf":1.0},"384":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":1,"docs":{"500":{"tf":1.4142135623730951}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"177":{"tf":1.0},"398":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"223":{"tf":1.0},"372":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":2.0},"418":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"312":{"tf":1.0},"365":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"14":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.0},"258":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"459":{"tf":1.0},"500":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}}}}}},"df":3,"docs":{"122":{"tf":1.0},"33":{"tf":1.0},"486":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"u":{"d":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":56,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"156":{"tf":1.4142135623730951},"159":{"tf":1.0},"172":{"tf":1.4142135623730951},"196":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"243":{"tf":1.4142135623730951},"248":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"300":{"tf":1.4142135623730951},"303":{"tf":1.0},"320":{"tf":1.4142135623730951},"323":{"tf":1.0},"337":{"tf":1.4142135623730951},"339":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"361":{"tf":1.4142135623730951},"364":{"tf":1.0},"377":{"tf":1.4142135623730951},"380":{"tf":1.0},"391":{"tf":1.4142135623730951},"399":{"tf":1.0},"413":{"tf":1.4142135623730951},"416":{"tf":1.0},"425":{"tf":1.4142135623730951},"427":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.4142135623730951},"453":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"479":{"tf":1.4142135623730951},"482":{"tf":1.0},"493":{"tf":1.4142135623730951},"496":{"tf":1.0},"507":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"255":{"tf":1.0},"382":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"n":{".":{"1":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.4142135623730951},"421":{"tf":1.0},"443":{"tf":1.0},"452":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"222":{"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":2,"docs":{"125":{"tf":1.0},"167":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"426":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"178":{"tf":1.0},"183":{"tf":1.0}}}}}}}}},"df":54,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":2.449489742783178},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.7320508075688772},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":3.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.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"235":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"310":{"tf":2.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"'":{"df":2,"docs":{"179":{"tf":1.0},"183":{"tf":1.0}}},"df":15,"docs":{"12":{"tf":1.0},"175":{"tf":2.6457513110645907},"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"179":{"tf":2.6457513110645907},"180":{"tf":2.449489742783178},"181":{"tf":2.23606797749979},"183":{"tf":2.23606797749979},"184":{"tf":2.8284271247461903},"185":{"tf":1.4142135623730951},"186":{"tf":2.0},"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"184":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.7320508075688772},"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"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.7320508075688772},"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},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":2.449489742783178},"206":{"tf":3.1622776601683795},"209":{"tf":3.1622776601683795},"217":{"tf":1.4142135623730951},"222":{"tf":2.449489742783178},"24":{"tf":1.0},"358":{"tf":1.0},"50":{"tf":2.23606797749979}},"e":{"d":{"(":{"a":{"df":1,"docs":{"209":{"tf":2.0}}},"b":{"df":1,"docs":{"209":{"tf":2.449489742783178}}},"c":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":22,"docs":{"106":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"210":{"tf":1.0},"269":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"384":{"tf":1.4142135623730951},"429":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"48":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":14,"docs":{"131":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"421":{"tf":1.0},"455":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"232":{"tf":1.4142135623730951},"398":{"tf":1.0},"407":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772}}}}},"r":{"df":2,"docs":{"284":{"tf":1.0},"398":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"184":{"tf":2.8284271247461903},"188":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"151":{"tf":1.7320508075688772},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"231":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"162":{"tf":1.0},"232":{"tf":1.0},"356":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"500":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"47":{"tf":2.0},"48":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"310":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"199":{"tf":2.0},"204":{"tf":1.0},"206":{"tf":1.0},"307":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}},"df":10,"docs":{"210":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"402":{"tf":1.0},"474":{"tf":1.0},"488":{"tf":1.0},"56":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"292":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":48,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"388":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.7320508075688772},"500":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"26":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"209":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.7320508075688772},"468":{"tf":1.0}}}},"df":4,"docs":{"11":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"99":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"421":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":44,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":2.6457513110645907},"121":{"tf":1.7320508075688772},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"143":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.4142135623730951},"395":{"tf":1.0},"402":{"tf":1.0},"421":{"tf":1.4142135623730951},"425":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":2.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.4142135623730951},"358":{"tf":1.0},"374":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"421":{"tf":1.0}}},"df":8,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"358":{"tf":1.0}}},"y":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"140":{"tf":2.0},"204":{"tf":1.0},"222":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"406":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"147":{"tf":1.0},"218":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"158":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"355":{"tf":1.0},"500":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":2,"docs":{"235":{"tf":1.4142135623730951},"307":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"222":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":3.0},"321":{"tf":1.0},"322":{"tf":1.0},"382":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":1.0},"459":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"9":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":5,"docs":{"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"61":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"3":{"tf":1.0},"423":{"tf":1.0},"72":{"tf":2.23606797749979},"9":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"5":{"8":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":75,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"122":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":2.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},"164":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"3":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":2.23606797749979},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"375":{"tf":1.4142135623730951},"398":{"tf":1.0},"421":{"tf":1.0}}}}}},"i":{"c":{"df":6,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"377":{"tf":1.0}}},"df":6,"docs":{"204":{"tf":1.0},"219":{"tf":1.0},"247":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"54":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"139":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"126":{"tf":1.4142135623730951},"184":{"tf":1.0},"209":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"504":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.4142135623730951},"199":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.4142135623730951},"355":{"tf":1.0},"388":{"tf":1.0},"406":{"tf":1.0},"442":{"tf":1.0},"48":{"tf":1.0}}}}},"df":36,"docs":{"104":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.0},"209":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"235":{"tf":1.0},"255":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"310":{"tf":1.0},"359":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.7320508075688772},"384":{"tf":1.0},"386":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"486":{"tf":1.7320508075688772},"502":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"146":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":31,"docs":{"112":{"tf":1.0},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.4142135623730951},"421":{"tf":1.0},"43":{"tf":1.0},"466":{"tf":1.0},"492":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":1,"docs":{"398":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"130":{"tf":1.4142135623730951},"140":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":5.5677643628300215},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"308":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"384":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"384":{"tf":1.4142135623730951},"74":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"358":{"tf":3.1622776601683795},"501":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"165":{"tf":1.0},"199":{"tf":1.0},"250":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":11,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"193":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"129":{"tf":1.4142135623730951},"358":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}},"w":{"df":13,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"205":{"tf":1.4142135623730951},"329":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.0},"469":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"210":{"tf":1.0},"240":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"455":{"tf":1.4142135623730951},"459":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"206":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}},"df":5,"docs":{"161":{"tf":1.0},"250":{"tf":1.0},"296":{"tf":1.4142135623730951},"418":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":14,"docs":{"14":{"tf":1.0},"161":{"tf":1.7320508075688772},"176":{"tf":1.0},"179":{"tf":1.0},"268":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"398":{"tf":2.449489742783178},"416":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0},"423":{"tf":1.0},"444":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"169":{"tf":1.0},"180":{"tf":1.0},"313":{"tf":1.0},"355":{"tf":1.0},"396":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"119":{"tf":1.0},"179":{"tf":1.0},"250":{"tf":1.4142135623730951},"372":{"tf":1.0},"414":{"tf":1.0},"465":{"tf":1.0},"51":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"120":{"tf":1.0},"158":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"208":{"tf":1.0},"214":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"327":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"460":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"98":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"183":{"tf":1.0},"200":{"tf":1.4142135623730951},"215":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"199":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.23606797749979}}}}},"df":3,"docs":{"199":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":5,"docs":{"429":{"tf":2.0},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.4142135623730951},"83":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"166":{"tf":1.0},"47":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"171":{"tf":1.0},"500":{"tf":1.0},"95":{"tf":1.0}}}}},"d":{"df":4,"docs":{"208":{"tf":1.0},"23":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"102":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"209":{"tf":3.0},"32":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.7320508075688772},"384":{"tf":1.0},"388":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"505":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"209":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"(":{"3":{"2":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}},"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":2,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"191":{"tf":1.0}}}},"b":{"df":8,"docs":{"176":{"tf":1.0},"179":{"tf":2.6457513110645907},"181":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"99":{"tf":1.4142135623730951}},"s":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"'":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":17,"docs":{"399":{"tf":2.23606797749979},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"399":{"tf":1.0},"400":{"tf":1.0},"405":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"14":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.7320508075688772},"36":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":71,"docs":{"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":2.6457513110645907},"146":{"tf":5.196152422706632},"158":{"tf":1.7320508075688772},"161":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":3.1622776601683795},"208":{"tf":2.23606797749979},"209":{"tf":3.1622776601683795},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"363":{"tf":1.0},"382":{"tf":2.0},"384":{"tf":1.0},"39":{"tf":1.0},"399":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":2.449489742783178},"402":{"tf":1.0},"404":{"tf":2.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":2.23606797749979},"456":{"tf":1.0},"457":{"tf":2.23606797749979},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":3.872983346207417},"470":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"205":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":6,"docs":{"183":{"tf":1.0},"215":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"311":{"tf":1.0},"366":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"b":{"df":4,"docs":{"209":{"tf":3.0},"364":{"tf":1.0},"441":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"232":{"tf":1.4142135623730951},"235":{"tf":2.6457513110645907},"236":{"tf":1.0},"241":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":1,"docs":{"398":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"384":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":20,"docs":{"142":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.0},"250":{"tf":2.8284271247461903},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":2.449489742783178},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"119":{"tf":1.0}},"h":{"df":29,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"219":{"tf":1.0},"254":{"tf":1.0},"30":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"321":{"tf":1.0},"382":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"344":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.0},"355":{"tf":1.0}}}}},"df":8,"docs":{"209":{"tf":1.7320508075688772},"384":{"tf":1.0},"386":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"431":{"tf":1.0},"500":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"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":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"129":{"tf":1.4142135623730951},"384":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":13,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.0},"311":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.4142135623730951},"436":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":1.0},"506":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"187":{"tf":1.0},"268":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"217":{"tf":1.0},"220":{"tf":1.0}}}},"df":2,"docs":{"366":{"tf":1.0},"368":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"355":{"tf":2.449489742783178},"358":{"tf":5.5677643628300215},"362":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"146":{"tf":1.0},"501":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"215":{"tf":1.0},"235":{"tf":1.4142135623730951},"277":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"425":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"5":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"2":{"2":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"194":{"tf":1.0},"408":{"tf":1.0},"449":{"tf":1.0},"455":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"159":{"tf":1.0},"415":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":2.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"208":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"208":{"tf":3.1622776601683795},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}},"df":28,"docs":{"204":{"tf":3.0},"205":{"tf":3.4641016151377544},"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":2.23606797749979},"364":{"tf":2.23606797749979},"365":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"129":{"tf":1.0},"296":{"tf":1.0},"400":{"tf":1.0},"486":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"402":{"tf":1.0},"481":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":5,"docs":{"394":{"tf":2.23606797749979},"395":{"tf":1.7320508075688772},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":3.0}}}},"y":{"df":2,"docs":{"186":{"tf":1.0},"200":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"398":{"tf":1.0},"421":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"253":{"tf":1.0},"254":{"tf":2.0},"33":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"355":{"tf":1.0},"358":{"tf":4.47213595499958},"384":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"51":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"s":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"51":{"tf":1.0},"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":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"256":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":7,"docs":{"309":{"tf":1.0},"421":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"401":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":46,"docs":{"102":{"tf":1.7320508075688772},"128":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.23606797749979},"209":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.7320508075688772},"281":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"355":{"tf":1.7320508075688772},"358":{"tf":2.449489742783178},"362":{"tf":1.4142135623730951},"382":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.7320508075688772},"460":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"df":2,"docs":{"206":{"tf":1.0},"468":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"206":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":1.0},"358":{"tf":1.0},"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"140":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"140":{"tf":3.7416573867739413},"23":{"tf":2.0},"235":{"tf":2.6457513110645907},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"307":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":24,"docs":{"141":{"tf":2.449489742783178},"142":{"tf":2.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":3.1622776601683795},"147":{"tf":2.23606797749979},"148":{"tf":2.6457513110645907},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"200":{"tf":1.0}}}},"c":{"df":6,"docs":{"266":{"tf":1.0},"313":{"tf":1.0},"327":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"179":{"tf":1.0},"204":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"197":{"tf":1.0},"201":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"386":{"tf":1.0},"98":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"473":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"101":{"tf":1.0},"171":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"296":{"tf":1.0},"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":45,"docs":{"106":{"tf":1.0},"112":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"255":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"464":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.4142135623730951},"58":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"382":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"164":{"tf":1.0},"415":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"129":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"358":{"tf":1.0},"361":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"506":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"130":{"tf":1.0},"204":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":2.0},"233":{"tf":1.0},"235":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"284":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"418":{"tf":1.0},"47":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"194":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"18":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0}}},"df":139,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":3.0},"149":{"tf":2.0},"158":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":2.23606797749979},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.7320508075688772},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":2.0},"201":{"tf":1.0},"204":{"tf":4.47213595499958},"205":{"tf":2.6457513110645907},"206":{"tf":2.6457513110645907},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":3.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":2.23606797749979},"249":{"tf":1.0},"250":{"tf":3.3166247903554},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"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},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":2.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":2.0},"309":{"tf":2.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.449489742783178},"312":{"tf":3.1622776601683795},"313":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"366":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":1.7320508075688772},"386":{"tf":1.0},"421":{"tf":1.0},"436":{"tf":1.4142135623730951},"442":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.7320508075688772},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.7320508075688772},"486":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"365":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"83":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"205":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":106,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"119":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"319":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":2.0},"385":{"tf":1.0},"386":{"tf":1.0},"400":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":2.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.7320508075688772},"468":{"tf":1.4142135623730951},"47":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"492":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":2.0},"504":{"tf":1.0},"506":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"235":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"220":{"tf":1.0},"222":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"427":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"209":{"tf":1.7320508075688772},"441":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"207":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":16,"docs":{"111":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"382":{"tf":1.0},"408":{"tf":1.4142135623730951},"43":{"tf":1.0},"466":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"472":{"tf":2.0},"49":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"358":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"384":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"384":{"tf":2.449489742783178}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"12":{"tf":1.0},"222":{"tf":1.0},"331":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"164":{"tf":1.0},"194":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"143":{"tf":1.4142135623730951},"253":{"tf":1.0},"310":{"tf":1.0},"372":{"tf":1.0},"421":{"tf":1.0},"48":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"129":{"tf":2.0}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":27,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"106":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":2.6457513110645907},"121":{"tf":1.7320508075688772},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":2.449489742783178},"127":{"tf":3.0},"128":{"tf":2.449489742783178},"129":{"tf":4.58257569495584},"130":{"tf":2.23606797749979},"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.4142135623730951},"140":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"122":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}}}}}}}}}}},"i":{"df":1,"docs":{"295":{"tf":1.0}},"r":{"c":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{},"s":{"[":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"179":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"241":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"470":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":3.7416573867739413},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"498":{"tf":1.0},"502":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"31":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"179":{"tf":1.0},"187":{"tf":1.0}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"161":{"tf":1.0},"391":{"tf":1.0}}},"r":{"df":12,"docs":{"193":{"tf":1.0},"211":{"tf":1.0},"266":{"tf":1.0},"360":{"tf":1.0},"398":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"442":{"tf":1.0},"472":{"tf":1.0},"502":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.4142135623730951},"429":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":47,"docs":{"130":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"263":{"tf":1.0},"318":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"380":{"tf":2.0},"381":{"tf":1.4142135623730951},"382":{"tf":2.6457513110645907},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"456":{"tf":1.0},"496":{"tf":2.23606797749979},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":2.0},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":2.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"60":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"500":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"183":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"129":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"327":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"410":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"32":{"tf":1.0}}},"df":40,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":1.0},"134":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"184":{"tf":1.0},"23":{"tf":1.4142135623730951},"270":{"tf":1.0},"297":{"tf":1.0},"33":{"tf":2.0},"341":{"tf":1.7320508075688772},"358":{"tf":1.7320508075688772},"360":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.4142135623730951},"385":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.0},"435":{"tf":1.0},"465":{"tf":1.7320508075688772},"466":{"tf":2.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.449489742783178},"470":{"tf":2.449489742783178},"471":{"tf":1.0},"472":{"tf":2.23606797749979},"473":{"tf":1.0},"49":{"tf":1.0},"498":{"tf":1.0},"64":{"tf":2.449489742783178},"7":{"tf":2.23606797749979},"80":{"tf":1.0},"9":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"308":{"tf":1.4142135623730951},"465":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"l":{"d":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":25,"docs":{"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"230":{"tf":2.23606797749979},"231":{"tf":1.7320508075688772},"232":{"tf":4.0},"233":{"tf":2.23606797749979},"234":{"tf":1.0},"235":{"tf":3.1622776601683795},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"250":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":31,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":2.449489742783178},"265":{"tf":2.6457513110645907},"266":{"tf":2.6457513110645907},"267":{"tf":1.0},"268":{"tf":2.23606797749979},"269":{"tf":3.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":2.6457513110645907},"273":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.4142135623730951},"3":{"tf":1.0},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"38":{"tf":1.0},"398":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"277":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.4142135623730951},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"3":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.4142135623730951},"406":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"130":{"tf":1.0},"421":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"328":{"tf":1.0}}}}},"t":{"df":6,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"395":{"tf":1.0},"407":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"204":{"tf":1.0},"268":{"tf":1.4142135623730951},"325":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"183":{"tf":1.0},"305":{"tf":1.4142135623730951},"358":{"tf":1.0},"382":{"tf":1.0},"418":{"tf":1.0},"442":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":12,"docs":{"179":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"268":{"tf":1.0},"3":{"tf":1.0},"398":{"tf":1.0},"439":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":3,"docs":{"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"<":{"df":0,"docs":{},"u":{"3":{"2":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"*":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{")":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"343":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":12,"docs":{"188":{"tf":1.0},"205":{"tf":1.0},"295":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.0},"382":{"tf":1.0},"424":{"tf":1.0},"468":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"382":{"tf":1.0}}}}}}},"t":{"df":85,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"196":{"tf":1.0},"20":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"216":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"252":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"264":{"tf":1.0},"272":{"tf":1.7320508075688772},"275":{"tf":1.0},"288":{"tf":1.7320508075688772},"292":{"tf":1.0},"299":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"323":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"380":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"466":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}},"t":{"df":3,"docs":{"232":{"tf":1.4142135623730951},"241":{"tf":1.0},"446":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"161":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.4142135623730951},"187":{"tf":1.0},"358":{"tf":2.0},"500":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":2,"docs":{"305":{"tf":1.0},"401":{"tf":1.0}}}}}},"t":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"127":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"341":{"tf":1.0},"455":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"x":{"df":12,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"22":{"tf":1.0},"312":{"tf":1.4142135623730951},"34":{"tf":1.0},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"444":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"408":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"131":{"tf":1.0},"149":{"tf":1.0},"312":{"tf":1.7320508075688772},"344":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0}}},"df":1,"docs":{"252":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"183":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"310":{"tf":1.4142135623730951}}},"s":{"df":3,"docs":{"177":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"145":{"tf":1.0},"25":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"128":{"tf":1.0},"180":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"305":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":2.0},"50":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"&":{"[":{"4":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":1,"docs":{"343":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"125":{"tf":1.7320508075688772},"206":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.0}}}}},"v":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"455":{"tf":1.0},"496":{"tf":2.23606797749979},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"16":{"tf":1.4142135623730951},"212":{"tf":1.0},"226":{"tf":1.0},"252":{"tf":1.0},"285":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"398":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"208":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"11":{"tf":1.0},"146":{"tf":1.0},"276":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"132":{"tf":1.0},"212":{"tf":1.4142135623730951},"421":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.0}}}},"i":{"d":{"df":2,"docs":{"313":{"tf":1.0},"366":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"171":{"tf":1.4142135623730951},"184":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"130":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"209":{"tf":1.0},"223":{"tf":1.0},"266":{"tf":1.4142135623730951},"310":{"tf":1.0},"318":{"tf":1.0},"364":{"tf":1.0},"375":{"tf":1.4142135623730951},"429":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":3.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"431":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"281":{"tf":1.0},"283":{"tf":1.0},"427":{"tf":2.23606797749979},"428":{"tf":1.4142135623730951},"429":{"tf":2.6457513110645907},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":2.0},"432":{"tf":1.4142135623730951},"433":{"tf":2.23606797749979},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"439":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"250":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"378":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"143":{"tf":1.4142135623730951},"199":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"340":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":51,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"130":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"502":{"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.4142135623730951},"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},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"250":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"240":{"tf":1.0},"375":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":24,"docs":{"10":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"140":{"tf":1.0},"146":{"tf":1.0},"174":{"tf":1.0},"26":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.0},"359":{"tf":1.4142135623730951},"375":{"tf":1.0},"384":{"tf":1.4142135623730951},"398":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.0},"444":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"147":{"tf":1.0},"254":{"tf":1.4142135623730951},"294":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.0},"504":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"153":{"tf":1.0},"258":{"tf":1.0},"3":{"tf":1.0},"359":{"tf":1.0},"469":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"486":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}},"t":{"df":4,"docs":{"314":{"tf":1.0},"37":{"tf":1.0},"371":{"tf":1.0},"455":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"112":{"tf":1.0},"178":{"tf":1.0},"269":{"tf":1.0},"358":{"tf":1.0},"42":{"tf":1.4142135623730951},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":12,"docs":{"125":{"tf":1.0},"134":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"295":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"455":{"tf":1.0},"72":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"418":{"tf":1.0},"497":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"224":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":3.1622776601683795},"382":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":12,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.0},"179":{"tf":1.4142135623730951},"204":{"tf":1.0},"297":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.4142135623730951},"48":{"tf":1.0},"488":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":1,"docs":{"366":{"tf":1.0}}}}},"u":{"df":8,"docs":{"22":{"tf":1.0},"237":{"tf":1.0},"295":{"tf":1.0},"325":{"tf":1.0},"355":{"tf":1.0},"383":{"tf":1.4142135623730951},"421":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"175":{"tf":3.4641016151377544},"176":{"tf":2.0},"177":{"tf":2.6457513110645907},"178":{"tf":2.8284271247461903},"179":{"tf":2.23606797749979},"180":{"tf":2.449489742783178},"181":{"tf":2.23606797749979},"182":{"tf":1.0},"183":{"tf":3.7416573867739413},"184":{"tf":2.449489742783178},"185":{"tf":1.4142135623730951},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":2.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"199":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":1.0},"30":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"209":{"tf":1.7320508075688772},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"327":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"151":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"256":{"tf":1.0},"294":{"tf":1.0},"355":{"tf":1.0},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":2.0},"442":{"tf":1.0},"444":{"tf":1.7320508075688772},"484":{"tf":1.0},"500":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"363":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}},"t":{"df":4,"docs":{"23":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"486":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"452":{"tf":1.0},"51":{"tf":1.0}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"161":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"307":{"tf":1.0},"440":{"tf":2.23606797749979},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"170":{"tf":1.0}}}}},"n":{"c":{"df":2,"docs":{"162":{"tf":1.0},"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"358":{"tf":2.0},"362":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"204":{"tf":1.0},"209":{"tf":1.4142135623730951}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"399":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"128":{"tf":2.0},"131":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}}},"df":56,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":2.6457513110645907},"179":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":2.0},"204":{"tf":3.3166247903554},"205":{"tf":3.1622776601683795},"206":{"tf":4.123105625617661},"207":{"tf":1.7320508075688772},"208":{"tf":3.0},"209":{"tf":5.656854249492381},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.7320508075688772},"220":{"tf":1.0},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"231":{"tf":1.0},"266":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":2.449489742783178},"314":{"tf":1.0},"365":{"tf":2.0},"371":{"tf":2.0},"372":{"tf":2.23606797749979},"374":{"tf":2.23606797749979},"375":{"tf":1.0},"399":{"tf":2.23606797749979},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":3.0},"422":{"tf":1.0},"462":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"128":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":2.0},"222":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"131":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"206":{"tf":1.0},"209":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"180":{"tf":1.0}}},"df":8,"docs":{"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":1.0},"195":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"208":{"tf":2.449489742783178},"372":{"tf":1.0},"373":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":67,"docs":{"196":{"tf":2.6457513110645907},"197":{"tf":1.4142135623730951},"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":6.324555320336759},"205":{"tf":4.69041575982343},"206":{"tf":4.242640687119285},"207":{"tf":3.605551275463989},"208":{"tf":3.3166247903554},"209":{"tf":3.0},"210":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":2.8284271247461903},"215":{"tf":1.0},"216":{"tf":2.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":2.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},"305":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.0},"318":{"tf":1.0},"364":{"tf":2.23606797749979},"365":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"394":{"tf":2.23606797749979},"395":{"tf":1.7320508075688772},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":3.605551275463989},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.0},"421":{"tf":2.6457513110645907},"422":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"466":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"165":{"tf":1.0},"502":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"112":{"tf":1.0},"375":{"tf":1.0},"455":{"tf":1.0},"474":{"tf":1.0},"488":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"167":{"tf":1.0},"309":{"tf":1.0},"459":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"418":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.0},"153":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"12":{"tf":1.0},"188":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"329":{"tf":1.0},"344":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"465":{"tf":2.0},"466":{"tf":1.0},"469":{"tf":1.0},"481":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"358":{"tf":3.3166247903554},"362":{"tf":1.4142135623730951},"421":{"tf":1.0}},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"471":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"205":{"tf":1.0},"238":{"tf":1.0},"455":{"tf":1.0},"465":{"tf":1.0},"472":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"296":{"tf":1.0},"72":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"296":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"126":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"284":{"tf":1.0},"29":{"tf":1.0},"358":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"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":{}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"204":{"tf":2.6457513110645907},"206":{"tf":1.7320508075688772},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"232":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":8,"docs":{"130":{"tf":1.0},"14":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"25":{"tf":1.0},"407":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"199":{"tf":1.0},"204":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":2.6457513110645907},"307":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"207":{"tf":1.4142135623730951},"398":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"486":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}},"u":{"df":2,"docs":{"204":{"tf":1.0},"255":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"102":{"tf":1.0},"13":{"tf":1.7320508075688772},"22":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":67,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":2.449489742783178},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"179":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.449489742783178},"209":{"tf":2.0},"222":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.4142135623730951},"284":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"310":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"393":{"tf":1.4142135623730951},"406":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"429":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.7320508075688772},"469":{"tf":1.0},"477":{"tf":1.0},"484":{"tf":1.0},"488":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":2.449489742783178},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"s":{"df":1,"docs":{"422":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"372":{"tf":1.0}}}}}},"df":7,"docs":{"205":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"161":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"179":{"tf":1.0},"54":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"130":{"tf":1.0},"58":{"tf":1.0}}}}},"d":{"a":{"df":4,"docs":{"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"415":{"tf":1.0}}},"df":4,"docs":{"325":{"tf":1.0},"327":{"tf":2.449489742783178},"328":{"tf":1.7320508075688772},"329":{"tf":1.0}}},"o":{"df":1,"docs":{"70":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":31,"docs":{"121":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":2.0},"129":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":2.0},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"254":{"tf":1.0},"281":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.7320508075688772},"358":{"tf":4.795831523312719},"362":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":2.23606797749979},"436":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"470":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":2.0},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":6,"docs":{"179":{"tf":1.4142135623730951},"199":{"tf":1.0},"208":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"498":{"tf":1.0}}}},"df":2,"docs":{"209":{"tf":1.4142135623730951},"372":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"209":{"tf":1.0},"358":{"tf":2.0},"401":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"314":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"284":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"d":{"df":8,"docs":{"128":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.4142135623730951},"396":{"tf":1.0},"455":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"119":{"tf":1.0},"165":{"tf":1.0}}}},"o":{"d":{"df":13,"docs":{"102":{"tf":2.0},"119":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"202":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"134":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":2.0},"214":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"355":{"tf":1.0},"372":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"177":{"tf":1.0},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.4142135623730951},"325":{"tf":1.0},"340":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"256":{"tf":1.0},"277":{"tf":1.0},"384":{"tf":2.23606797749979},"486":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"+":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"178":{"tf":1.4142135623730951}}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"178":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":2,"docs":{"178":{"tf":2.0},"183":{"tf":1.0}},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"146":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"164":{"tf":1.0},"208":{"tf":1.7320508075688772},"223":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"32":{"tf":1.4142135623730951},"340":{"tf":1.0},"370":{"tf":1.0},"44":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"500":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"7":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"412":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"11":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"444":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"440":{"tf":2.23606797749979},"441":{"tf":3.3166247903554},"442":{"tf":2.449489742783178},"443":{"tf":1.0},"444":{"tf":5.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":2.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"473":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"185":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"375":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.7320508075688772},"465":{"tf":2.0},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"470":{"tf":2.0},"472":{"tf":1.7320508075688772},"481":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.4142135623730951},"312":{"tf":1.0},"39":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"204":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772}}}}},"t":{"df":4,"docs":{"205":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"421":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"469":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"250":{"tf":1.4142135623730951},"27":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"0":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"1":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":2.0}}},"df":0,"docs":{}},"df":38,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"12":{"tf":1.7320508075688772},"13":{"tf":2.0},"14":{"tf":2.6457513110645907},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"281":{"tf":1.0},"3":{"tf":2.8284271247461903},"312":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":3.3166247903554},"470":{"tf":1.0},"472":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":2.8284271247461903},"7":{"tf":2.6457513110645907},"8":{"tf":2.449489742783178},"9":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":7,"docs":{"130":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"393":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"455":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"281":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"473":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":19,"docs":{"4":{"tf":1.0},"444":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"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},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"85":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"205":{"tf":1.0},"384":{"tf":1.7320508075688772},"421":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":26,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.7320508075688772},"307":{"tf":1.0},"316":{"tf":1.0},"358":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.4142135623730951},"466":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"248":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":2.0},"107":{"tf":1.0},"47":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":31,"docs":{"13":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"172":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.4142135623730951},"24":{"tf":1.0},"284":{"tf":1.0},"341":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"416":{"tf":2.0},"417":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"498":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":16,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"153":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"238":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"421":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.0},"56":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"223":{"tf":1.0},"72":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"196":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"25":{"tf":1.4142135623730951},"296":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"277":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"200":{"tf":1.0},"227":{"tf":1.0},"254":{"tf":1.4142135623730951},"284":{"tf":1.0},"355":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":2.0},"469":{"tf":1.0},"48":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.0},"128":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":2,"docs":{"167":{"tf":1.0},"295":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":44,"docs":{"117":{"tf":1.4142135623730951},"123":{"tf":1.0},"144":{"tf":1.0},"166":{"tf":1.4142135623730951},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":2.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"192":{"tf":1.7320508075688772},"202":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":1.0},"250":{"tf":1.4142135623730951},"266":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.7320508075688772},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"342":{"tf":1.0},"366":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"436":{"tf":1.0},"460":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"367":{"tf":1.0}}}},"c":{"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"t":{"df":22,"docs":{"141":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":2.449489742783178},"149":{"tf":2.0},"151":{"tf":1.0},"153":{"tf":1.0},"248":{"tf":2.449489742783178},"249":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":2.23606797749979},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"384":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"104":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"205":{"tf":1.4142135623730951},"219":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"415":{"tf":1.0},"43":{"tf":1.0},"460":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"504":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"179":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"312":{"tf":1.0},"360":{"tf":1.4142135623730951},"501":{"tf":1.0}},"i":{"df":3,"docs":{"277":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"107":{"tf":2.0},"108":{"tf":2.449489742783178},"110":{"tf":1.0},"47":{"tf":1.4142135623730951},"51":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":2.6457513110645907}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"m":{"a":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":50,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"263":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"322":{"tf":1.4142135623730951},"339":{"tf":1.0},"352":{"tf":1.4142135623730951},"380":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"399":{"tf":1.0},"415":{"tf":1.4142135623730951},"427":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"444":{"tf":1.0},"452":{"tf":1.4142135623730951},"463":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"509":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"186":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.0},"405":{"tf":1.0},"436":{"tf":1.4142135623730951},"498":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"164":{"tf":1.0},"171":{"tf":1.4142135623730951},"256":{"tf":1.0},"457":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"444":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"106":{"tf":1.0},"205":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}},"v":{"df":5,"docs":{"142":{"tf":1.0},"158":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"277":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}},"i":{"df":22,"docs":{"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"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},"249":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"418":{"tf":1.0},"422":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"131":{"tf":1.0},"174":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"384":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"416":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"425":{"tf":1.0},"438":{"tf":1.4142135623730951},"452":{"tf":1.0},"462":{"tf":1.0},"479":{"tf":1.0},"5":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"256":{"tf":1.0},"382":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"206":{"tf":3.0},"277":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"462":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"140":{"tf":2.6457513110645907},"466":{"tf":1.0},"470":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"305":{"tf":1.0},"35":{"tf":1.0},"472":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"206":{"tf":1.0},"249":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"418":{"tf":1.0},"422":{"tf":1.0},"52":{"tf":1.0}}},"s":{"df":2,"docs":{"3":{"tf":1.0},"5":{"tf":1.0}}},"t":{"df":2,"docs":{"395":{"tf":1.0},"398":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"158":{"tf":1.0},"205":{"tf":1.0},"35":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"419":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"204":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951}}}},"o":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"425":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"487":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"34":{"tf":1.0}}},"df":11,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"26":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"358":{"tf":1.0},"417":{"tf":1.0},"45":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":9,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"132":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"358":{"tf":2.6457513110645907},"384":{"tf":2.0},"385":{"tf":1.0},"421":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"481":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"250":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0},"382":{"tf":1.4142135623730951},"386":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":19,"docs":{"119":{"tf":1.0},"153":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"235":{"tf":1.0},"258":{"tf":1.0},"308":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"406":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":36,"docs":{"11":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":2.0},"193":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.7320508075688772},"222":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.7320508075688772},"310":{"tf":1.4142135623730951},"312":{"tf":2.449489742783178},"313":{"tf":1.0},"328":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"419":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":1.0},"8":{"tf":2.8284271247461903},"9":{"tf":2.8284271247461903}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"208":{"tf":1.0},"375":{"tf":1.0}},"i":{"df":1,"docs":{"372":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":8,"docs":{"102":{"tf":1.0},"127":{"tf":1.0},"256":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"147":{"tf":1.0},"204":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"308":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"372":{"tf":1.4142135623730951},"421":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":59,"docs":{"1":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"150":{"tf":1.4142135623730951},"159":{"tf":1.0},"166":{"tf":1.7320508075688772},"175":{"tf":1.0},"188":{"tf":1.4142135623730951},"196":{"tf":1.0},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.7320508075688772},"248":{"tf":1.0},"255":{"tf":1.4142135623730951},"264":{"tf":1.0},"270":{"tf":1.4142135623730951},"275":{"tf":1.0},"284":{"tf":1.4142135623730951},"292":{"tf":1.0},"297":{"tf":1.4142135623730951},"303":{"tf":1.0},"314":{"tf":1.4142135623730951},"323":{"tf":1.0},"331":{"tf":1.4142135623730951},"339":{"tf":1.0},"344":{"tf":1.4142135623730951},"353":{"tf":1.0},"360":{"tf":1.4142135623730951},"364":{"tf":1.0},"376":{"tf":1.4142135623730951},"380":{"tf":1.0},"385":{"tf":1.4142135623730951},"399":{"tf":1.0},"407":{"tf":1.4142135623730951},"416":{"tf":1.0},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"432":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.7320508075688772},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"482":{"tf":1.0},"487":{"tf":1.4142135623730951},"496":{"tf":1.0},"501":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"452":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"312":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}},"n":{"df":1,"docs":{"417":{"tf":1.0}}},"r":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"129":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"110":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"204":{"tf":1.0},"256":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"205":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":2.23606797749979},"428":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"439":{"tf":1.0},"469":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"146":{"tf":1.0},"165":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.449489742783178},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"311":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"417":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"417":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"296":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":24,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.4142135623730951},"3":{"tf":1.0},"364":{"tf":2.23606797749979},"365":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"422":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":9,"docs":{"178":{"tf":1.4142135623730951},"179":{"tf":2.0},"204":{"tf":1.0},"235":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"318":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0}}}},"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":42,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":2.6457513110645907},"222":{"tf":1.0},"232":{"tf":1.7320508075688772},"24":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"325":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"37":{"tf":1.0},"384":{"tf":1.4142135623730951},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"42":{"tf":1.0},"421":{"tf":1.7320508075688772},"442":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.0},"486":{"tf":1.4142135623730951},"50":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"178":{"tf":1.0},"215":{"tf":1.0},"386":{"tf":1.0},"421":{"tf":1.4142135623730951},"498":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"177":{"tf":1.0}},"i":{"df":5,"docs":{"129":{"tf":1.0},"140":{"tf":1.4142135623730951},"277":{"tf":1.0},"488":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"422":{"tf":1.0},"505":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"143":{"tf":1.0},"254":{"tf":1.0},"295":{"tf":1.0},"386":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":12,"docs":{"14":{"tf":1.4142135623730951},"196":{"tf":1.0},"208":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.0},"244":{"tf":1.0},"3":{"tf":1.0},"396":{"tf":1.0},"424":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":26,"docs":{"115":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"313":{"tf":1.0},"449":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"48":{"tf":1.0},"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":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}},"g":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"424":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.8284271247461903},"208":{"tf":1.0},"209":{"tf":1.0},"285":{"tf":1.0},"398":{"tf":1.4142135623730951},"418":{"tf":1.0},"465":{"tf":1.4142135623730951},"47":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":15,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"166":{"tf":1.4142135623730951},"18":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"311":{"tf":1.0},"355":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"127":{"tf":1.0},"442":{"tf":1.0},"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"179":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"205":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"232":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"241":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"358":{"tf":1.0},"418":{"tf":1.0},"47":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"58":{"tf":1.0}}}}}}},"m":{"b":{"df":1,"docs":{"128":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"47":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"312":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"178":{"tf":1.0},"422":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":4,"docs":{"43":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"444":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"209":{"tf":2.0},"358":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"119":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"146":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"194":{"tf":1.0},"204":{"tf":1.0},"45":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"205":{"tf":1.0},"217":{"tf":1.0},"492":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":19,"docs":{"102":{"tf":2.0},"104":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"23":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":2.0},"358":{"tf":2.0},"47":{"tf":1.4142135623730951},"486":{"tf":2.23606797749979},"51":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"292":{"tf":2.449489742783178},"293":{"tf":2.0},"294":{"tf":2.0},"295":{"tf":2.23606797749979},"296":{"tf":2.6457513110645907},"297":{"tf":2.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"296":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"24":{"tf":1.0},"251":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"3":{"tf":1.0},"384":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"106":{"tf":1.4142135623730951},"125":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.6457513110645907},"208":{"tf":2.449489742783178},"209":{"tf":4.898979485566356},"341":{"tf":1.0},"373":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.4142135623730951},"436":{"tf":1.0},"442":{"tf":1.0},"491":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"311":{"tf":1.0},"398":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"253":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":17,"docs":{"284":{"tf":1.0},"339":{"tf":2.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"406":{"tf":1.0},"497":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"188":{"tf":1.0},"202":{"tf":1.0},"328":{"tf":1.4142135623730951},"337":{"tf":1.0},"419":{"tf":1.0},"60":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.7320508075688772},"19":{"tf":1.0},"22":{"tf":1.0},"423":{"tf":1.0},"433":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"126":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"233":{"tf":1.0},"262":{"tf":1.0},"442":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":48,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"412":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"484":{"tf":1.4142135623730951},"488":{"tf":1.0},"498":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":15,"docs":{"122":{"tf":1.0},"157":{"tf":1.0},"206":{"tf":2.0},"256":{"tf":1.0},"262":{"tf":1.0},"313":{"tf":1.4142135623730951},"35":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.4142135623730951},"501":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"430":{"tf":1.0},"98":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"151":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.4142135623730951},"256":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"406":{"tf":1.4142135623730951},"423":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"102":{"tf":1.0},"104":{"tf":2.6457513110645907},"129":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":1.0},"384":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"164":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"161":{"tf":1.4142135623730951},"164":{"tf":1.0},"176":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":3,"docs":{"179":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"'":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":4.123105625617661},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":23,"docs":{"129":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"206":{"tf":3.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"222":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.0},"340":{"tf":1.0},"358":{"tf":2.0},"362":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"422":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"48":{"tf":1.4142135623730951},"498":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"206":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":2,"docs":{"312":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"502":{"tf":1.0},"51":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"51":{"tf":2.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"120":{"tf":1.0},"125":{"tf":2.23606797749979},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"134":{"tf":1.0}}}}}},"c":{"2":{"0":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"7":{"2":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":78,"docs":{"1":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"196":{"tf":1.0},"211":{"tf":1.4142135623730951},"216":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"275":{"tf":1.0},"287":{"tf":1.4142135623730951},"292":{"tf":1.0},"299":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"130":{"tf":1.0},"143":{"tf":1.0},"165":{"tf":1.0},"358":{"tf":4.242640687119285},"502":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"422":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"309":{"tf":1.0},"34":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.0},"448":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"308":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"421":{"tf":1.0},"423":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"t":{"c":{"df":5,"docs":{"250":{"tf":1.0},"313":{"tf":1.0},"384":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"179":{"tf":1.0}}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.0},"66":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"247":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"266":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"368":{"tf":1.0}}}}},"n":{"df":14,"docs":{"127":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":2.6457513110645907},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"429":{"tf":1.0},"473":{"tf":1.4142135623730951},"48":{"tf":1.0},"506":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"120":{"tf":1.0},"122":{"tf":1.0}}}},"t":{"df":4,"docs":{"140":{"tf":1.0},"311":{"tf":1.0},"444":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951}},"u":{"df":5,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.4142135623730951},"402":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"250":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"145":{"tf":1.0},"509":{"tf":1.0}}}}}}},"m":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":21,"docs":{"175":{"tf":2.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}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":2.23606797749979},"179":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":2.449489742783178},"186":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"310":{"tf":1.0},"54":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"146":{"tf":1.0},"366":{"tf":1.0},"382":{"tf":1.0},"415":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":35,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"112":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"235":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"321":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.4142135623730951},"364":{"tf":1.0},"375":{"tf":2.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"421":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"32":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.7320508075688772},"429":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"183":{"tf":1.4142135623730951},"191":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"358":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"160":{"tf":1.0},"161":{"tf":1.0},"166":{"tf":1.0},"305":{"tf":1.4142135623730951},"358":{"tf":3.7416573867739413},"401":{"tf":1.7320508075688772},"408":{"tf":1.0},"413":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"165":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":47,"docs":{"151":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.7320508075688772},"179":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":2.449489742783178},"209":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"242":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":2.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"391":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"465":{"tf":1.0},"498":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"191":{"tf":1.0},"192":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"312":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"343":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.4142135623730951},"410":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"504":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"207":{"tf":1.0},"232":{"tf":1.0},"277":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"111":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"287":{"tf":1.0},"308":{"tf":1.0},"412":{"tf":1.0},"444":{"tf":1.0},"70":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"423":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"204":{"tf":1.0},"206":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"205":{"tf":1.0},"325":{"tf":1.0},"343":{"tf":1.0},"486":{"tf":1.4142135623730951}}}},"n":{"df":67,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"120":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":1.4142135623730951},"151":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"175":{"tf":1.0},"182":{"tf":1.4142135623730951},"196":{"tf":1.0},"203":{"tf":1.4142135623730951},"216":{"tf":1.0},"221":{"tf":1.4142135623730951},"230":{"tf":1.0},"235":{"tf":1.4142135623730951},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"256":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"275":{"tf":1.0},"280":{"tf":1.4142135623730951},"292":{"tf":1.0},"296":{"tf":1.4142135623730951},"303":{"tf":1.0},"307":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"353":{"tf":1.0},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.4142135623730951},"380":{"tf":1.0},"384":{"tf":1.4142135623730951},"394":{"tf":1.0},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"403":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"416":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"427":{"tf":1.0},"431":{"tf":1.4142135623730951},"440":{"tf":1.0},"444":{"tf":1.4142135623730951},"453":{"tf":1.0},"457":{"tf":1.4142135623730951},"463":{"tf":1.0},"468":{"tf":1.4142135623730951},"482":{"tf":1.0},"486":{"tf":1.4142135623730951},"496":{"tf":1.0},"500":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"130":{"tf":1.0},"223":{"tf":1.0},"276":{"tf":1.0},"283":{"tf":1.0},"32":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"21":{"tf":1.0},"306":{"tf":1.0},"41":{"tf":1.0},"465":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":1,"docs":{"424":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"12":{"tf":1.0},"372":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"161":{"tf":1.0},"164":{"tf":3.0},"165":{"tf":1.4142135623730951},"486":{"tf":1.0}}}},"s":{"df":13,"docs":{"179":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"316":{"tf":1.0},"359":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"457":{"tf":1.0},"469":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"265":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"358":{"tf":1.7320508075688772},"425":{"tf":1.0},"430":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"*":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"4":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"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":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"362":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"362":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":4,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"249":{"tf":1.0},"423":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":1.0},"184":{"tf":1.0},"289":{"tf":1.0},"411":{"tf":1.0},"425":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":1,"docs":{"187":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"161":{"tf":1.0},"212":{"tf":1.0},"296":{"tf":1.0},"398":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"343":{"tf":1.0}}}},"df":8,"docs":{"119":{"tf":1.0},"250":{"tf":1.4142135623730951},"358":{"tf":1.0},"362":{"tf":1.4142135623730951},"448":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"179":{"tf":1.0},"183":{"tf":1.0},"374":{"tf":1.4142135623730951},"423":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.7320508075688772},"130":{"tf":1.0},"181":{"tf":1.0},"404":{"tf":1.4142135623730951},"444":{"tf":1.0},"455":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.4641016151377544},"85":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":2.0}},"i":{"c":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"404":{"tf":1.7320508075688772},"414":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"f":{"+":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"201":{"tf":1.4142135623730951},"206":{"tf":1.0},"27":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"232":{"tf":1.0},"312":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":12,"docs":{"208":{"tf":2.6457513110645907},"222":{"tf":1.0},"312":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"126":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"358":{"tf":3.1622776601683795},"98":{"tf":1.0}}}}},"r":{"df":4,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"417":{"tf":1.4142135623730951},"422":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"126":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"127":{"tf":1.4142135623730951},"208":{"tf":1.0},"370":{"tf":1.0}}},"s":{"df":3,"docs":{"104":{"tf":1.0},"384":{"tf":2.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"157":{"tf":1.0},"178":{"tf":1.0},"262":{"tf":1.0},"487":{"tf":1.0},"98":{"tf":1.0}}}},"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":4,"docs":{"179":{"tf":1.0},"200":{"tf":1.0},"311":{"tf":1.0},"398":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"201":{"tf":1.0},"311":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"307":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"214":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"122":{"tf":1.0},"406":{"tf":1.0}}}}}}},"df":1,"docs":{"372":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"426":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"255":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"136":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"211":{"tf":1.0},"313":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"502":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"207":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.4142135623730951},"268":{"tf":1.0},"442":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}},"df":2,"docs":{"398":{"tf":1.0},"442":{"tf":1.0}},"l":{"df":4,"docs":{"446":{"tf":1.0},"452":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"177":{"tf":1.0},"179":{"tf":1.0},"220":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"0":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"9":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"4":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"df":1,"docs":{"266":{"tf":1.0}}},"df":37,"docs":{"0":{"tf":1.0},"202":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":2.0},"273":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"325":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":1.0},"419":{"tf":1.0},"443":{"tf":1.0},"446":{"tf":1.0},"84":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"129":{"tf":1.0},"398":{"tf":1.0},"436":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"32":{"tf":1.0},"382":{"tf":1.0},"442":{"tf":1.0},"501":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"129":{"tf":1.0},"147":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"222":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"32":{"tf":1.0},"384":{"tf":2.0},"48":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"402":{"tf":1.0}}},"l":{"df":4,"docs":{"102":{"tf":1.0},"205":{"tf":1.0},"235":{"tf":1.4142135623730951},"48":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"146":{"tf":2.8284271247461903},"205":{"tf":2.0},"206":{"tf":3.605551275463989},"212":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"48":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"210":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"406":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"297":{"tf":1.0}},"i":{"df":3,"docs":{"13":{"tf":1.0},"3":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":15,"docs":{"125":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"178":{"tf":1.0},"200":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"398":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"130":{"tf":1.0},"418":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"358":{"tf":1.0},"422":{"tf":1.0}}}},"t":{"df":2,"docs":{"200":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":28,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":2.23606797749979},"223":{"tf":1.0},"23":{"tf":1.0},"258":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"312":{"tf":1.4142135623730951},"358":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":2.449489742783178},"474":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"171":{"tf":1.0},"205":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"358":{"tf":2.449489742783178},"50":{"tf":1.0},"99":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"236":{"tf":1.0},"35":{"tf":1.0}}}},"x":{"df":10,"docs":{"128":{"tf":1.0},"146":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"235":{"tf":2.0},"32":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"296":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"384":{"tf":1.0},"500":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"208":{"tf":1.0},"310":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"311":{"tf":1.0}},"p":{"df":1,"docs":{"372":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"398":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":10,"docs":{"128":{"tf":1.0},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":2.0},"457":{"tf":1.0},"469":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"327":{"tf":1.0},"65":{"tf":1.0}},"s":{"df":2,"docs":{"26":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":40,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"164":{"tf":1.7320508075688772},"177":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"268":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"359":{"tf":1.4142135623730951},"362":{"tf":1.0},"398":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.4142135623730951},"43":{"tf":1.0},"436":{"tf":1.0},"444":{"tf":1.0},"457":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"200":{"tf":1.0},"343":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":2.449489742783178},"421":{"tf":1.0},"83":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"445":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"254":{"tf":1.4142135623730951},"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"140":{"tf":1.4142135623730951},"24":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"58":{"tf":2.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}},"t":{"df":13,"docs":{"204":{"tf":1.0},"254":{"tf":1.0},"306":{"tf":1.0},"33":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"486":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}}}},"df":16,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"116":{"tf":1.0},"207":{"tf":1.0},"222":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"382":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"422":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"208":{"tf":1.0},"48":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"14":{"tf":1.0},"244":{"tf":1.0},"273":{"tf":1.0},"379":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"341":{"tf":1.0},"425":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"212":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0},"61":{"tf":1.0}}}},"df":10,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"32":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"45":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"179":{"tf":1.0},"235":{"tf":1.0},"255":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"455":{"tf":1.0},"462":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"204":{"tf":1.4142135623730951},"416":{"tf":1.0},"418":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":4,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"83":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":7,"docs":{"199":{"tf":1.0},"206":{"tf":1.4142135623730951},"281":{"tf":1.0},"312":{"tf":1.0},"355":{"tf":1.7320508075688772},"452":{"tf":1.0},"504":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"442":{"tf":1.0},"469":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"398":{"tf":1.0},"469":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"161":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"425":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"284":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0}}}}},"l":{"df":15,"docs":{"104":{"tf":1.0},"153":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"219":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":1.4142135623730951},"258":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"33":{"tf":1.0},"382":{"tf":2.23606797749979},"421":{"tf":1.0},"83":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":5,"docs":{"119":{"tf":1.0},"161":{"tf":1.0},"205":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"164":{"tf":3.0},"358":{"tf":7.0},"359":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},"df":76,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":2.449489742783178},"120":{"tf":1.0},"128":{"tf":2.8284271247461903},"130":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.0},"164":{"tf":2.23606797749979},"165":{"tf":1.7320508075688772},"179":{"tf":2.0},"196":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":2.0},"208":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"253":{"tf":1.4142135623730951},"272":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.449489742783178},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"316":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"353":{"tf":1.0},"355":{"tf":2.0},"358":{"tf":7.3484692283495345},"359":{"tf":2.23606797749979},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"372":{"tf":2.449489742783178},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":2.0},"421":{"tf":1.0},"43":{"tf":2.449489742783178},"44":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":2.23606797749979},"453":{"tf":2.23606797749979},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.7320508075688772},"457":{"tf":2.449489742783178},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":2.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"157":{"tf":1.0},"262":{"tf":1.0}}}}}}},"df":9,"docs":{"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"269":{"tf":1.0},"297":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"422":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"204":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.4142135623730951},"83":{"tf":1.0},"9":{"tf":1.7320508075688772},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"151":{"tf":1.0},"201":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"355":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":70,"docs":{"1":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.7320508075688772},"275":{"tf":1.0},"291":{"tf":2.0},"292":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.0},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"374":{"tf":1.0},"378":{"tf":1.4142135623730951},"380":{"tf":1.0},"393":{"tf":1.4142135623730951},"399":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.7320508075688772},"419":{"tf":1.0},"421":{"tf":1.4142135623730951},"427":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"452":{"tf":1.4142135623730951},"463":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"509":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"212":{"tf":1.0}}}}}},"g":{"a":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":2,"docs":{"180":{"tf":1.0},"183":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"384":{"tf":1.0},"504":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"231":{"tf":1.0},"422":{"tf":1.0}}}},"p":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"196":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"452":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"394":{"tf":1.0},"416":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":54,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"122":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"179":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.7320508075688772},"277":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"36":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"395":{"tf":1.0},"398":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"443":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"482":{"tf":2.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":10,"docs":{"143":{"tf":1.4142135623730951},"146":{"tf":2.0},"148":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"284":{"tf":1.7320508075688772},"308":{"tf":1.4142135623730951},"312":{"tf":1.0},"47":{"tf":2.8284271247461903}},"s":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"131":{"tf":1.0},"140":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"472":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"b":{"df":3,"docs":{"358":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":4,"docs":{"244":{"tf":1.4142135623730951},"250":{"tf":1.0},"268":{"tf":1.0},"481":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"143":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"70":{"tf":1.0}},"n":{"df":29,"docs":{"11":{"tf":1.0},"129":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.7320508075688772},"222":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"34":{"tf":1.0},"358":{"tf":2.8284271247461903},"362":{"tf":1.4142135623730951},"367":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"164":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"209":{"tf":1.0},"276":{"tf":1.0},"325":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.0}}}},"df":10,"docs":{"129":{"tf":1.0},"183":{"tf":1.0},"215":{"tf":1.0},"277":{"tf":1.0},"291":{"tf":1.0},"355":{"tf":1.0},"452":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"o":{"d":{"df":9,"docs":{"157":{"tf":1.0},"232":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"307":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"146":{"tf":1.0},"340":{"tf":1.0}}}}}},"v":{"1":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"365":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.7320508075688772},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"183":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"312":{"tf":3.0},"313":{"tf":2.23606797749979},"321":{"tf":1.0},"322":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.0},"442":{"tf":1.0},"449":{"tf":1.0},"466":{"tf":1.0}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"421":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"452":{"tf":1.4142135623730951},"474":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"206":{"tf":1.0},"222":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"439":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"442":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":13,"docs":{"126":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"305":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"382":{"tf":1.0}}}},"w":{"df":2,"docs":{"179":{"tf":1.0},"367":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"188":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"204":{"tf":1.0},"232":{"tf":1.0},"305":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":3,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"245":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"209":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":2,"docs":{"232":{"tf":1.0},"312":{"tf":1.0}}},"v":{"df":1,"docs":{"134":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"130":{"tf":1.0},"297":{"tf":1.0},"329":{"tf":1.0}},"l":{"df":9,"docs":{"118":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"312":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"140":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"388":{"tf":1.0},"422":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"178":{"tf":1.0},"401":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"151":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}},"i":{"df":1,"docs":{"416":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"129":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"33":{"tf":1.4142135623730951},"355":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":2.23606797749979},"44":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"72":{"tf":2.0},"95":{"tf":1.0}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":22,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"385":{"tf":1.0},"422":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"141":{"tf":1.0},"146":{"tf":2.23606797749979},"149":{"tf":2.0},"158":{"tf":1.0},"281":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"358":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"358":{"tf":2.23606797749979},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":16,"docs":{"164":{"tf":1.0},"355":{"tf":1.4142135623730951},"496":{"tf":2.23606797749979},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"502":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"165":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"361":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"l":{"d":{"df":3,"docs":{"207":{"tf":1.0},"312":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":11,"docs":{"145":{"tf":1.0},"161":{"tf":1.0},"207":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"425":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"465":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":2.0}}}}}},"n":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"140":{"tf":1.0}}},"df":24,"docs":{"125":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"157":{"tf":1.0},"161":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.7320508075688772},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"50":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"470":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"341":{"tf":1.0},"343":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":12,"docs":{"179":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"227":{"tf":1.0},"325":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"41":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"487":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"370":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"473":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"235":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"166":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"232":{"tf":1.0},"424":{"tf":1.0},"468":{"tf":1.0},"481":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"449":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"158":{"tf":1.0},"412":{"tf":1.0}},"i":{"df":5,"docs":{"146":{"tf":2.23606797749979},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"127":{"tf":1.0},"165":{"tf":1.7320508075688772},"181":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"122":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"313":{"tf":1.0},"368":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"419":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"178":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"401":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"178":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"439":{"tf":1.0},"452":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}},"df":29,"docs":{"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"200":{"tf":1.0},"353":{"tf":2.6457513110645907},"354":{"tf":1.7320508075688772},"355":{"tf":3.1622776601683795},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":5.0990195135927845},"359":{"tf":2.449489742783178},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":1.7320508075688772},"384":{"tf":1.0},"453":{"tf":2.23606797749979},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.7320508075688772},"457":{"tf":2.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"428":{"tf":1.4142135623730951},"429":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"438":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.7320508075688772}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"296":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"3":{"7":{"7":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"4":{"7":{"5":{"8":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"8":{"5":{"df":2,"docs":{"289":{"tf":1.0},"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"3":{"9":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"130":{"tf":1.0},"146":{"tf":1.0},"479":{"tf":1.0},"500":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"509":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"3":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"0":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"383":{"tf":1.0}}},"6":{"df":1,"docs":{"358":{"tf":1.0}}},"7":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"/":{"#":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"9":{"1":{"%":{"a":{"0":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"6":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"q":{"?":{"df":0,"docs":{},"t":{"=":{"5":{"2":{"6":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":47,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"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.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"235":{"tf":1.0},"3":{"tf":1.7320508075688772},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"411":{"tf":1.0},"424":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.0}}}}}}},"i":{"'":{"d":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"157":{"tf":1.0},"262":{"tf":1.0}}}},".":{"df":8,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"358":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"3":{"2":{"df":2,"docs":{"164":{"tf":2.8284271247461903},"358":{"tf":9.273618495495704}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"358":{"tf":8.246211251235321},"359":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":10,"docs":{"104":{"tf":2.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"358":{"tf":1.4142135623730951},"384":{"tf":1.0},"469":{"tf":1.4142135623730951},"483":{"tf":1.0},"487":{"tf":1.0}},"e":{"a":{"df":5,"docs":{"13":{"tf":1.0},"355":{"tf":1.0},"425":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0}},"l":{"df":8,"docs":{"200":{"tf":1.0},"208":{"tf":1.0},"277":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"24":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"312":{"tf":2.6457513110645907},"313":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.1622776601683795},"39":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":16,"docs":{"102":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"235":{"tf":1.0},"254":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"358":{"tf":2.23606797749979},"42":{"tf":1.0},"446":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"108":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"384":{"tf":1.0}}}}}},"i":{"df":3,"docs":{"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0}},"i":{"df":3,"docs":{"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"422":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"374":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":1,"docs":{"94":{"tf":1.0}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":23,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"14":{"tf":1.7320508075688772},"169":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.4142135623730951},"423":{"tf":1.0},"455":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":89,"docs":{"0":{"tf":1.0},"100":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":2.0},"151":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":2.0},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"27":{"tf":1.0},"285":{"tf":1.4142135623730951},"3":{"tf":1.0},"310":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"355":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"441":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"456":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951}}}}}}}}},"i":{"c":{"df":2,"docs":{"14":{"tf":1.0},"388":{"tf":1.0}}},"df":2,"docs":{"199":{"tf":1.0},"47":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"468":{"tf":1.0}}}}}}},"df":22,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"164":{"tf":2.0},"170":{"tf":1.0},"195":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"318":{"tf":1.0},"384":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"47":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"183":{"tf":1.0}},"s":{"df":4,"docs":{"127":{"tf":1.0},"200":{"tf":1.0},"341":{"tf":1.0},"385":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"481":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":52,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"239":{"tf":1.0},"275":{"tf":2.23606797749979},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"380":{"tf":2.0},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"433":{"tf":1.0},"444":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"58":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"262":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"235":{"tf":1.0},"325":{"tf":1.0},"398":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"473":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"207":{"tf":1.0},"421":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":2.0},"146":{"tf":1.7320508075688772},"178":{"tf":1.0},"18":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"245":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"283":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"441":{"tf":1.0},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"483":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":2.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":6,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"324":{"tf":1.0},"398":{"tf":1.7320508075688772}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"398":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":43,"docs":{"110":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"153":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"214":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"235":{"tf":1.0},"258":{"tf":1.0},"327":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":2.0},"375":{"tf":1.7320508075688772},"398":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"429":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.4142135623730951},"455":{"tf":1.0},"469":{"tf":1.0},"481":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"310":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.7320508075688772},"358":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"140":{"tf":1.0},"178":{"tf":1.0},"337":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"207":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"205":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":3.605551275463989},"140":{"tf":2.449489742783178},"205":{"tf":1.4142135623730951},"222":{"tf":1.0},"449":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"i":{"c":{"df":15,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"255":{"tf":1.0},"269":{"tf":1.7320508075688772},"341":{"tf":1.0},"358":{"tf":3.605551275463989},"384":{"tf":1.0},"398":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":14,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.0},"310":{"tf":1.0},"327":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}},"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":2,"docs":{"355":{"tf":1.0},"424":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"358":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"398":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"398":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"396":{"tf":1.0},"398":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":3,"docs":{"104":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.0},"209":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"312":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"215":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"250":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"362":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":2.0},"407":{"tf":1.0},"413":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"12":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":2.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"66":{"tf":2.0}}}}},"k":{"!":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"175":{"tf":1.0},"176":{"tf":1.0},"187":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":2.6457513110645907},"181":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"200":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.4142135623730951},"33":{"tf":1.0},"358":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":2.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"d":{"df":19,"docs":{"159":{"tf":2.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.7320508075688772},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"66":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"165":{"tf":1.4142135623730951},"26":{"tf":1.0},"272":{"tf":1.0},"421":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"196":{"tf":1.0},"204":{"tf":4.0},"205":{"tf":2.0},"206":{"tf":2.449489742783178},"207":{"tf":2.6457513110645907},"208":{"tf":2.8284271247461903},"209":{"tf":2.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"222":{"tf":2.0},"223":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"165":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"209":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":2.449489742783178}}}}}}}},"t":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"204":{"tf":1.0},"255":{"tf":1.0},"328":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.3166247903554},"398":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.4142135623730951},"469":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"309":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"457":{"tf":1.0}},"r":{"df":12,"docs":{"164":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"27":{"tf":1.0},"315":{"tf":1.0},"416":{"tf":1.0},"430":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"n":{"d":{"df":6,"docs":{"208":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"41":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.0},"41":{"tf":1.0}}},"t":{"df":1,"docs":{"422":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"179":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"416":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.0},"144":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"382":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}},"f":{"a":{"c":{"df":33,"docs":{"179":{"tf":1.4142135623730951},"184":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":2.6457513110645907},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"288":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.0},"411":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":2.449489742783178},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"199":{"tf":1.0},"406":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"206":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}},"l":{"a":{"c":{"df":3,"docs":{"205":{"tf":2.0},"206":{"tf":1.0},"209":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"205":{"tf":2.0},"206":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"205":{"tf":1.7320508075688772},"208":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"360":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"32":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"200":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.0},"498":{"tf":1.0},"96":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"201":{"tf":1.0},"469":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":42,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.4142135623730951},"358":{"tf":1.0},"374":{"tf":2.0},"398":{"tf":1.0},"400":{"tf":1.4142135623730951},"418":{"tf":2.0},"453":{"tf":2.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"492":{"tf":1.0},"498":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"t":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"265":{"tf":1.0},"308":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"140":{"tf":1.0},"179":{"tf":1.0},"277":{"tf":1.4142135623730951},"284":{"tf":1.0},"358":{"tf":2.23606797749979},"384":{"tf":1.4142135623730951},"415":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"372":{"tf":1.0},"398":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"200":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":11,"docs":{"119":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"312":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"416":{"tf":1.0},"464":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"232":{"tf":1.0},"235":{"tf":2.449489742783178},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":9,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"389":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"256":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"472":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"310":{"tf":1.0},"352":{"tf":1.0},"505":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"395":{"tf":1.0},"398":{"tf":1.0}}},"df":0,"docs":{}}},"df":22,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"312":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"444":{"tf":1.0},"462":{"tf":1.0},"481":{"tf":1.0},"502":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}}}},"t":{"'":{"df":16,"docs":{"128":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"312":{"tf":1.0},"385":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"41":{"tf":1.0},"418":{"tf":1.0},"468":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":11,"docs":{"206":{"tf":1.7320508075688772},"224":{"tf":1.0},"3":{"tf":1.0},"341":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":2.0},"385":{"tf":2.0},"42":{"tf":2.449489742783178},"455":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"r":{"df":3,"docs":{"153":{"tf":1.0},"200":{"tf":1.0},"258":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":16,"docs":{"147":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"199":{"tf":1.0},"223":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"422":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"df":3,"docs":{"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0}}},"x":{"df":2,"docs":{"327":{"tf":1.0},"328":{"tf":1.0}}},"z":{"df":1,"docs":{"385":{"tf":1.0}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"293":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"230":{"tf":1.0},"264":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"235":{"tf":1.0},"268":{"tf":1.0},"296":{"tf":1.0},"329":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"296":{"tf":1.0}}}}}}},"n":{"a":{"df":2,"docs":{"394":{"tf":1.0},"416":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"118":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"208":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"216":{"tf":1.0},"230":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"364":{"tf":1.0},"399":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"196":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"165":{"tf":1.0}},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}}},"k":{"+":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"253":{"tf":1.7320508075688772},"256":{"tf":1.0},"258":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"129":{"tf":1.0},"145":{"tf":1.0},"167":{"tf":1.0},"209":{"tf":1.0},"296":{"tf":1.0},"384":{"tf":1.0},"460":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"191":{"tf":1.0},"256":{"tf":1.0},"51":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"358":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":3.605551275463989}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":32,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":2.8284271247461903},"151":{"tf":2.0},"153":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.7320508075688772},"253":{"tf":2.449489742783178},"256":{"tf":2.0},"258":{"tf":1.4142135623730951},"277":{"tf":1.0},"358":{"tf":5.916079783099616},"382":{"tf":2.8284271247461903},"384":{"tf":4.47213595499958},"386":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.6457513110645907},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":2.0},"487":{"tf":1.0},"492":{"tf":1.0},"498":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":2.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"358":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}},"b":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"153":{"tf":1.0},"258":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"164":{"tf":1.0},"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"129":{"tf":1.4142135623730951},"143":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"194":{"tf":1.0},"258":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"129":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"221":{"tf":1.0},"256":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"35":{"tf":1.0},"358":{"tf":2.0},"422":{"tf":1.0},"45":{"tf":1.0},"498":{"tf":1.4142135623730951},"50":{"tf":1.0},"64":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"141":{"tf":1.0},"248":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"380":{"tf":1.0},"496":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"m":{"df":5,"docs":{"184":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":3.0},"9":{"tf":3.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"453":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"a":{"'":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}}},"df":33,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.4142135623730951},"303":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":3.0},"322":{"tf":1.0},"382":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"ö":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"1":{"7":{"6":{"2":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"179":{"tf":1.0}}},"2":{"df":1,"docs":{"194":{"tf":1.0}}},"3":{"4":{"0":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"5":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"c":{"1":{"5":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"245":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"188":{"tf":1.0},"235":{"tf":1.0},"277":{"tf":1.0},"358":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"161":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"358":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":17,"docs":{"126":{"tf":1.0},"134":{"tf":1.0},"151":{"tf":1.4142135623730951},"183":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"312":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"419":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"175":{"tf":1.0},"179":{"tf":1.0},"313":{"tf":1.0},"358":{"tf":1.4142135623730951},"424":{"tf":1.0},"442":{"tf":1.4142135623730951},"50":{"tf":1.0},"501":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"408":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}}}}}}},"df":13,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"149":{"tf":1.0},"161":{"tf":1.0},"188":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"384":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"470":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}},"n":{"c":{"df":2,"docs":{"208":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":9,"docs":{"131":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.0},"422":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":4,"docs":{"106":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"500":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"126":{"tf":1.0},"210":{"tf":1.0},"273":{"tf":1.0},"284":{"tf":1.0},"304":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"120":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"372":{"tf":1.0}},"e":{"a":{"d":{"df":18,"docs":{"14":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"193":{"tf":1.0},"206":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"455":{"tf":1.0},"473":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"205":{"tf":1.0},"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"205":{"tf":1.7320508075688772},"208":{"tf":2.23606797749979},"214":{"tf":1.0},"418":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":2,"docs":{"102":{"tf":1.0},"106":{"tf":2.0}}},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}},"s":{"df":14,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"277":{"tf":2.0},"278":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":2.449489742783178}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"204":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{">":{"1":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"1":{"2":{"8":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"430":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"372":{"tf":1.0}}},"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"372":{"tf":1.0}}},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"372":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"421":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"60":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"161":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.0},"167":{"tf":1.0},"171":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":1,"docs":{"486":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":8,"docs":{"125":{"tf":1.0},"205":{"tf":1.0},"254":{"tf":1.7320508075688772},"340":{"tf":1.0},"343":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"372":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"200":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.7320508075688772},"232":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"312":{"tf":1.0},"328":{"tf":1.0},"358":{"tf":1.0},"374":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"372":{"tf":1.0}}},"df":2,"docs":{"372":{"tf":1.0},"398":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"144":{"tf":1.0},"209":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"342":{"tf":1.0},"41":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"127":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"374":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":3,"docs":{"151":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":1,"docs":{"421":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"432":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"207":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":21,"docs":{"149":{"tf":1.0},"153":{"tf":1.0},"250":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"318":{"tf":1.0},"380":{"tf":2.0},"381":{"tf":1.4142135623730951},"382":{"tf":2.449489742783178},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"456":{"tf":1.0},"470":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"232":{"tf":1.0},"269":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":31,"docs":{"126":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":3.0},"191":{"tf":1.4142135623730951},"199":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"256":{"tf":1.0},"272":{"tf":1.0},"313":{"tf":1.0},"358":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"388":{"tf":1.0},"455":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.0},"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"179":{"tf":1.0},"375":{"tf":1.7320508075688772},"377":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"df":6,"docs":{"372":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"98":{"tf":1.0}}},"k":{"df":9,"docs":{"1":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.4142135623730951},"147":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"253":{"tf":1.0},"42":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"16":{"tf":1.0},"164":{"tf":1.0},"184":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.4142135623730951},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"269":{"tf":1.0},"307":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":2.23606797749979},"382":{"tf":1.4142135623730951},"386":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":7,"docs":{"128":{"tf":1.0},"239":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.0},"318":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951}}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":5,"docs":{"130":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"497":{"tf":1.0},"500":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":19,"docs":{"117":{"tf":1.0},"238":{"tf":1.0},"296":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"358":{"tf":3.1622776601683795},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":4.58257569495584},"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}}}},"df":0,"docs":{},"k":{"df":20,"docs":{"199":{"tf":1.0},"275":{"tf":2.23606797749979},"276":{"tf":2.23606797749979},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":2.449489742783178},"282":{"tf":3.3166247903554},"283":{"tf":1.7320508075688772},"284":{"tf":2.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"312":{"tf":2.0},"406":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":3,"docs":{"130":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}},"i":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":24,"docs":{"161":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.0},"272":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"358":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.4142135623730951},"444":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"430":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":22,"docs":{"143":{"tf":1.0},"151":{"tf":1.0},"180":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"232":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"223":{"tf":1.0},"277":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.4142135623730951},"386":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"429":{"tf":1.0},"486":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.0}}}}},"p":{"df":1,"docs":{"343":{"tf":1.0}}},"s":{"df":2,"docs":{"252":{"tf":1.0},"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"444":{"tf":1.0}}},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"t":{"df":1,"docs":{"252":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"df":13,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"180":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"342":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"232":{"tf":1.0},"3":{"tf":1.4142135623730951},"329":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"465":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"199":{"tf":1.0},"305":{"tf":1.0},"358":{"tf":3.4641016151377544},"455":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":14,"docs":{"125":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"184":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"312":{"tf":1.0},"356":{"tf":1.0},"442":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"112":{"tf":1.0},"122":{"tf":1.0},"149":{"tf":2.0},"202":{"tf":1.0},"384":{"tf":2.23606797749979},"386":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"61":{"tf":1.0},"83":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"297":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":25,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"188":{"tf":1.4142135623730951},"2":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"390":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"250":{"tf":1.7320508075688772},"270":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"402":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"183":{"tf":1.4142135623730951},"195":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"423":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":62,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"325":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"341":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"377":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":2.23606797749979},"386":{"tf":1.0},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.4142135623730951},"501":{"tf":1.0},"505":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"502":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"386":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"504":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"188":{"tf":1.0},"200":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.7320508075688772},"240":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"278":{"tf":1.7320508075688772},"281":{"tf":2.23606797749979},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"311":{"tf":1.0},"328":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"266":{"tf":1.0},"268":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"209":{"tf":1.0},"252":{"tf":1.0},"343":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":24,"docs":{"100":{"tf":1.4142135623730951},"161":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.7320508075688772},"180":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.4142135623730951},"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"245":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"418":{"tf":1.0},"442":{"tf":1.0},"455":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"268":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"205":{"tf":2.0},"216":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"<":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":10,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"177":{"tf":1.0},"184":{"tf":2.0},"189":{"tf":1.0},"209":{"tf":1.4142135623730951},"24":{"tf":1.0},"35":{"tf":1.0},"472":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}}}}},"k":{"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"14":{"tf":1.0},"200":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"417":{"tf":1.0},"421":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}},"df":30,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"416":{"tf":2.6457513110645907},"417":{"tf":2.0},"418":{"tf":3.3166247903554},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":3.872983346207417},"422":{"tf":2.8284271247461903},"423":{"tf":2.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"205":{"tf":2.0},"206":{"tf":3.872983346207417},"209":{"tf":6.6332495807108}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"104":{"tf":1.0},"179":{"tf":1.0},"32":{"tf":1.0},"327":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"263":{"tf":1.4142135623730951},"275":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"322":{"tf":1.4142135623730951},"339":{"tf":1.0},"352":{"tf":1.4142135623730951},"380":{"tf":1.0},"393":{"tf":1.4142135623730951},"399":{"tf":1.0},"415":{"tf":1.4142135623730951},"427":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"452":{"tf":1.4142135623730951},"463":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"509":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"x":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"372":{"tf":1.0},"422":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"305":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":20,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"254":{"tf":1.0},"329":{"tf":1.4142135623730951},"365":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"418":{"tf":1.0},"421":{"tf":2.0},"422":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}},"y":{"b":{"df":5,"docs":{"153":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"285":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":3.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"98":{"tf":1.0}},"m":{"df":17,"docs":{"399":{"tf":2.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":25,"docs":{"128":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.0},"179":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"227":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"470":{"tf":1.4142135623730951},"486":{"tf":1.0}},"t":{"df":3,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"328":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":69,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"244":{"tf":1.0},"252":{"tf":1.4142135623730951},"256":{"tf":2.8284271247461903},"258":{"tf":1.0},"275":{"tf":2.23606797749979},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"325":{"tf":1.0},"366":{"tf":1.4142135623730951},"391":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"416":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"473":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"429":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"165":{"tf":1.0},"232":{"tf":1.0},"328":{"tf":1.0},"422":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"268":{"tf":2.449489742783178},"269":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":25,"docs":{"140":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":2.0},"354":{"tf":1.0},"355":{"tf":2.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":5.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"386":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":2.23606797749979},"500":{"tf":3.3166247903554},"501":{"tf":1.7320508075688772},"509":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"245":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"145":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}},"g":{"df":8,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"265":{"tf":1.0},"413":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"k":{"df":0,"docs":{},"l":{"df":10,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"129":{"tf":1.4142135623730951},"179":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"140":{"tf":1.0},"193":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":2.449489742783178},"222":{"tf":2.6457513110645907},"223":{"tf":2.0},"224":{"tf":1.4142135623730951},"254":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":2.6457513110645907},"72":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":27,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"102":{"tf":3.0},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"95":{"tf":2.449489742783178},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.8284271247461903},"99":{"tf":3.3166247903554}},"v":{"1":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":3,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":1,"docs":{"325":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"197":{"tf":1.4142135623730951},"23":{"tf":1.0},"358":{"tf":1.4142135623730951},"38":{"tf":1.0},"51":{"tf":3.1622776601683795},"52":{"tf":1.4142135623730951},"53":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"b":{"df":4,"docs":{"384":{"tf":1.0},"385":{"tf":2.23606797749979},"498":{"tf":1.0},"500":{"tf":1.0}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"158":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"211":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"265":{"tf":1.0},"275":{"tf":1.0},"283":{"tf":2.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.23606797749979},"311":{"tf":1.7320508075688772},"312":{"tf":2.8284271247461903},"313":{"tf":2.0},"399":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"406":{"tf":2.23606797749979},"411":{"tf":1.0},"413":{"tf":1.0},"468":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":1,"docs":{"429":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":29,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"303":{"tf":2.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"504":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"303":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"1":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"431":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}},"u":{"df":1,"docs":{"146":{"tf":1.0}},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"422":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":5,"docs":{"127":{"tf":1.0},"180":{"tf":1.0},"209":{"tf":1.0},"239":{"tf":1.0},"384":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"415":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"364":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":1.0},"131":{"tf":1.0},"18":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":2,"docs":{"469":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":2,"docs":{"406":{"tf":1.0},"414":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"11":{"tf":1.0}}},"df":44,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":2.0},"12":{"tf":1.4142135623730951},"175":{"tf":1.0},"184":{"tf":1.4142135623730951},"196":{"tf":1.0},"200":{"tf":1.4142135623730951},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":2.0},"367":{"tf":1.0},"370":{"tf":1.4142135623730951},"375":{"tf":1.0},"377":{"tf":2.0},"418":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"455":{"tf":1.0},"463":{"tf":2.23606797749979},"464":{"tf":1.7320508075688772},"465":{"tf":2.8284271247461903},"466":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":2.0},"469":{"tf":2.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":32,"docs":{"1":{"tf":1.0},"272":{"tf":1.0},"427":{"tf":2.23606797749979},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":2.23606797749979},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}},"i":{"df":16,"docs":{"127":{"tf":1.0},"14":{"tf":1.4142135623730951},"238":{"tf":1.0},"250":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"349":{"tf":1.4142135623730951},"358":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":1.0},"501":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"165":{"tf":1.4142135623730951},"266":{"tf":1.0},"272":{"tf":1.0},"413":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.0},"255":{"tf":1.0},"470":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"179":{"tf":1.0},"18":{"tf":1.0},"210":{"tf":1.0},"455":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"188":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.0},"311":{"tf":1.0},"423":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":67,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"34":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"377":{"tf":1.0},"384":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"411":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0},"423":{"tf":1.0},"431":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.4142135623730951},"465":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"490":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":68,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"275":{"tf":1.0},"277":{"tf":1.4142135623730951},"292":{"tf":1.0},"294":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"323":{"tf":1.0},"325":{"tf":1.7320508075688772},"339":{"tf":1.0},"341":{"tf":1.7320508075688772},"343":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.4142135623730951},"380":{"tf":1.0},"382":{"tf":1.4142135623730951},"394":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.7320508075688772},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.4142135623730951},"440":{"tf":1.0},"442":{"tf":1.4142135623730951},"453":{"tf":1.0},"455":{"tf":1.4142135623730951},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"482":{"tf":1.0},"484":{"tf":1.4142135623730951},"496":{"tf":1.0},"498":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":17,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"172":{"tf":1.0},"215":{"tf":1.0},"231":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"320":{"tf":1.0},"321":{"tf":1.0},"355":{"tf":1.0},"415":{"tf":1.4142135623730951},"423":{"tf":1.0},"496":{"tf":1.0},"504":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":2.449489742783178}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"308":{"tf":1.0},"358":{"tf":1.0},"374":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":9,"docs":{"161":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"205":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.4142135623730951},"401":{"tf":1.0},"444":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"341":{"tf":1.0}}}},"i":{"df":3,"docs":{"205":{"tf":1.0},"208":{"tf":1.0},"421":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.4142135623730951},"312":{"tf":1.0}}}},"df":1,"docs":{"44":{"tf":1.0}}}}},"n":{"+":{"1":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"/":{"3":{"df":3,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}},"8":{"df":1,"docs":{"33":{"tf":1.0}}},"a":{"df":8,"docs":{"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"408":{"tf":1.4142135623730951},"437":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0}}},"df":0,"docs":{}},"=":{"3":{"df":0,"docs":{},"f":{"+":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"3":{"df":2,"docs":{"125":{"tf":1.0},"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"122":{"tf":1.0},"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"122":{"tf":1.0},"140":{"tf":1.0},"355":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.4142135623730951},"164":{"tf":1.0},"208":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.0},"310":{"tf":1.0},"358":{"tf":2.23606797749979},"359":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"13":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"199":{"tf":1.0},"498":{"tf":2.23606797749979},"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"398":{"tf":1.4142135623730951},"421":{"tf":1.0},"98":{"tf":1.0}}}}},"y":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"126":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":2.23606797749979},"372":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"180":{"tf":1.0},"204":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"134":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.0},"26":{"tf":1.0},"304":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"469":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.4142135623730951},"94":{"tf":1.0},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"341":{"tf":1.0}}}}}}},"df":3,"docs":{"295":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"421":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":69,"docs":{"11":{"tf":1.4142135623730951},"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.7320508075688772},"241":{"tf":1.0},"250":{"tf":2.0},"255":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":2.0},"312":{"tf":2.23606797749979},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.7320508075688772},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.4142135623730951},"374":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.4142135623730951},"398":{"tf":1.0},"401":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"487":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"455":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"114":{"tf":1.0},"153":{"tf":1.0},"193":{"tf":1.0},"258":{"tf":1.0},"362":{"tf":1.0},"504":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"441":{"tf":1.0},"444":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951}}}},"t":{"df":4,"docs":{"212":{"tf":1.0},"398":{"tf":1.0},"445":{"tf":1.0},"504":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"270":{"tf":1.0},"308":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":66,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":2.0},"258":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":2.0},"269":{"tf":1.0},"27":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"341":{"tf":1.0},"366":{"tf":1.0},"380":{"tf":2.23606797749979},"381":{"tf":1.4142135623730951},"382":{"tf":2.23606797749979},"383":{"tf":1.0},"384":{"tf":2.449489742783178},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"442":{"tf":2.6457513110645907},"444":{"tf":1.7320508075688772},"452":{"tf":1.0},"474":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":2.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"164":{"tf":1.0},"205":{"tf":1.0},"283":{"tf":1.4142135623730951},"289":{"tf":1.0},"358":{"tf":2.0},"54":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"208":{"tf":1.7320508075688772},"373":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":85,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.23606797749979},"140":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"167":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":2.23606797749979},"188":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.7320508075688772},"256":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":2.23606797749979},"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":2.0},"273":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.4142135623730951},"282":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":3.605551275463989},"359":{"tf":1.4142135623730951},"361":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.7320508075688772},"400":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"417":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"468":{"tf":1.7320508075688772},"469":{"tf":2.0},"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"48":{"tf":1.0},"484":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"250":{"tf":1.0},"358":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"129":{"tf":1.0},"171":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"30":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":2.8284271247461903},"421":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"t":{"df":24,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"20":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":2.0},"4":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"307":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":57,"docs":{"102":{"tf":3.1622776601683795},"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"143":{"tf":3.605551275463989},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.6457513110645907},"147":{"tf":2.23606797749979},"148":{"tf":1.7320508075688772},"149":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":2.449489742783178},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.6457513110645907},"232":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":2.8284271247461903},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":2.23606797749979},"258":{"tf":2.23606797749979},"312":{"tf":1.4142135623730951},"358":{"tf":1.0},"382":{"tf":2.6457513110645907},"384":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"412":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"191":{"tf":1.0},"206":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0}}}}},"n":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"358":{"tf":2.23606797749979},"421":{"tf":1.0}},"e":{"df":30,"docs":{"150":{"tf":1.0},"165":{"tf":1.4142135623730951},"173":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"246":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"338":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"358":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"47":{"tf":1.0},"480":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"160":{"tf":1.0},"165":{"tf":1.0},"222":{"tf":1.0},"414":{"tf":1.0}}}},"df":1,"docs":{"11":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"312":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"31":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":40,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"164":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.7320508075688772},"384":{"tf":1.7320508075688772},"386":{"tf":1.0},"398":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.4142135623730951},"429":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"51":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"296":{"tf":1.0}}}}}}}}},"i":{"c":{"df":3,"docs":{"140":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":15,"docs":{"209":{"tf":1.0},"339":{"tf":2.23606797749979},"340":{"tf":2.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.0},"343":{"tf":3.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0}},"i":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"222":{"tf":1.0},"223":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"v":{"a":{"df":2,"docs":{"436":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"b":{"df":5,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"323":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"161":{"tf":1.0},"179":{"tf":1.4142135623730951},"343":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"390":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"500":{"tf":1.0},"98":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"311":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"235":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":50,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"201":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":2.0},"219":{"tf":1.4142135623730951},"222":{"tf":2.449489742783178},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.7320508075688772},"256":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.3166247903554},"365":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"455":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":2.6457513110645907},"498":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"222":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"}":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"d":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"176":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"421":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"502":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"140":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"255":{"tf":1.0},"358":{"tf":1.4142135623730951},"362":{"tf":1.0},"382":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":4,"docs":{"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"235":{"tf":1.0},"355":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"235":{"tf":1.0}},"i":{"df":2,"docs":{"131":{"tf":1.0},"140":{"tf":2.23606797749979}}}},"r":{"df":7,"docs":{"205":{"tf":1.0},"305":{"tf":1.0},"374":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.4142135623730951},"449":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"33":{"tf":3.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.449489742783178},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"33":{"tf":1.7320508075688772},"42":{"tf":1.0}}}},"o":{"b":{"df":4,"docs":{"440":{"tf":1.0},"453":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":4,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"161":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"424":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"309":{"tf":1.0},"312":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":20,"docs":{"13":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"29":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.7320508075688772},"365":{"tf":1.0},"366":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"45":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"51":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":26,"docs":{"100":{"tf":1.7320508075688772},"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.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"48":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":2.8284271247461903}}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"208":{"tf":2.449489742783178},"372":{"tf":1.4142135623730951},"373":{"tf":1.7320508075688772},"375":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.0},"206":{"tf":1.7320508075688772},"222":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.4142135623730951},"146":{"tf":1.0},"158":{"tf":1.4142135623730951},"363":{"tf":1.0},"390":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"399":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"401":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":20,"docs":{"122":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"167":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"266":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.7320508075688772},"362":{"tf":1.0},"382":{"tf":1.0},"410":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":77,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"255":{"tf":1.7320508075688772},"258":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"325":{"tf":1.0},"327":{"tf":1.0},"339":{"tf":2.23606797749979},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":2.23606797749979},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"358":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"429":{"tf":1.4142135623730951},"433":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"498":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"504":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"201":{"tf":1.0},"209":{"tf":1.0},"250":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"200":{"tf":1.0},"218":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"486":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"179":{"tf":1.7320508075688772},"189":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"206":{"tf":1.4142135623730951},"223":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"340":{"tf":1.0},"452":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"16":{"tf":1.0},"308":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0}}}}}},"r":{"df":21,"docs":{"14":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"186":{"tf":1.0},"206":{"tf":2.449489742783178},"208":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"26":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"305":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"157":{"tf":1.0},"262":{"tf":1.0},"384":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"322":{"tf":1.0},"421":{"tf":1.0},"468":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":15,"docs":{"115":{"tf":1.0},"13":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"310":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"341":{"tf":1.0},"384":{"tf":1.0},"436":{"tf":1.0},"491":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0}},"t":{"df":2,"docs":{"179":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"209":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"126":{"tf":1.4142135623730951},"171":{"tf":1.0},"188":{"tf":1.0},"254":{"tf":1.0},"384":{"tf":2.449489742783178},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"500":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":44,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"126":{"tf":1.7320508075688772},"140":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":2.8284271247461903},"381":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"486":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"267":{"tf":1.0},"268":{"tf":1.0},"298":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":3.1622776601683795},"235":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"281":{"tf":1.7320508075688772},"312":{"tf":1.0},"341":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.0},"272":{"tf":1.0},"308":{"tf":1.0},"327":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"205":{"tf":1.0},"277":{"tf":1.0},"375":{"tf":1.0},"406":{"tf":1.0},"469":{"tf":1.0},"492":{"tf":1.0},"52":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"22":{"tf":1.0},"498":{"tf":1.0}}}}},"df":16,"docs":{"111":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"296":{"tf":1.0},"358":{"tf":8.12403840463596},"363":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"47":{"tf":1.0},"501":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"31":{"tf":1.0},"398":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"51":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"119":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"268":{"tf":1.0},"358":{"tf":3.4641016151377544},"412":{"tf":1.0},"421":{"tf":1.0},"435":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"199":{"tf":1.0},"398":{"tf":1.4142135623730951},"445":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"80":{"tf":1.0}}}},"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}},"df":23,"docs":{"12":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"310":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.0},"372":{"tf":1.0},"384":{"tf":1.4142135623730951},"401":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"470":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":10,"docs":{"111":{"tf":1.7320508075688772},"127":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"410":{"tf":1.0},"422":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"128":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"312":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"481":{"tf":1.0}}},"o":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"196":{"tf":1.0},"204":{"tf":1.4142135623730951},"364":{"tf":1.0},"370":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"204":{"tf":2.0},"205":{"tf":1.7320508075688772},"206":{"tf":2.8284271247461903},"209":{"tf":4.69041575982343},"39":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":25,"docs":{"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"482":{"tf":2.23606797749979},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"51":{"tf":2.23606797749979},"53":{"tf":1.0}}}}}}}}}},"y":{"df":1,"docs":{"95":{"tf":1.0}}}},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"372":{"tf":1.0}}}},"0":{"df":1,"docs":{"209":{"tf":1.0}}},"1":{"df":1,"docs":{"209":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"372":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"130":{"tf":1.0}}}},"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":15,"docs":{"496":{"tf":2.23606797749979},"497":{"tf":1.0},"498":{"tf":2.23606797749979},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"61":{"tf":1.0}}}},"i":{"d":{"df":13,"docs":{"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"268":{"tf":1.0},"398":{"tf":1.7320508075688772},"463":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"472":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"444":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"235":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":49,"docs":{"102":{"tf":1.0},"157":{"tf":1.0},"175":{"tf":2.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":2.0},"262":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.7320508075688772},"281":{"tf":1.0},"296":{"tf":1.4142135623730951},"3":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":2.449489742783178},"319":{"tf":1.0},"328":{"tf":1.0},"401":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"441":{"tf":1.0},"444":{"tf":1.0},"449":{"tf":1.0},"469":{"tf":1.7320508075688772},"471":{"tf":2.6457513110645907},"472":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"253":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"281":{"tf":1.0}}},"(":{"1":{"0":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":95,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"178":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":2.6457513110645907},"210":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.4142135623730951},"250":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":2.23606797749979},"253":{"tf":2.0},"254":{"tf":2.6457513110645907},"255":{"tf":2.449489742783178},"256":{"tf":2.8284271247461903},"257":{"tf":1.0},"258":{"tf":2.449489742783178},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"272":{"tf":1.4142135623730951},"275":{"tf":2.23606797749979},"276":{"tf":2.8284271247461903},"277":{"tf":4.69041575982343},"278":{"tf":2.8284271247461903},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":4.242640687119285},"282":{"tf":3.4641016151377544},"283":{"tf":2.6457513110645907},"284":{"tf":3.872983346207417},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"304":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"306":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":3.872983346207417},"313":{"tf":2.23606797749979},"318":{"tf":1.4142135623730951},"368":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.0},"465":{"tf":2.6457513110645907},"467":{"tf":1.0},"468":{"tf":2.0},"469":{"tf":3.0},"470":{"tf":3.0},"471":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.4142135623730951},"477":{"tf":1.7320508075688772},"481":{"tf":1.4142135623730951},"500":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"430":{"tf":1.0}}}}},"df":12,"docs":{"130":{"tf":1.0},"209":{"tf":1.4142135623730951},"244":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":2.0},"66":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"d":{"df":10,"docs":{"179":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.0},"269":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":2.23606797749979},"472":{"tf":1.4142135623730951},"473":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.0},"192":{"tf":1.0},"312":{"tf":1.4142135623730951}}}}}},"m":{"df":2,"docs":{"164":{"tf":2.449489742783178},"358":{"tf":11.269427669584644}},"e":{"df":0,"docs":{},"t":{"df":21,"docs":{"102":{"tf":1.0},"205":{"tf":1.7320508075688772},"208":{"tf":2.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"358":{"tf":3.1622776601683795},"364":{"tf":1.0},"371":{"tf":1.4142135623730951},"375":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":2,"docs":{"128":{"tf":1.0},"197":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"324":{"tf":1.0},"325":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"72":{"tf":2.23606797749979}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"202":{"tf":1.4142135623730951},"419":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":2,"docs":{"126":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"385":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":23,"docs":{"102":{"tf":1.7320508075688772},"115":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"160":{"tf":1.0},"171":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"231":{"tf":1.4142135623730951},"235":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.0},"33":{"tf":1.0},"415":{"tf":1.0},"43":{"tf":1.0},"441":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.0},"158":{"tf":1.0},"235":{"tf":1.0},"284":{"tf":2.0},"3":{"tf":1.0},"398":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"442":{"tf":2.23606797749979},"444":{"tf":2.0},"452":{"tf":1.0},"48":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"122":{"tf":1.0},"14":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"232":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.7320508075688772},"501":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"129":{"tf":1.0},"318":{"tf":1.0},"465":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"169":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"t":{"df":4,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"5":{"7":{"6":{"0":{"0":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"206":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"329":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0}}}}},"t":{"df":2,"docs":{"222":{"tf":1.0},"384":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"266":{"tf":1.0},"395":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.7320508075688772},"504":{"tf":1.7320508075688772},"506":{"tf":1.0},"509":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"398":{"tf":1.0},"436":{"tf":1.0},"460":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"187":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":1,"docs":{"469":{"tf":1.0}}}}}}},"df":7,"docs":{"209":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":2.23606797749979},"466":{"tf":1.0}},"e":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"129":{"tf":1.0},"140":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"209":{"tf":1.0},"331":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.7320508075688772},"468":{"tf":1.4142135623730951},"469":{"tf":2.0},"477":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"119":{"tf":1.0},"209":{"tf":1.0},"313":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"254":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"126":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"158":{"tf":2.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"258":{"tf":1.0},"340":{"tf":1.0},"382":{"tf":1.4142135623730951}},"i":{"d":{"df":5,"docs":{"151":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.0},"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"13":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":7,"docs":{"144":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.0},"310":{"tf":1.4142135623730951},"322":{"tf":1.0},"329":{"tf":1.0},"384":{"tf":1.0}}}}},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"214":{"tf":1.0},"469":{"tf":1.0}}}},"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":35,"docs":{"122":{"tf":1.0},"128":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"236":{"tf":1.0},"328":{"tf":1.0},"339":{"tf":2.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.4142135623730951},"384":{"tf":1.0},"410":{"tf":1.0},"421":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.0},"481":{"tf":1.4142135623730951},"50":{"tf":1.0},"504":{"tf":1.4142135623730951},"51":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":95,"docs":{"1":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"18":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"196":{"tf":1.0},"211":{"tf":1.4142135623730951},"216":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"264":{"tf":1.0},"272":{"tf":1.7320508075688772},"275":{"tf":1.0},"277":{"tf":2.0},"278":{"tf":1.0},"281":{"tf":1.0},"286":{"tf":1.7320508075688772},"292":{"tf":1.0},"299":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"317":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"382":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"399":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"410":{"tf":2.0},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"435":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"490":{"tf":1.7320508075688772},"496":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":40,"docs":{"151":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":4.242640687119285},"206":{"tf":2.6457513110645907},"207":{"tf":1.0},"208":{"tf":2.0},"214":{"tf":1.4142135623730951},"222":{"tf":1.0},"256":{"tf":1.0},"309":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":2.23606797749979},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"398":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":3.4641016151377544},"427":{"tf":2.23606797749979},"428":{"tf":1.4142135623730951},"429":{"tf":2.6457513110645907},"430":{"tf":1.0},"431":{"tf":2.0},"432":{"tf":1.4142135623730951},"433":{"tf":2.23606797749979},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"439":{"tf":1.0},"464":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"200":{"tf":1.0},"238":{"tf":1.0},"277":{"tf":1.0},"308":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}}}},"t":{"df":2,"docs":{"468":{"tf":1.0},"470":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"128":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"231":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.0},"72":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"230":{"tf":1.0},"264":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"140":{"tf":1.0},"210":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"143":{"tf":1.0},"215":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"370":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"141":{"tf":1.0},"248":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"380":{"tf":1.0},"496":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"206":{"tf":1.7320508075688772},"423":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":15,"docs":{"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"213":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"421":{"tf":1.4142135623730951},"471":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":5,"docs":{"177":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"308":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":3,"docs":{"370":{"tf":1.4142135623730951},"372":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"14":{"tf":1.0},"179":{"tf":2.0},"183":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":2.0},"5":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"145":{"tf":1.0},"414":{"tf":1.4142135623730951},"48":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"206":{"tf":1.0},"224":{"tf":1.0},"245":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"14":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"359":{"tf":1.0},"406":{"tf":1.4142135623730951},"416":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"358":{"tf":3.4641016151377544}}}}}}},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"'":{"df":9,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"188":{"tf":1.0},"232":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"398":{"tf":1.0}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":128,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"14":{"tf":2.23606797749979},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"16":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":2.8284271247461903},"176":{"tf":2.0},"177":{"tf":2.8284271247461903},"178":{"tf":2.8284271247461903},"179":{"tf":3.1622776601683795},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":2.23606797749979},"182":{"tf":1.0},"183":{"tf":2.6457513110645907},"184":{"tf":2.23606797749979},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":2.0},"199":{"tf":2.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":2.6457513110645907},"201":{"tf":2.449489742783178},"202":{"tf":2.0},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":2.0},"296":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":2.0},"316":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.0},"337":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"379":{"tf":1.0},"382":{"tf":1.4142135623730951},"395":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"4":{"tf":1.0},"402":{"tf":1.4142135623730951},"413":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"429":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.4142135623730951},"443":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.4142135623730951},"498":{"tf":1.0},"5":{"tf":2.0},"6":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"436":{"tf":1.0},"449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"177":{"tf":1.0},"187":{"tf":1.0}}},"df":2,"docs":{"176":{"tf":1.0},"180":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":2,"docs":{"401":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"179":{"tf":1.0},"193":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"307":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}}}}},"r":{"df":1,"docs":{"166":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"442":{"tf":1.0}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"385":{"tf":1.0},"470":{"tf":1.0},"99":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"122":{"tf":1.0},"14":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"422":{"tf":1.0},"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"358":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"504":{"tf":1.0},"69":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"129":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"50":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":45,"docs":{"104":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"209":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"250":{"tf":1.0},"263":{"tf":1.0},"284":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"312":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"367":{"tf":1.0},"378":{"tf":1.4142135623730951},"382":{"tf":3.1622776601683795},"384":{"tf":2.449489742783178},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"417":{"tf":1.0},"422":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.0}}}}}}}},"df":6,"docs":{"273":{"tf":1.0},"379":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"501":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":25,"docs":{"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"250":{"tf":1.0},"375":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"452":{"tf":1.0},"473":{"tf":1.0},"67":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"126":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"204":{"tf":1.0},"240":{"tf":1.4142135623730951},"313":{"tf":1.0},"462":{"tf":1.4142135623730951}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"179":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"431":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":2.23606797749979}}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.0}}}},"r":{"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"325":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"137":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"61":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":2.0}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"204":{"tf":1.0},"358":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"177":{"tf":1.0}}}},"s":{"df":1,"docs":{"252":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"165":{"tf":1.4142135623730951}},"t":{"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"151":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"256":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"398":{"tf":1.7320508075688772},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":7,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.7320508075688772},"501":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"174":{"tf":1.0},"311":{"tf":1.0},"384":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}},"r":{"df":1,"docs":{"398":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"254":{"tf":1.0},"358":{"tf":2.0},"382":{"tf":2.0},"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"127":{"tf":1.0},"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"232":{"tf":1.0},"421":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"363":{"tf":1.0},"399":{"tf":2.23606797749979},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.4142135623730951},"149":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"125":{"tf":1.0},"417":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"341":{"tf":1.0},"343":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"355":{"tf":1.0},"94":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"166":{"tf":1.0},"2":{"tf":1.0},"256":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"444":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":13,"docs":{"14":{"tf":1.7320508075688772},"205":{"tf":2.449489742783178},"206":{"tf":1.0},"208":{"tf":2.0},"358":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"5":{"tf":1.0}},"s":{"df":5,"docs":{"206":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"416":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.4142135623730951}}}}}}}}}},"df":40,"docs":{"1":{"tf":1.0},"12":{"tf":2.449489742783178},"13":{"tf":1.4142135623730951},"183":{"tf":1.0},"204":{"tf":2.23606797749979},"205":{"tf":3.605551275463989},"206":{"tf":3.605551275463989},"207":{"tf":1.4142135623730951},"208":{"tf":4.795831523312719},"21":{"tf":1.0},"214":{"tf":2.449489742783178},"22":{"tf":1.0},"3":{"tf":1.0},"364":{"tf":2.449489742783178},"365":{"tf":2.8284271247461903},"366":{"tf":2.449489742783178},"367":{"tf":2.8284271247461903},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.7320508075688772},"372":{"tf":2.0},"373":{"tf":1.0},"374":{"tf":3.3166247903554},"375":{"tf":3.7416573867739413},"376":{"tf":1.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"4":{"tf":1.0},"417":{"tf":2.23606797749979},"418":{"tf":3.7416573867739413},"421":{"tf":4.123105625617661},"422":{"tf":3.7416573867739413},"424":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":20,"docs":{"18":{"tf":1.0},"202":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"327":{"tf":1.0},"368":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"232":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"312":{"tf":1.0},"41":{"tf":2.0},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":66,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"156":{"tf":1.4142135623730951},"159":{"tf":1.0},"172":{"tf":1.4142135623730951},"196":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"300":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.0},"320":{"tf":1.4142135623730951},"323":{"tf":1.0},"337":{"tf":1.4142135623730951},"339":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"361":{"tf":1.4142135623730951},"364":{"tf":1.0},"377":{"tf":1.4142135623730951},"380":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.4142135623730951},"398":{"tf":1.0},"399":{"tf":1.0},"413":{"tf":1.4142135623730951},"416":{"tf":1.0},"425":{"tf":1.4142135623730951},"427":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.4142135623730951},"453":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"479":{"tf":1.7320508075688772},"482":{"tf":1.0},"493":{"tf":1.4142135623730951},"496":{"tf":1.0},"507":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"424":{"tf":1.0}},"i":{"df":4,"docs":{"204":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"432":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":53,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"132":{"tf":1.7320508075688772},"141":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"159":{"tf":1.0},"167":{"tf":1.4142135623730951},"175":{"tf":1.0},"189":{"tf":1.4142135623730951},"196":{"tf":1.0},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"226":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.4142135623730951},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"275":{"tf":1.0},"285":{"tf":1.7320508075688772},"292":{"tf":1.0},"298":{"tf":1.4142135623730951},"303":{"tf":1.0},"315":{"tf":1.4142135623730951},"323":{"tf":1.0},"332":{"tf":1.4142135623730951},"339":{"tf":1.0},"345":{"tf":1.4142135623730951},"380":{"tf":1.0},"386":{"tf":1.4142135623730951},"399":{"tf":1.0},"408":{"tf":1.7320508075688772},"427":{"tf":1.0},"433":{"tf":1.4142135623730951},"440":{"tf":1.0},"446":{"tf":1.4142135623730951},"463":{"tf":1.0},"474":{"tf":1.7320508075688772},"482":{"tf":1.0},"488":{"tf":1.4142135623730951},"496":{"tf":1.0},"502":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"207":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"235":{"tf":1.0},"281":{"tf":1.0},"429":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"363":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":20,"docs":{"131":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.4142135623730951},"158":{"tf":1.0},"192":{"tf":1.4142135623730951},"196":{"tf":1.0},"200":{"tf":1.7320508075688772},"232":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"358":{"tf":1.0},"380":{"tf":1.0},"473":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"199":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":43,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"210":{"tf":1.0},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"358":{"tf":1.4142135623730951},"37":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"439":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":12,"docs":{"276":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":7,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"309":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"398":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"266":{"tf":1.0},"311":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"444":{"tf":1.0}},"m":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"178":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"137":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"325":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.4142135623730951},"201":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"166":{"tf":1.0},"9":{"tf":1.0}}},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"284":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"268":{"tf":1.0},"27":{"tf":1.0},"325":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":36,"docs":{"129":{"tf":2.6457513110645907},"146":{"tf":2.23606797749979},"179":{"tf":2.0},"181":{"tf":2.0},"183":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"377":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":2.23606797749979},"385":{"tf":2.23606797749979},"386":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":2.0},"457":{"tf":2.23606797749979},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"482":{"tf":2.23606797749979},"483":{"tf":2.23606797749979},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":3.1622776601683795},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"51":{"tf":1.4142135623730951},"83":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"116":{"tf":1.0},"206":{"tf":1.0},"341":{"tf":1.0},"474":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"204":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"396":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"128":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"364":{"tf":1.0},"374":{"tf":1.4142135623730951},"455":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.7320508075688772}}}},"s":{"a":{"df":0,"docs":{},"l":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"df":114,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"10":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.8284271247461903},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":2.0},"235":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":2.449489742783178},"421":{"tf":1.4142135623730951},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.4142135623730951},"444":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.4142135623730951},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"6":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.23606797749979},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":2.449489742783178},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"386":{"tf":1.4142135623730951},"422":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"2":{"df":1,"docs":{"254":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"254":{"tf":1.0},"384":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":2,"docs":{"26":{"tf":1.0},"430":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}}},"df":102,"docs":{"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":2.0},"131":{"tf":1.0},"140":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"158":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":2.6457513110645907},"231":{"tf":1.0},"235":{"tf":1.4142135623730951},"24":{"tf":2.0},"248":{"tf":1.0},"25":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"254":{"tf":2.6457513110645907},"255":{"tf":1.0},"26":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"35":{"tf":2.23606797749979},"36":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":2.0},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":2.6457513110645907},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.7320508075688772},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"210":{"tf":1.0},"222":{"tf":2.0},"223":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"382":{"tf":1.4142135623730951},"99":{"tf":1.0}},"n":{"df":4,"docs":{"134":{"tf":1.0},"179":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0}}}},"i":{"d":{"df":70,"docs":{"101":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":3.605551275463989},"147":{"tf":3.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"158":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.23606797749979},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":2.0},"255":{"tf":1.0},"256":{"tf":2.0},"258":{"tf":1.7320508075688772},"26":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"358":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"384":{"tf":2.0},"401":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"442":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"51":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"207":{"tf":1.0},"421":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":2.0},"206":{"tf":1.4142135623730951}}}}}}}}},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"463":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":2.6457513110645907},"472":{"tf":1.0},"473":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"33":{"tf":1.4142135623730951},"364":{"tf":1.0},"373":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"df":10,"docs":{"128":{"tf":1.0},"129":{"tf":3.3166247903554},"309":{"tf":1.0},"319":{"tf":1.0},"469":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"317":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":8,"docs":{"199":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"358":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":1.0},"296":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"250":{"tf":1.0},"462":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"204":{"tf":2.0},"205":{"tf":3.605551275463989},"206":{"tf":3.3166247903554},"207":{"tf":2.8284271247461903},"208":{"tf":2.23606797749979},"211":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"470":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":8,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"158":{"tf":1.0},"188":{"tf":1.0},"249":{"tf":1.0},"312":{"tf":1.0},"384":{"tf":1.0},"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"188":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"200":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"406":{"tf":1.0},"425":{"tf":1.0}}}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"472":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"421":{"tf":1.7320508075688772}}}},"z":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"140":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":2.0},"384":{"tf":2.23606797749979},"385":{"tf":1.0},"386":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"382":{"tf":2.0},"384":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":57,"docs":{"1":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"138":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"194":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.4142135623730951},"248":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"290":{"tf":1.4142135623730951},"292":{"tf":1.0},"301":{"tf":1.4142135623730951},"303":{"tf":1.0},"321":{"tf":1.7320508075688772},"323":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.4142135623730951},"380":{"tf":1.0},"392":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"451":{"tf":1.4142135623730951},"463":{"tf":1.0},"480":{"tf":1.4142135623730951},"482":{"tf":1.0},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"208":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"106":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"106":{"tf":2.23606797749979},"208":{"tf":1.4142135623730951}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"128":{"tf":1.0},"375":{"tf":1.4142135623730951},"415":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"488":{"tf":1.0}}}},"o":{"df":2,"docs":{"275":{"tf":1.0},"281":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"146":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"200":{"tf":1.0},"481":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"126":{"tf":1.4142135623730951},"147":{"tf":2.6457513110645907},"153":{"tf":1.0},"23":{"tf":1.0},"253":{"tf":2.23606797749979},"258":{"tf":1.0},"47":{"tf":3.1622776601683795},"48":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"126":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0},"256":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"54":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":2.0},"54":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"54":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"223":{"tf":1.4142135623730951},"358":{"tf":3.7416573867739413},"370":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"323":{"tf":1.0},"328":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"424":{"tf":1.0}}}},"t":{"a":{"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"200":{"tf":1.0},"367":{"tf":1.4142135623730951},"422":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}},"o":{"df":5,"docs":{"204":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"330":{"tf":1.0},"47":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"165":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"250":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"df":2,"docs":{"358":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"358":{"tf":1.4142135623730951},"367":{"tf":1.0},"421":{"tf":1.0},"501":{"tf":1.0}}},"t":{"df":3,"docs":{"375":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0}}}},"d":{"df":9,"docs":{"145":{"tf":1.4142135623730951},"149":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"111":{"tf":1.0},"200":{"tf":1.4142135623730951},"377":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"151":{"tf":1.0},"216":{"tf":1.0},"224":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"313":{"tf":1.0},"385":{"tf":1.0}}}},"z":{"df":2,"docs":{"251":{"tf":1.0},"372":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"128":{"tf":1.0},"151":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":12,"docs":{"129":{"tf":2.0},"153":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"385":{"tf":1.0},"418":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"208":{"tf":1.0},"498":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"454":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"328":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"312":{"tf":1.0},"98":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"22":{"tf":1.0},"268":{"tf":1.0},"412":{"tf":1.0},"48":{"tf":1.0}}},"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":5,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":14,"docs":{"104":{"tf":1.0},"140":{"tf":1.4142135623730951},"153":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":2.23606797749979},"209":{"tf":1.7320508075688772},"258":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":2.0},"291":{"tf":1.0},"58":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"u":{"c":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"239":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"367":{"tf":1.0},"381":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.4142135623730951},"444":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"502":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"459":{"tf":1.0},"473":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":13,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"209":{"tf":1.0},"384":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":2.23606797749979},"501":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"d":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":68,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.4142135623730951},"159":{"tf":1.0},"172":{"tf":1.4142135623730951},"196":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"243":{"tf":1.4142135623730951},"248":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"300":{"tf":1.4142135623730951},"303":{"tf":1.0},"320":{"tf":1.4142135623730951},"323":{"tf":1.0},"337":{"tf":1.4142135623730951},"339":{"tf":1.0},"350":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"371":{"tf":1.0},"377":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"391":{"tf":1.4142135623730951},"399":{"tf":1.0},"41":{"tf":1.0},"413":{"tf":1.4142135623730951},"416":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.4142135623730951},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"45":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"453":{"tf":1.0},"455":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"47":{"tf":1.0},"479":{"tf":1.4142135623730951},"48":{"tf":2.0},"482":{"tf":1.0},"493":{"tf":1.4142135623730951},"496":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":3,"docs":{"268":{"tf":1.0},"307":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"130":{"tf":1.0},"268":{"tf":1.7320508075688772},"270":{"tf":1.0},"296":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"416":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"207":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.7320508075688772},"486":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}},"m":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"204":{"tf":1.4142135623730951},"422":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"161":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"130":{"tf":1.0},"222":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"206":{"tf":3.0}}},"df":9,"docs":{"204":{"tf":1.7320508075688772},"205":{"tf":5.196152422706632},"206":{"tf":6.082762530298219},"208":{"tf":1.0},"209":{"tf":4.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"206":{"tf":2.449489742783178},"209":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"141":{"tf":1.0},"147":{"tf":2.6457513110645907},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"309":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":3.1622776601683795},"470":{"tf":1.0},"472":{"tf":1.4142135623730951},"481":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"472":{"tf":1.0}}}},"df":25,"docs":{"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"463":{"tf":2.449489742783178},"464":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"472":{"tf":2.449489742783178},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0}},"i":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"107":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":2.6457513110645907},"206":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0},"469":{"tf":1.7320508075688772},"472":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"232":{"tf":1.0},"233":{"tf":1.0}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"268":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":62,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"322":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"352":{"tf":1.4142135623730951},"380":{"tf":1.0},"393":{"tf":1.4142135623730951},"399":{"tf":1.0},"41":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.4142135623730951},"427":{"tf":1.0},"433":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"452":{"tf":1.4142135623730951},"463":{"tf":1.0},"470":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"5":{"tf":1.0},"509":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.0}}}}}}}}}},"x":{"df":1,"docs":{"501":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"277":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":64,"docs":{"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":3.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"208":{"tf":2.0},"209":{"tf":2.449489742783178},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":2.23606797749979},"304":{"tf":1.4142135623730951},"305":{"tf":2.23606797749979},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"312":{"tf":2.6457513110645907},"313":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.7320508075688772},"321":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772}}}},"df":16,"docs":{"128":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"188":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"327":{"tf":1.4142135623730951},"330":{"tf":1.0},"422":{"tf":1.0},"429":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"72":{"tf":3.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"180":{"tf":1.0},"210":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"96":{"tf":1.0}}}},"df":1,"docs":{"418":{"tf":1.0}},"v":{"df":8,"docs":{"117":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"13":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"147":{"tf":1.0},"151":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"331":{"tf":1.0},"398":{"tf":1.0},"98":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":17,"docs":{"106":{"tf":1.4142135623730951},"178":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"24":{"tf":1.0},"321":{"tf":1.0},"358":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.4142135623730951},"63":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"312":{"tf":1.0},"381":{"tf":1.0},"384":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"384":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.7320508075688772}},"v":{"2":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":54,"docs":{"100":{"tf":1.0},"130":{"tf":1.4142135623730951},"151":{"tf":1.0},"164":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":2.0},"209":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"264":{"tf":1.4142135623730951},"269":{"tf":2.449489742783178},"276":{"tf":1.0},"291":{"tf":1.0},"312":{"tf":1.4142135623730951},"317":{"tf":1.0},"353":{"tf":2.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.7320508075688772},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":2.0},"390":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"444":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"473":{"tf":1.4142135623730951},"496":{"tf":2.23606797749979},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"414":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"312":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"204":{"tf":2.8284271247461903},"205":{"tf":2.8284271247461903},"206":{"tf":4.123105625617661},"208":{"tf":1.7320508075688772},"214":{"tf":1.0},"277":{"tf":1.4142135623730951},"289":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":2.23606797749979},"421":{"tf":2.8284271247461903},"422":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}}}}}}}}},"df":1,"docs":{"469":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":19,"docs":{"463":{"tf":2.449489742783178},"464":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":2.0},"467":{"tf":1.0},"468":{"tf":2.23606797749979},"469":{"tf":2.6457513110645907},"470":{"tf":2.0},"471":{"tf":2.23606797749979},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"254":{"tf":1.0},"341":{"tf":1.0},"384":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":24,"docs":{"235":{"tf":1.0},"256":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":3,"docs":{"382":{"tf":1.7320508075688772},"384":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"384":{"tf":2.0},"386":{"tf":1.4142135623730951}}}}}},"o":{"df":6,"docs":{"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"300":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"312":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"117":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"294":{"tf":1.0},"8":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":18,"docs":{"108":{"tf":1.7320508075688772},"151":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"384":{"tf":1.0},"419":{"tf":1.0},"457":{"tf":1.4142135623730951},"498":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"1":{"df":1,"docs":{"130":{"tf":1.0}}},"2":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":34,"docs":{"0":{"tf":1.0},"126":{"tf":1.7320508075688772},"129":{"tf":3.7416573867739413},"140":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.4142135623730951},"204":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.7320508075688772},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"254":{"tf":2.23606797749979},"255":{"tf":1.0},"358":{"tf":2.8284271247461903},"380":{"tf":2.23606797749979},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":3.605551275463989},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.7320508075688772},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"462":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":83,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"14":{"tf":2.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"165":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"250":{"tf":1.7320508075688772},"275":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.4142135623730951},"377":{"tf":1.0},"384":{"tf":2.0},"385":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"468":{"tf":1.7320508075688772},"469":{"tf":2.23606797749979},"47":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":2,"docs":{"277":{"tf":1.4142135623730951},"278":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"202":{"tf":1.0},"212":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"368":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.0},"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"108":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"358":{"tf":1.7320508075688772},"421":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":2.0},"470":{"tf":1.0},"473":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"418":{"tf":1.0},"421":{"tf":3.1622776601683795},"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"199":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":23,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"205":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"277":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"317":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"140":{"tf":1.0},"184":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"404":{"tf":1.0},"429":{"tf":1.0},"448":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"254":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":17,"docs":{"11":{"tf":1.7320508075688772},"129":{"tf":2.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"151":{"tf":1.0},"204":{"tf":1.4142135623730951},"217":{"tf":1.0},"254":{"tf":2.23606797749979},"255":{"tf":1.0},"256":{"tf":1.0},"29":{"tf":1.0},"358":{"tf":1.4142135623730951},"384":{"tf":2.23606797749979},"385":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"422":{"tf":1.0},"465":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}},"df":3,"docs":{"343":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"417":{"tf":1.0},"421":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":29,"docs":{"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"199":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"277":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":3.0},"359":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"180":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"208":{"tf":1.0},"325":{"tf":1.0},"470":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"125":{"tf":1.0},"127":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"454":{"tf":1.0},"455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":21,"docs":{"106":{"tf":1.0},"129":{"tf":1.0},"165":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"222":{"tf":1.0},"281":{"tf":1.0},"33":{"tf":2.8284271247461903},"355":{"tf":1.0},"358":{"tf":7.280109889280518},"400":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"204":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"422":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":21,"docs":{"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.23606797749979},"394":{"tf":2.23606797749979},"395":{"tf":2.23606797749979},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":2.8284271247461903},"422":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"112":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.4142135623730951},"295":{"tf":1.0},"407":{"tf":1.0},"442":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"268":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"244":{"tf":1.0},"416":{"tf":2.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"500":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"119":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"284":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"468":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"c":{"#":{"0":{"0":{"0":{"1":{"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":510,"docs":{"0":{"tf":1.0},"1":{"tf":2.0},"10":{"tf":1.0},"100":{"tf":1.7320508075688772},"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},"11":{"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},"12":{"tf":1.0},"120":{"tf":2.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},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"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},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":2.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"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},"19":{"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.4142135623730951},"196":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":2.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":2.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":2.0},"249":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"252":{"tf":2.449489742783178},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":2.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":2.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.7320508075688772},"292":{"tf":2.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":2.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":2.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":2.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"329":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":2.0},"34":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"35":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":2.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"36":{"tf":1.0},"360":{"tf":1.7320508075688772},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":1.7320508075688772},"364":{"tf":2.0},"365":{"tf":1.4142135623730951},"366":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.7320508075688772},"379":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":2.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":2.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"399":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":2.23606797749979},"417":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.4142135623730951},"429":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"44":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.7320508075688772},"444":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.7320508075688772},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":2.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":2.0},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":2.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":2.449489742783178},"502":{"tf":1.7320508075688772},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"197":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":14,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"343":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"407":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"61":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":4,"docs":{"161":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"370":{"tf":1.0}}},"k":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"199":{"tf":1.0},"284":{"tf":1.7320508075688772},"297":{"tf":1.0},"311":{"tf":1.0},"375":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"245":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"216":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"311":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"313":{"tf":1.0},"418":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"285":{"tf":1.0},"474":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"267":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"84":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"196":{"tf":1.0},"210":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"p":{"df":11,"docs":{"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"179":{"tf":4.898979485566356},"181":{"tf":3.1622776601683795},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}},"t":{"df":25,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.7320508075688772},"312":{"tf":1.0},"384":{"tf":1.4142135623730951},"429":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"487":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"483":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"205":{"tf":1.0},"35":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"311":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"311":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"p":{"c":{"df":4,"docs":{"102":{"tf":1.0},"158":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"436":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"472":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}},"n":{"df":18,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"204":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"358":{"tf":1.0},"401":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":103,"docs":{"102":{"tf":1.4142135623730951},"112":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":2.6457513110645907},"160":{"tf":2.23606797749979},"161":{"tf":2.6457513110645907},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":1.0},"166":{"tf":2.23606797749979},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"292":{"tf":2.449489742783178},"293":{"tf":1.0},"294":{"tf":2.0},"295":{"tf":1.7320508075688772},"296":{"tf":2.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.7320508075688772},"353":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"355":{"tf":3.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":4.58257569495584},"359":{"tf":2.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"374":{"tf":1.0},"385":{"tf":1.0},"399":{"tf":2.23606797749979},"400":{"tf":1.4142135623730951},"401":{"tf":1.7320508075688772},"402":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.7320508075688772},"406":{"tf":2.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":2.23606797749979},"444":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"460":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":3.0},"499":{"tf":1.0},"500":{"tf":2.6457513110645907},"501":{"tf":2.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.7320508075688772},"509":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"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":{}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"81":{"tf":2.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"33":{"tf":1.0},"500":{"tf":1.0}}}}},"·":{"df":1,"docs":{"48":{"tf":1.0}},"s":{")":{"/":{"(":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{")":{"/":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"/":{"2":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"140":{"tf":1.0},"42":{"tf":1.0},"470":{"tf":1.0}}}},"k":{"a":{"c":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"208":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"268":{"tf":1.0},"270":{"tf":1.0},"323":{"tf":2.449489742783178},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.7320508075688772},"328":{"tf":2.8284271247461903},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"205":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":29,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":4.58257569495584},"206":{"tf":3.0},"208":{"tf":3.3166247903554},"214":{"tf":1.7320508075688772},"223":{"tf":1.0},"364":{"tf":2.23606797749979},"365":{"tf":2.0},"366":{"tf":2.0},"367":{"tf":1.7320508075688772},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":2.6457513110645907},"421":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":31,"docs":{"104":{"tf":1.4142135623730951},"129":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":1.0},"208":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.7320508075688772},"486":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"509":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"425":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":45,"docs":{"23":{"tf":2.6457513110645907},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"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.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.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}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"127":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":2.0}}}}},"df":21,"docs":{"102":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"125":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"232":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"305":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"370":{"tf":1.0},"375":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":2.0},"51":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"266":{"tf":1.0}}},"n":{"df":1,"docs":{"436":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":7,"docs":{"130":{"tf":1.0},"140":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":9,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"311":{"tf":1.7320508075688772}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"209":{"tf":1.0},"384":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"127":{"tf":1.0},"130":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"27":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"41":{"tf":1.0},"421":{"tf":1.0},"509":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"436":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"#":{"1":{"7":{"8":{"1":{"df":1,"docs":{"413":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"7":{"9":{"6":{"df":1,"docs":{"479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"3":{"3":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"2":{"1":{"7":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"169":{"tf":1.0},"211":{"tf":1.0}}}},"df":2,"docs":{"358":{"tf":1.0},"48":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"141":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":2.449489742783178},"197":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"253":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.4142135623730951},"423":{"tf":1.0},"444":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0}}}}},"df":11,"docs":{"106":{"tf":1.0},"149":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"107":{"tf":1.0},"136":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.4142135623730951},"164":{"tf":2.0},"177":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"31":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"41":{"tf":1.0},"430":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":73,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"112":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":2.0},"216":{"tf":1.0},"226":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.7320508075688772},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"275":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"292":{"tf":1.0},"298":{"tf":1.4142135623730951},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"323":{"tf":1.0},"332":{"tf":1.4142135623730951},"339":{"tf":1.0},"345":{"tf":1.4142135623730951},"380":{"tf":1.0},"386":{"tf":1.7320508075688772},"399":{"tf":1.0},"408":{"tf":1.7320508075688772},"417":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.7320508075688772},"438":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.4142135623730951},"463":{"tf":1.0},"474":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.0},"488":{"tf":1.4142135623730951},"496":{"tf":1.0},"502":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"211":{"tf":1.0}},"e":{"d":{"df":4,"docs":{"268":{"tf":1.0},"358":{"tf":1.7320508075688772},"43":{"tf":1.0},"486":{"tf":1.0}}},"df":27,"docs":{"101":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.4142135623730951},"150":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"273":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"321":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.4142135623730951},"429":{"tf":1.0},"430":{"tf":1.0},"445":{"tf":1.0},"500":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":5,"docs":{"268":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"417":{"tf":1.0},"465":{"tf":1.0}}},"m":{"df":4,"docs":{"167":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"438":{"tf":1.0}}},"n":{"df":4,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"140":{"tf":1.0},"188":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"35":{"tf":1.4142135623730951},"421":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"205":{"tf":1.0},"230":{"tf":2.23606797749979},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":3.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{"df":9,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"209":{"tf":1.4142135623730951},"268":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"312":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"l":{"df":4,"docs":{"197":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"366":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"232":{"tf":1.0},"311":{"tf":1.0}}}},"n":{"d":{"df":17,"docs":{"129":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"258":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":2.0},"344":{"tf":1.0},"349":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":2.0},"386":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"343":{"tf":1.0},"349":{"tf":1.0},"486":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"179":{"tf":1.0},"328":{"tf":1.0}}}}},"s":{"df":6,"docs":{"312":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"t":{"df":7,"docs":{"106":{"tf":1.0},"223":{"tf":1.0},"254":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.4142135623730951},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"255":{"tf":1.0},"295":{"tf":1.0},"417":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"23":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":9,"docs":{"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"126":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":1,"docs":{"463":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"382":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":15,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":2.449489742783178},"149":{"tf":1.0},"158":{"tf":1.7320508075688772},"215":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"421":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"388":{"tf":1.0}}}},"i":{"c":{"df":7,"docs":{"199":{"tf":1.0},"207":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"122":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"240":{"tf":1.0},"313":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"487":{"tf":1.0},"492":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":14,"docs":{"482":{"tf":2.23606797749979},"483":{"tf":2.0},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"483":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"486":{"tf":1.0}},"s":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"486":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":47,"docs":{"108":{"tf":1.0},"14":{"tf":1.0},"165":{"tf":2.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"208":{"tf":2.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"24":{"tf":1.0},"254":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"305":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.7320508075688772},"419":{"tf":1.0},"42":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"500":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"421":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}},"r":{"df":9,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"235":{"tf":1.0},"304":{"tf":1.0},"341":{"tf":1.0},"63":{"tf":1.0}}}}}},"h":{"a":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"0":{"df":0,"docs":{},"f":{"1":{"2":{"8":{"7":{"2":{"4":{"4":{"7":{"9":{"5":{"8":{"d":{"5":{"0":{"a":{"a":{"7":{"b":{"9":{"3":{"7":{"b":{"0":{"1":{"0":{"6":{"5":{"6":{"1":{"a":{"5":{"8":{"8":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"2":{"6":{"2":{"8":{"d":{"3":{"3":{"df":0,"docs":{},"f":{"8":{"1":{"b":{"5":{"3":{"6":{"1":{"b":{"1":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"8":{"d":{"df":0,"docs":{},"f":{"7":{"0":{"8":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"151":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"171":{"tf":1.4142135623730951},"206":{"tf":3.0},"248":{"tf":1.0},"330":{"tf":1.0},"366":{"tf":1.7320508075688772},"374":{"tf":1.0},"378":{"tf":1.0},"454":{"tf":1.0},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"370":{"tf":1.0},"372":{"tf":1.0},"421":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"199":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"207":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"177":{"tf":1.0},"423":{"tf":1.0}}}},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"291":{"tf":1.0},"385":{"tf":1.0},"423":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":2.0},"118":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"134":{"tf":1.0}},"n":{"df":3,"docs":{"329":{"tf":1.0},"459":{"tf":1.0},"51":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"367":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":40,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":1.4142135623730951},"218":{"tf":1.0},"254":{"tf":1.7320508075688772},"285":{"tf":1.0},"296":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"355":{"tf":2.23606797749979},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"372":{"tf":2.449489742783178},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"438":{"tf":1.0},"455":{"tf":1.0},"462":{"tf":1.0},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"99":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"108":{"tf":1.0},"164":{"tf":1.0},"23":{"tf":1.4142135623730951},"358":{"tf":2.449489742783178},"359":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":5.0},"457":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":2.6457513110645907},"49":{"tf":1.0},"51":{"tf":2.8284271247461903},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":17,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"206":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"48":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":26,"docs":{"100":{"tf":1.7320508075688772},"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":2.0},"43":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"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":4,"docs":{"183":{"tf":1.0},"344":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0}}}}}}},"df":6,"docs":{"179":{"tf":1.0},"192":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"421":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":1,"docs":{"245":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"145":{"tf":1.0},"205":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.0},"43":{"tf":1.0},"500":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"148":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"384":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":13,"docs":{"128":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"265":{"tf":1.0},"312":{"tf":1.0},"352":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":1.0},"435":{"tf":1.0},"51":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"312":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"384":{"tf":1.0},"422":{"tf":1.0}}},"df":10,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"308":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"422":{"tf":1.0}},"f":{"df":1,"docs":{"498":{"tf":1.0}},"i":{"df":3,"docs":{"312":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"312":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":19,"docs":{"108":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"219":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"268":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"441":{"tf":1.0},"444":{"tf":2.0},"48":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"208":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"370":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"423":{"tf":1.0}}},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":27,"docs":{"110":{"tf":1.7320508075688772},"126":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"166":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.4142135623730951},"240":{"tf":1.0},"254":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":4.898979485566356},"384":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"386":{"tf":2.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":2.23606797749979},"457":{"tf":1.7320508075688772},"460":{"tf":1.4142135623730951},"468":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"408":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"384":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"310":{"tf":1.0},"311":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"410":{"tf":1.0},"421":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"111":{"tf":1.0},"362":{"tf":1.0},"375":{"tf":1.0},"422":{"tf":1.0},"487":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"372":{"tf":1.0},"374":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":22,"docs":{"199":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":2.0},"232":{"tf":1.0},"235":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":3.872983346207417},"51":{"tf":4.123105625617661},"52":{"tf":2.0},"53":{"tf":1.0}}},"w":{"df":4,"docs":{"166":{"tf":1.0},"180":{"tf":1.0},"270":{"tf":1.0},"367":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"362":{"tf":1.4142135623730951},"388":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"374":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"126":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"254":{"tf":1.0},"344":{"tf":1.0},"358":{"tf":1.0},"429":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"209":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"175":{"tf":2.23606797749979},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"181":{"tf":1.4142135623730951},"183":{"tf":3.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"202":{"tf":1.4142135623730951},"220":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":15,"docs":{"204":{"tf":1.7320508075688772},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"374":{"tf":2.0},"421":{"tf":1.0},"423":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"222":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"d":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"t":{"df":19,"docs":{"165":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":2.6457513110645907},"208":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"255":{"tf":1.0},"291":{"tf":1.0},"367":{"tf":2.23606797749979},"377":{"tf":1.0},"455":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":2.6457513110645907},"468":{"tf":1.4142135623730951},"481":{"tf":1.0},"500":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"158":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"380":{"tf":1.0},"385":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"1":{"df":1,"docs":{"209":{"tf":1.0}}},"2":{"df":1,"docs":{"209":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"327":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"131":{"tf":1.0},"158":{"tf":1.0},"85":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"180":{"tf":1.0},"205":{"tf":1.0},"222":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"h":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":36,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"197":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}},"n":{"df":5,"docs":{"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"125":{"tf":1.0},"199":{"tf":1.0}}}},"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":8,"docs":{"111":{"tf":1.0},"126":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"250":{"tf":1.4142135623730951},"268":{"tf":1.0},"425":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":43,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"196":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"250":{"tf":2.449489742783178},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"341":{"tf":1.4142135623730951},"37":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"408":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"473":{"tf":1.0},"501":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":13,"docs":{"107":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.6457513110645907},"213":{"tf":1.0},"252":{"tf":1.0},"328":{"tf":1.0},"384":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"166":{"tf":1.0},"362":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"269":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"429":{"tf":2.23606797749979},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"218":{"tf":1.0},"311":{"tf":1.0},"401":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"241":{"tf":1.0},"406":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"23":{"tf":1.0},"245":{"tf":1.0},"66":{"tf":2.23606797749979}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"398":{"tf":1.0}}}},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"205":{"tf":1.0},"250":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"177":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"179":{"tf":1.7320508075688772},"189":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"255":{"tf":1.7320508075688772},"355":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":5,"docs":{"165":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.0},"470":{"tf":1.7320508075688772}}}},"k":{"df":0,"docs":{},"e":{"df":15,"docs":{"119":{"tf":1.0},"183":{"tf":1.0},"232":{"tf":2.23606797749979},"245":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"312":{"tf":4.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"442":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":67,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"175":{"tf":1.0},"181":{"tf":1.4142135623730951},"196":{"tf":1.0},"202":{"tf":2.0},"210":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.4142135623730951},"248":{"tf":1.0},"251":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.7320508075688772},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"292":{"tf":1.0},"295":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"353":{"tf":1.0},"356":{"tf":1.7320508075688772},"364":{"tf":1.0},"368":{"tf":1.7320508075688772},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"394":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"402":{"tf":1.4142135623730951},"416":{"tf":1.0},"419":{"tf":1.7320508075688772},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.7320508075688772},"433":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.7320508075688772},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"463":{"tf":1.0},"467":{"tf":1.4142135623730951},"482":{"tf":1.0},"485":{"tf":1.4142135623730951},"496":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":6,"docs":{"221":{"tf":1.0},"226":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}}}},"t":{"df":51,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":2.23606797749979},"364":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"464":{"tf":1.0},"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":28,"docs":{"104":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.4142135623730951},"305":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"312":{"tf":2.0},"313":{"tf":1.0},"324":{"tf":1.0},"337":{"tf":1.0},"358":{"tf":1.0},"393":{"tf":1.0},"418":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"72":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":2,"docs":{"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"204":{"tf":1.0},"275":{"tf":1.0},"281":{"tf":1.4142135623730951},"358":{"tf":1.0},"471":{"tf":1.0}}}},"y":{"df":3,"docs":{"205":{"tf":1.0},"312":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"398":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"365":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"374":{"tf":1.0}}}},"m":{"df":1,"docs":{"18":{"tf":1.0}}},"p":{"df":13,"docs":{"106":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":2.449489742783178},"270":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"349":{"tf":1.0},"39":{"tf":1.0},"444":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":19,"docs":{"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.4142135623730951},"309":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.7320508075688772},"423":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"231":{"tf":1.0},"232":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":3.4641016151377544}}},"r":{"a":{"df":0,"docs":{},"g":{"df":33,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"115":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"18":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"312":{"tf":1.0},"358":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":2.449489742783178},"384":{"tf":2.23606797749979},"385":{"tf":1.7320508075688772},"406":{"tf":1.4142135623730951},"422":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":2.6457513110645907},"457":{"tf":1.4142135623730951},"468":{"tf":1.0},"472":{"tf":1.4142135623730951},"481":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":10,"docs":{"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"_":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"129":{"tf":1.0},"143":{"tf":1.7320508075688772},"151":{"tf":1.0},"248":{"tf":2.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"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},"382":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.7320508075688772},"471":{"tf":1.0},"472":{"tf":1.7320508075688772}}},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"341":{"tf":1.0},"372":{"tf":1.0}}}}},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":9,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"422":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"385":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"295":{"tf":1.4142135623730951},"296":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"418":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"122":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"240":{"tf":1.0},"305":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"201":{"tf":1.0},"255":{"tf":1.4142135623730951},"272":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"500":{"tf":1.0},"504":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"254":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":2,"docs":{"104":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"473":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"452":{"tf":1.0},"500":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"209":{"tf":2.23606797749979},"254":{"tf":1.0},"384":{"tf":1.0},"486":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"294":{"tf":1.0},"32":{"tf":2.23606797749979},"425":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"b":{"0":{"df":1,"docs":{"452":{"tf":1.0}}},"df":4,"docs":{"204":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"215":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"t":{"df":10,"docs":{"179":{"tf":1.7320508075688772},"312":{"tf":1.0},"36":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"22":{"tf":1.0},"460":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}},"t":{"df":6,"docs":{"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"38":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"a":{"c":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"436":{"tf":1.0},"449":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"355":{"tf":1.0},"481":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":15,"docs":{"146":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"164":{"tf":1.4142135623730951},"174":{"tf":1.0},"188":{"tf":1.0},"252":{"tf":2.0},"341":{"tf":1.0},"343":{"tf":1.0},"360":{"tf":1.0},"402":{"tf":1.0},"495":{"tf":1.0},"498":{"tf":1.0},"98":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"254":{"tf":1.0},"340":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":12,"docs":{"140":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"318":{"tf":1.0},"470":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"501":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"206":{"tf":1.0},"224":{"tf":1.4142135623730951},"313":{"tf":1.0},"358":{"tf":3.1622776601683795},"398":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"206":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"472":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":36,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"398":{"tf":1.0},"423":{"tf":1.0},"449":{"tf":1.4142135623730951},"464":{"tf":1.0},"473":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"375":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"200":{"tf":1.0},"204":{"tf":1.0},"382":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"102":{"tf":1.0},"151":{"tf":1.0},"193":{"tf":1.0},"256":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"22":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"16":{"tf":1.0},"165":{"tf":1.0},"294":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"200":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":60,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.4142135623730951},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"358":{"tf":1.7320508075688772},"359":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"358":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"366":{"tf":1.0},"370":{"tf":1.0},"421":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":44,"docs":{"114":{"tf":1.0},"130":{"tf":1.7320508075688772},"159":{"tf":2.23606797749979},"160":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"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.7320508075688772},"172":{"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.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"210":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":1.0},"312":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":3,"docs":{"388":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"129":{"tf":1.0},"254":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"498":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}},"g":{"df":1,"docs":{"375":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"178":{"tf":1.0},"358":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"398":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"393":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"363":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"295":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"254":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"238":{"tf":1.0},"310":{"tf":1.0}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"401":{"tf":1.0},"406":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"s":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"125":{"tf":2.23606797749979},"127":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":93,"docs":{"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":2.6457513110645907},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":2.23606797749979},"231":{"tf":1.4142135623730951},"232":{"tf":2.8284271247461903},"233":{"tf":2.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"253":{"tf":1.0},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":2.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"311":{"tf":1.4142135623730951},"312":{"tf":3.1622776601683795},"313":{"tf":1.4142135623730951},"317":{"tf":1.0},"35":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}}},"·":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"0":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"50":{"tf":1.0}}},"4":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"df":1,"docs":{"50":{"tf":1.0}}},":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"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":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":32,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":20,"docs":{"114":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"197":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"222":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"386":{"tf":1.4142135623730951},"432":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":3,"docs":{"240":{"tf":1.0},"358":{"tf":1.0},"74":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"399":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}},"k":{"df":1,"docs":{"504":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":17,"docs":{"151":{"tf":1.0},"170":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"256":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":2.23606797749979}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"100":{"tf":1.0},"140":{"tf":1.0},"204":{"tf":2.8284271247461903},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"209":{"tf":4.58257569495584},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"277":{"tf":1.0},"421":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"208":{"tf":1.0},"33":{"tf":2.449489742783178},"372":{"tf":1.7320508075688772},"48":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":18,"docs":{"100":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.7320508075688772},"25":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.4142135623730951},"287":{"tf":1.0},"296":{"tf":1.0},"368":{"tf":1.0},"402":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":21,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"187":{"tf":1.0},"209":{"tf":1.0},"231":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.4142135623730951},"341":{"tf":1.0},"422":{"tf":1.4142135623730951},"426":{"tf":1.0},"443":{"tf":1.4142135623730951},"446":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":8,"docs":{"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"419":{"tf":1.0},"95":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"444":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"401":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"167":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"417":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"151":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"256":{"tf":1.0},"270":{"tf":1.0},"291":{"tf":1.4142135623730951},"415":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":57,"docs":{"1":{"tf":1.0},"112":{"tf":1.7320508075688772},"120":{"tf":1.0},"132":{"tf":1.7320508075688772},"141":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"159":{"tf":1.0},"167":{"tf":2.23606797749979},"175":{"tf":1.0},"189":{"tf":1.7320508075688772},"196":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"216":{"tf":1.0},"226":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":2.0},"240":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.4142135623730951},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"275":{"tf":1.0},"285":{"tf":1.7320508075688772},"292":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"323":{"tf":1.0},"332":{"tf":1.4142135623730951},"339":{"tf":1.0},"345":{"tf":1.4142135623730951},"380":{"tf":1.0},"386":{"tf":1.4142135623730951},"399":{"tf":1.0},"402":{"tf":1.0},"408":{"tf":2.0},"427":{"tf":1.0},"433":{"tf":1.4142135623730951},"440":{"tf":1.0},"446":{"tf":1.7320508075688772},"463":{"tf":1.0},"474":{"tf":1.7320508075688772},"482":{"tf":1.0},"488":{"tf":2.0},"496":{"tf":1.0},"502":{"tf":1.4142135623730951},"56":{"tf":2.0},"68":{"tf":1.0},"74":{"tf":2.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"285":{"tf":1.0},"313":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"372":{"tf":1.4142135623730951}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"382":{"tf":1.0},"386":{"tf":1.0},"425":{"tf":1.0}}}},"t":{"'":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"129":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"141":{"tf":1.0},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.4142135623730951},"398":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"i":{"df":2,"docs":{"255":{"tf":1.0},"422":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"13":{"tf":1.0},"297":{"tf":1.0},"501":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"207":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"398":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"129":{"tf":1.0},"340":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.4142135623730951},"504":{"tf":1.0}}},"k":{"df":2,"docs":{"235":{"tf":1.0},"251":{"tf":1.0}}}},"r":{"d":{"df":3,"docs":{"169":{"tf":1.0},"222":{"tf":1.0},"327":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"116":{"tf":1.0},"181":{"tf":1.7320508075688772},"217":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"325":{"tf":1.0},"398":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"177":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"425":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"501":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"201":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"311":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"406":{"tf":1.0},"469":{"tf":1.0},"500":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"128":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"442":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"235":{"tf":1.0},"277":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.4142135623730951},"498":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"421":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"194":{"tf":1.0},"311":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"129":{"tf":1.0},"14":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"25":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"311":{"tf":1.0},"328":{"tf":1.0},"382":{"tf":2.0},"386":{"tf":1.0},"442":{"tf":1.0},"492":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":15,"docs":{"23":{"tf":3.0},"35":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"38":{"tf":2.0},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"48":{"tf":5.291502622129181},"49":{"tf":2.449489742783178},"50":{"tf":3.7416573867739413},"51":{"tf":2.6457513110645907},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"i":{"d":{"df":2,"docs":{"48":{"tf":2.23606797749979},"50":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"341":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"415":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"e":{"df":61,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.4142135623730951},"282":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"325":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":2.8284271247461903},"382":{"tf":1.4142135623730951},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"442":{"tf":2.0},"444":{"tf":1.4142135623730951},"455":{"tf":2.23606797749979},"465":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"480":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"430":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"205":{"tf":2.6457513110645907},"206":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":3.872983346207417}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"429":{"tf":1.4142135623730951}}}}}}},"k":{"df":1,"docs":{"50":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"99":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"179":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"368":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":2.23606797749979},"419":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"232":{"tf":1.0},"284":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"364":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"164":{"tf":1.0},"180":{"tf":1.0},"277":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"134":{"tf":1.0},"178":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"252":{"tf":1.0},"479":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":3.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"209":{"tf":1.4142135623730951},"258":{"tf":1.0},"329":{"tf":1.0},"395":{"tf":1.0},"469":{"tf":1.0},"48":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"406":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"205":{"tf":1.0},"452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"429":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0}}},"df":29,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"312":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":2.23606797749979},"428":{"tf":1.4142135623730951},"429":{"tf":3.0},"430":{"tf":1.4142135623730951},"431":{"tf":2.23606797749979},"432":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"439":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.7320508075688772},"455":{"tf":1.0},"460":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"436":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"119":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"368":{"tf":1.0},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"175":{"tf":1.0},"188":{"tf":1.4142135623730951}}}}},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"153":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}},"t":{"df":4,"docs":{"206":{"tf":1.4142135623730951},"407":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":36,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":2.0},"14":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"221":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"235":{"tf":1.0},"277":{"tf":1.0},"309":{"tf":1.0},"317":{"tf":1.0},"339":{"tf":2.449489742783178},"340":{"tf":2.0},"341":{"tf":2.8284271247461903},"342":{"tf":1.0},"343":{"tf":2.23606797749979},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"408":{"tf":1.0},"413":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"320":{"tf":1.0},"322":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"42":{"tf":1.0},"44":{"tf":2.449489742783178},"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":9,"docs":{"110":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"382":{"tf":1.0},"421":{"tf":1.4142135623730951},"459":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":2,"docs":{"222":{"tf":1.0},"421":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"105":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.0},"305":{"tf":2.23606797749979},"382":{"tf":1.0},"423":{"tf":1.0},"506":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"178":{"tf":1.0},"179":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":2,"docs":{"129":{"tf":1.0},"99":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"427":{"tf":2.23606797749979},"428":{"tf":1.4142135623730951},"429":{"tf":2.23606797749979},"430":{"tf":1.4142135623730951},"431":{"tf":2.0},"432":{"tf":1.7320508075688772},"433":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"439":{"tf":1.0}},"i":{"df":16,"docs":{"117":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"269":{"tf":1.0},"297":{"tf":1.4142135623730951},"307":{"tf":1.0},"312":{"tf":1.0},"326":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":3.1622776601683795},"429":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"104":{"tf":1.0},"209":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"102":{"tf":2.6457513110645907},"103":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.4142135623730951},"112":{"tf":1.0},"129":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"429":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":5,"docs":{"126":{"tf":1.4142135623730951},"143":{"tf":1.0},"384":{"tf":1.4142135623730951},"414":{"tf":1.0},"422":{"tf":1.0}},"e":{"df":6,"docs":{"126":{"tf":1.0},"250":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":3.872983346207417},"385":{"tf":1.0},"455":{"tf":2.0}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"140":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"209":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"381":{"tf":1.0}},"l":{"df":1,"docs":{"375":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"208":{"tf":1.4142135623730951},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"442":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"250":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"129":{"tf":1.4142135623730951},"178":{"tf":1.0},"384":{"tf":2.0},"422":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"199":{"tf":1.0},"232":{"tf":1.7320508075688772},"255":{"tf":1.0},"263":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"418":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"486":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"444":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"442":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"355":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":37,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"221":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.4142135623730951},"310":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"362":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951},"498":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0}},"x":{"6":{"4":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"104":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"104":{"tf":1.0}}}}},"df":30,"docs":{"102":{"tf":2.0},"104":{"tf":3.605551275463989},"164":{"tf":1.4142135623730951},"196":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":3.7416573867739413},"216":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"23":{"tf":1.0},"268":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"341":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.4142135623730951},"436":{"tf":1.0},"45":{"tf":1.4142135623730951},"469":{"tf":2.23606797749979},"470":{"tf":1.0},"472":{"tf":1.0},"486":{"tf":2.0},"491":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":9,"docs":{"219":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"328":{"tf":1.0},"358":{"tf":1.0},"385":{"tf":1.0},"438":{"tf":1.0},"460":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":1,"docs":{"372":{"tf":1.0}}}}},"·":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{".":{"df":1,"docs":{"328":{"tf":1.0}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"128":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":2.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"457":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"102":{"tf":1.7320508075688772},"209":{"tf":1.0},"42":{"tf":1.4142135623730951},"486":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.7320508075688772}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"305":{"tf":1.0}}}}}}}},"c":{"'":{"df":1,"docs":{"417":{"tf":1.0}}},"df":11,"docs":{"199":{"tf":1.0},"201":{"tf":2.23606797749979},"204":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"365":{"tf":1.0},"395":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0}}},"df":1,"docs":{"372":{"tf":1.0}},"i":{"df":2,"docs":{"272":{"tf":1.0},"306":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"119":{"tf":1.0},"266":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"99":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"204":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"281":{"tf":1.4142135623730951},"284":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"204":{"tf":1.0},"222":{"tf":1.0},"472":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.4142135623730951},"388":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"364":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"441":{"tf":1.0},"444":{"tf":1.7320508075688772}}}}},"r":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"421":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}},"df":11,"docs":{"127":{"tf":1.0},"147":{"tf":1.7320508075688772},"208":{"tf":1.0},"222":{"tf":1.0},"236":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"444":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"82":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"37":{"tf":1.0},"423":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"449":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"218":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"398":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":1,"docs":{"406":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"146":{"tf":1.0},"341":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"501":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"161":{"tf":1.0},"415":{"tf":1.0},"70":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"311":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":10,"docs":{"13":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"238":{"tf":1.0},"337":{"tf":1.0},"421":{"tf":1.0},"7":{"tf":2.0},"74":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}}}}}}},"df":1,"docs":{"72":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":7,"docs":{"156":{"tf":1.0},"180":{"tf":1.0},"196":{"tf":1.0},"214":{"tf":1.7320508075688772},"216":{"tf":1.0},"228":{"tf":1.4142135623730951},"455":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"207":{"tf":1.0},"32":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"179":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"205":{"tf":1.0},"235":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"199":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.7320508075688772},"282":{"tf":2.0},"283":{"tf":1.0},"289":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"341":{"tf":1.0},"398":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"386":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"256":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"122":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"322":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"464":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":52,"docs":{"1":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"138":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"194":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.4142135623730951},"248":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"290":{"tf":1.4142135623730951},"292":{"tf":1.0},"301":{"tf":1.4142135623730951},"303":{"tf":1.0},"321":{"tf":1.4142135623730951},"323":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.0},"362":{"tf":1.4142135623730951},"380":{"tf":1.0},"392":{"tf":1.4142135623730951},"399":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"451":{"tf":1.4142135623730951},"463":{"tf":1.0},"480":{"tf":1.4142135623730951},"482":{"tf":1.0},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"508":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"205":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"457":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"421":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.0},"24":{"tf":1.0},"256":{"tf":1.0},"282":{"tf":1.0},"358":{"tf":1.0},"498":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"207":{"tf":1.0},"255":{"tf":1.0},"454":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"209":{"tf":1.0},"366":{"tf":1.0},"421":{"tf":1.0},"48":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"131":{"tf":1.0},"167":{"tf":1.4142135623730951},"179":{"tf":1.0},"209":{"tf":1.7320508075688772},"238":{"tf":1.0},"250":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"281":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"365":{"tf":1.0},"412":{"tf":1.0},"436":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.7320508075688772},"54":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"126":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.0},"166":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.4142135623730951},"370":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"442":{"tf":1.4142135623730951},"48":{"tf":1.0},"498":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":16,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":3.1622776601683795},"131":{"tf":1.0},"136":{"tf":1.4142135623730951},"171":{"tf":1.0},"210":{"tf":1.4142135623730951},"242":{"tf":1.0},"281":{"tf":1.0},"296":{"tf":1.0},"374":{"tf":1.0},"461":{"tf":1.0},"472":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"386":{"tf":1.0},"472":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"418":{"tf":1.0},"465":{"tf":1.0},"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"421":{"tf":1.0},"431":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":21,"docs":{"115":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":2.23606797749979},"205":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"224":{"tf":1.4142135623730951},"381":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"436":{"tf":1.0},"460":{"tf":1.0},"491":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"21":{"tf":1.0}}}},"c":{"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.0}}},"df":3,"docs":{"13":{"tf":1.4142135623730951},"192":{"tf":1.0},"328":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"177":{"tf":1.0},"178":{"tf":1.0},"328":{"tf":1.7320508075688772}}}},"df":114,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":2.0},"180":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":2.0},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"321":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":2.23606797749979},"358":{"tf":2.449489742783178},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"384":{"tf":1.7320508075688772},"388":{"tf":1.0},"393":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"418":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":2.6457513110645907},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"49":{"tf":1.0},"500":{"tf":1.7320508075688772},"51":{"tf":2.449489742783178},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":2.449489742783178},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"312":{"tf":1.0}}},"df":30,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.0},"279":{"tf":1.0},"312":{"tf":1.4142135623730951},"318":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"436":{"tf":1.0},"444":{"tf":1.4142135623730951},"469":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"486":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":27,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"35":{"tf":1.0},"398":{"tf":1.4142135623730951},"411":{"tf":1.0},"418":{"tf":1.0},"44":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"468":{"tf":1.0},"52":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"250":{"tf":1.0}}}},"v":{"0":{"df":2,"docs":{"102":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},".":{"0":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":2.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"2":{"+":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"122":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":59,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":3.0},"130":{"tf":2.8284271247461903},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":2.8284271247461903},"206":{"tf":1.0},"23":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"24":{"tf":1.4142135623730951},"249":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.7320508075688772},"309":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"444":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"466":{"tf":2.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.23606797749979},"47":{"tf":2.0},"470":{"tf":2.449489742783178},"471":{"tf":1.0},"472":{"tf":2.0},"473":{"tf":1.0},"48":{"tf":3.1622776601683795},"485":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":2.0},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"310":{"tf":1.0},"311":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}}},"df":59,"docs":{"1":{"tf":1.0},"102":{"tf":2.23606797749979},"103":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":2.449489742783178},"14":{"tf":1.0},"147":{"tf":1.4142135623730951},"153":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"208":{"tf":2.449489742783178},"209":{"tf":2.0},"21":{"tf":1.0},"222":{"tf":2.23606797749979},"223":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":5.196152422706632},"366":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":3.605551275463989},"384":{"tf":2.6457513110645907},"386":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"400":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"48":{"tf":2.8284271247461903},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"49":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":2.0},"500":{"tf":2.0},"501":{"tf":1.0},"502":{"tf":1.0},"54":{"tf":1.7320508075688772},"7":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"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":{"358":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"254":{"tf":1.0},"374":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"104":{"tf":3.1622776601683795},"250":{"tf":1.0},"421":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"205":{"tf":1.0},"232":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":11,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"277":{"tf":1.0},"416":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":7,"docs":{"129":{"tf":1.4142135623730951},"161":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"358":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{"c":{"!":{"[":{"(":{"a":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"340":{"tf":1.0},"341":{"tf":1.7320508075688772},"343":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"8":{"df":3,"docs":{"102":{"tf":2.0},"129":{"tf":1.4142135623730951},"486":{"tf":2.0}}},"df":0,"docs":{}}},"df":3,"docs":{"209":{"tf":3.0},"340":{"tf":1.0},"343":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":27,"docs":{"128":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"222":{"tf":1.0},"239":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"277":{"tf":1.4142135623730951},"318":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.7320508075688772},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"48":{"tf":1.0},"501":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":12,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"23":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"483":{"tf":1.0},"488":{"tf":1.0},"52":{"tf":2.0},"83":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":17,"docs":{"119":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"255":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"159":{"tf":1.0},"160":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":39,"docs":{"102":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"112":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"171":{"tf":1.0},"250":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"344":{"tf":1.0},"358":{"tf":5.916079783099616},"363":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"449":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":3.4641016151377544},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"l":{"df":2,"docs":{"465":{"tf":1.0},"500":{"tf":1.0}}}},"df":22,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"242":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"330":{"tf":1.0},"370":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"202":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":2,"docs":{"327":{"tf":1.0},"328":{"tf":1.0}},"i":{"df":2,"docs":{"327":{"tf":1.0},"328":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"405":{"tf":1.0},"406":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"184":{"tf":1.0},"199":{"tf":1.0},"358":{"tf":3.4641016151377544}}}},"df":1,"docs":{"206":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"365":{"tf":1.0},"379":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"180":{"tf":1.0}},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"310":{"tf":1.0},"313":{"tf":1.0}}},"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"398":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":20,"docs":{"140":{"tf":2.23606797749979},"235":{"tf":1.4142135623730951},"277":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":2.23606797749979},"441":{"tf":3.4641016151377544},"442":{"tf":2.449489742783178},"443":{"tf":1.0},"444":{"tf":4.47213595499958},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0}},"r":{"df":4,"docs":{"235":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}},"s":{"(":{"1":{"6":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}},"s":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":9,"docs":{"23":{"tf":2.23606797749979},"41":{"tf":2.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"61":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"42":{"tf":2.0},"43":{"tf":2.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"43":{"tf":2.23606797749979},"44":{"tf":1.0},"45":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"51":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":2.0},"45":{"tf":2.8284271247461903},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"438":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"232":{"tf":1.0}}}}}}},"·":{"2":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"325":{"tf":1.0},"337":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"208":{"tf":1.4142135623730951},"382":{"tf":1.0},"422":{"tf":1.0},"470":{"tf":1.0},"506":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"382":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.7320508075688772},"256":{"tf":1.0},"269":{"tf":1.0},"375":{"tf":1.0},"425":{"tf":1.0},"449":{"tf":1.0},"481":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"393":{"tf":1.0}}},"t":{"df":1,"docs":{"344":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"284":{"tf":1.0}}}}}}}}},"df":10,"docs":{"161":{"tf":1.7320508075688772},"165":{"tf":2.0},"170":{"tf":1.0},"180":{"tf":1.4142135623730951},"281":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.0},"498":{"tf":2.23606797749979},"500":{"tf":2.0},"501":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"177":{"tf":1.0},"311":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"48":{"tf":1.0}}}},"y":{"df":35,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.4142135623730951},"161":{"tf":1.0},"164":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"22":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"429":{"tf":1.0},"452":{"tf":1.4142135623730951},"455":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772}}}},"b":{"3":{"df":6,"docs":{"177":{"tf":1.0},"212":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"205":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.4142135623730951},"422":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"175":{"tf":1.0},"183":{"tf":2.449489742783178},"191":{"tf":1.0},"209":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":2.23606797749979},"457":{"tf":1.0},"462":{"tf":1.0},"490":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"365":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"449":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"498":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"296":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"204":{"tf":1.0},"206":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"199":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"129":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"330":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"438":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"205":{"tf":1.0},"232":{"tf":1.0},"439":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"48":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"343":{"tf":1.0},"384":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"435":{"tf":1.0}}},"h":{"df":4,"docs":{"268":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"444":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":3,"docs":{"179":{"tf":1.7320508075688772},"183":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"157":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"227":{"tf":1.0},"250":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.0},"358":{"tf":1.4142135623730951},"398":{"tf":1.0},"41":{"tf":1.0},"418":{"tf":2.0},"422":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"199":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"423":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.4142135623730951},"82":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"468":{"tf":1.0},"470":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":5,"docs":{"196":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"452":{"tf":1.0}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"128":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.7320508075688772},"421":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":26,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.7320508075688772},"256":{"tf":1.0},"295":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"382":{"tf":1.0},"422":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"209":{"tf":3.1622776601683795},"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"206":{"tf":1.4142135623730951},"209":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"200":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"180":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"355":{"tf":1.0},"388":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"192":{"tf":1.0},"205":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"358":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"179":{"tf":1.0},"253":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":5.656854249492381}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"178":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.4142135623730951},"341":{"tf":1.0},"358":{"tf":2.6457513110645907}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{".":{"0":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"d":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"184":{"tf":1.4142135623730951}},"m":{"df":25,"docs":{"184":{"tf":1.0},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.4142135623730951},"238":{"tf":1.0},"277":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}},"df":3,"docs":{"33":{"tf":2.6457513110645907},"372":{"tf":1.0},"48":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}},"df":1,"docs":{"206":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"372":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"171":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"328":{"tf":1.0},"329":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"159":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"421":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"125":{"tf":1.4142135623730951},"192":{"tf":1.0},"208":{"tf":1.4142135623730951},"223":{"tf":1.0},"358":{"tf":2.0}}}}},"k":{"df":6,"docs":{"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"179":{"tf":1.0},"193":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"292":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"title":{"root":{"0":{"0":{"0":{"0":{"df":2,"docs":{"1":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":1,"docs":{"353":{"tf":1.0}}},"6":{"df":1,"docs":{"364":{"tf":1.0}}},"7":{"df":1,"docs":{"230":{"tf":1.0}}},"8":{"df":1,"docs":{"248":{"tf":1.0}}},"9":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"394":{"tf":1.0}}},"2":{"df":1,"docs":{"264":{"tf":1.0}}},"3":{"df":1,"docs":{"399":{"tf":1.0}}},"4":{"df":1,"docs":{"275":{"tf":1.0}}},"5":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"2":{"df":1,"docs":{"292":{"tf":1.0}}},"6":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"303":{"tf":1.0}}},"5":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"81":{"tf":1.0}}},"3":{"df":1,"docs":{"453":{"tf":1.0}}},"4":{"df":1,"docs":{"463":{"tf":1.0}}},"7":{"df":1,"docs":{"120":{"tf":1.0}}},"8":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"323":{"tf":1.0}}},"4":{"df":1,"docs":{"496":{"tf":1.0}}},"6":{"df":1,"docs":{"339":{"tf":1.0}}},"9":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"159":{"tf":1.0}}},"6":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"61":{"tf":1.0}}},"1":{"df":1,"docs":{"62":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"64":{"tf":1.0}}},"2":{"df":1,"docs":{"65":{"tf":1.0}}},"3":{"df":1,"docs":{"66":{"tf":1.0}}},"4":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"63":{"tf":1.0}}},"df":2,"docs":{"196":{"tf":1.0},"25":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"2":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"3":{".":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"2":{"df":1,"docs":{"33":{"tf":1.0}}},"3":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"2":{"df":1,"docs":{"37":{"tf":1.0}}},"3":{"df":1,"docs":{"38":{"tf":1.0}}},"4":{"df":1,"docs":{"39":{"tf":1.0}}},"5":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}},"5":{".":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"2":{"df":1,"docs":{"43":{"tf":1.0}}},"3":{"df":1,"docs":{"44":{"tf":1.0}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"216":{"tf":1.0},"41":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.0}}},"3":{"df":1,"docs":{"49":{"tf":1.0}}},"4":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"df":1,"docs":{"51":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}}},"7":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}}},"7":{"df":1,"docs":{"55":{"tf":1.0}}},"8":{"df":1,"docs":{"56":{"tf":1.0}}},"9":{".":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"3":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"57":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"d":{"df":3,"docs":{"141":{"tf":1.0},"175":{"tf":1.0},"81":{"tf":1.0}}},"df":1,"docs":{"264":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"159":{"tf":1.0},"183":{"tf":1.0},"311":{"tf":1.0},"353":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"214":{"tf":1.0},"228":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"399":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"310":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":28,"docs":{"117":{"tf":1.0},"137":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.0},"289":{"tf":1.0},"300":{"tf":1.0},"320":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0},"413":{"tf":1.0},"425":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"479":{"tf":1.0},"493":{"tf":1.0},"507":{"tf":1.0},"61":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"328":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":5,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"184":{"tf":1.0},"186":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"128":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"120":{"tf":1.0},"126":{"tf":1.0},"127":{"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":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"141":{"tf":1.0},"184":{"tf":1.0},"463":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"d":{"df":2,"docs":{"38":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"399":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"405":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"453":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"364":{"tf":1.0},"421":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"394":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"141":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"108":{"tf":1.0},"149":{"tf":1.0},"206":{"tf":1.0},"248":{"tf":1.0},"64":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"282":{"tf":1.0},"359":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"120":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"165":{"tf":1.0},"380":{"tf":1.0},"496":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"125":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"264":{"tf":1.0},"269":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":49,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.0},"387":{"tf":1.0},"390":{"tf":1.0},"409":{"tf":1.0},"412":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"496":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"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":{"375":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"404":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"399":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"196":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"216":{"tf":1.0},"364":{"tf":1.0},"394":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"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":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"+":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"32":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"440":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"469":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"312":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"8":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"416":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"180":{"tf":1.0},"29":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":23,"docs":{"119":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"174":{"tf":1.0},"195":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"247":{"tf":1.0},"263":{"tf":1.0},"291":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"393":{"tf":1.0},"415":{"tf":1.0},"439":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"244":{"tf":1.0},"423":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"223":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":29,"docs":{"109":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"255":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"331":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.0},"376":{"tf":1.0},"385":{"tf":1.0},"407":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"445":{"tf":1.0},"473":{"tf":1.0},"487":{"tf":1.0},"501":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":49,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"272":{"tf":1.0},"287":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"387":{"tf":1.0},"389":{"tf":1.0},"409":{"tf":1.0},"411":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"m":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":2,"docs":{"184":{"tf":1.0},"186":{"tf":1.0}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":30,"docs":{"101":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"203":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"280":{"tf":1.0},"296":{"tf":1.0},"307":{"tf":1.0},"327":{"tf":1.0},"343":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"403":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"444":{"tf":1.0},"457":{"tf":1.0},"468":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"323":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"12":{"tf":1.0},"128":{"tf":1.0},"206":{"tf":1.0},"310":{"tf":1.0},"34":{"tf":1.0},"358":{"tf":1.0},"372":{"tf":1.0},"453":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"423":{"tf":1.0},"9":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":25,"docs":{"119":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"174":{"tf":1.0},"195":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"247":{"tf":1.0},"263":{"tf":1.0},"291":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"363":{"tf":1.0},"378":{"tf":1.0},"393":{"tf":1.0},"415":{"tf":1.0},"439":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"482":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":1,"docs":{"496":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"353":{"tf":1.0},"358":{"tf":1.0},"453":{"tf":1.0}}}}},"u":{"b":{"df":2,"docs":{"1":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"275":{"tf":1.0},"380":{"tf":1.0},"453":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"!":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"180":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"245":{"tf":1.0},"42":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"159":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"216":{"tf":1.0},"309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"453":{"tf":1.0}},"t":{"df":3,"docs":{"0":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"1":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"183":{"tf":1.0},"224":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"275":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"207":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"119":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"174":{"tf":1.0},"195":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"247":{"tf":1.0},"263":{"tf":1.0},"291":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"393":{"tf":1.0},"415":{"tf":1.0},"439":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"m":{"df":1,"docs":{"399":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"275":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"353":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"105":{"tf":1.0}}},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"222":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"283":{"tf":1.0},"308":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"184":{"tf":1.0},"463":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"427":{"tf":1.0},"440":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":31,"docs":{"122":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"325":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"366":{"tf":1.0},"382":{"tf":1.0},"396":{"tf":1.0},"401":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"442":{"tf":1.0},"455":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"97":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"178":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"129":{"tf":1.0},"254":{"tf":1.0},"380":{"tf":1.0}}}}}}},"w":{"df":6,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"358":{"tf":1.0}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"339":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"339":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"204":{"tf":1.0},"370":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"482":{"tf":1.0}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"496":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"248":{"tf":1.0},"275":{"tf":1.0},"453":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"472":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"339":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":49,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"423":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"175":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"363":{"tf":1.0},"378":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"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":{"43":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"399":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"199":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":29,"docs":{"117":{"tf":1.0},"137":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.0},"289":{"tf":1.0},"300":{"tf":1.0},"320":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0},"413":{"tf":1.0},"425":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"479":{"tf":1.0},"493":{"tf":1.0},"507":{"tf":1.0},"61":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":26,"docs":{"112":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"189":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"256":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"332":{"tf":1.0},"345":{"tf":1.0},"386":{"tf":1.0},"408":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"474":{"tf":1.0},"488":{"tf":1.0},"502":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"282":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"129":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"35":{"tf":1.0},"380":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"470":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"33":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"21":{"tf":1.0},"246":{"tf":1.0},"262":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"321":{"tf":1.0},"338":{"tf":1.0},"351":{"tf":1.0},"362":{"tf":1.0},"392":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"o":{"df":1,"docs":{"281":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}}}}}}},"df":1,"docs":{"472":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"117":{"tf":1.0},"137":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.0},"289":{"tf":1.0},"300":{"tf":1.0},"320":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"391":{"tf":1.0},"413":{"tf":1.0},"425":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"479":{"tf":1.0},"493":{"tf":1.0},"507":{"tf":1.0},"61":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}},"r":{"df":4,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"119":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"174":{"tf":1.0},"195":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"247":{"tf":1.0},"263":{"tf":1.0},"291":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"393":{"tf":1.0},"415":{"tf":1.0},"439":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}},"y":{"df":2,"docs":{"248":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"269":{"tf":1.0},"353":{"tf":1.0},"496":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"463":{"tf":1.0},"471":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"201":{"tf":1.0},"219":{"tf":1.0},"233":{"tf":1.0},"278":{"tf":1.0},"367":{"tf":1.0},"4":{"tf":1.0},"466":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"394":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"f":{"c":{"df":31,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"159":{"tf":1.0},"164":{"tf":1.0},"292":{"tf":1.0},"353":{"tf":1.0},"399":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}}}}}},"s":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"323":{"tf":1.0},"328":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"364":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":27,"docs":{"112":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"189":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"256":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"332":{"tf":1.0},"345":{"tf":1.0},"386":{"tf":1.0},"408":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"474":{"tf":1.0},"488":{"tf":1.0},"502":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"353":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"236":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"38":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"164":{"tf":1.0},"165":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"66":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":31,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"162":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.0},"326":{"tf":1.0},"342":{"tf":1.0},"356":{"tf":1.0},"368":{"tf":1.0},"383":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.0},"485":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"281":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"248":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"36":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":30,"docs":{"121":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.0},"176":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"217":{"tf":1.0},"231":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.0},"293":{"tf":1.0},"304":{"tf":1.0},"324":{"tf":1.0},"340":{"tf":1.0},"354":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.0},"400":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"441":{"tf":1.0},"454":{"tf":1.0},"464":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"159":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}}},"df":5,"docs":{"199":{"tf":1.0},"230":{"tf":1.0},"264":{"tf":1.0},"422":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"112":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"189":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"256":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"332":{"tf":1.0},"345":{"tf":1.0},"386":{"tf":1.0},"408":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"474":{"tf":1.0},"488":{"tf":1.0},"502":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"427":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"188":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"339":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"209":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"34":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"222":{"tf":1.0}}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"214":{"tf":1.0},"228":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":26,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"21":{"tf":1.0},"246":{"tf":1.0},"262":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"321":{"tf":1.0},"338":{"tf":1.0},"351":{"tf":1.0},"362":{"tf":1.0},"392":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"453":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"120":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"108":{"tf":1.0},"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"440":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":5,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"244":{"tf":1.0}}}}}}}}},"x":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"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 32391f23e..654dbb5d6 100644
--- a/searchindex.json
+++ b/searchindex.json
@@ -1 +1 @@
-{"doc_urls":["introduction.html#introduction","proposed/000x-lowering-deposits-assethub.html#rfc-0000-lowering-nft-deposits-on-polkadot-and-kusama-asset-hubs","proposed/000x-lowering-deposits-assethub.html#summary","proposed/000x-lowering-deposits-assethub.html#motivation","proposed/000x-lowering-deposits-assethub.html#requirements","proposed/000x-lowering-deposits-assethub.html#stakeholders","proposed/000x-lowering-deposits-assethub.html#explanation","proposed/000x-lowering-deposits-assethub.html#current-code-structure","proposed/000x-lowering-deposits-assethub.html#proposed-modification-using-the-deposit-function","proposed/000x-lowering-deposits-assethub.html#enhanced-approach-to-further-lower-barriers-for-entry","proposed/000x-lowering-deposits-assethub.html#discussion-of-other-proposals","proposed/000x-lowering-deposits-assethub.html#enhanced-weak-governance-origin-model","proposed/000x-lowering-deposits-assethub.html#function-based-pricing-model","proposed/000x-lowering-deposits-assethub.html#linking-deposit-to-usdx-value","proposed/000x-lowering-deposits-assethub.html#drawbacks","proposed/000x-lowering-deposits-assethub.html#testing-security-and-privacy","proposed/000x-lowering-deposits-assethub.html#security-concerns","proposed/000x-lowering-deposits-assethub.html#performance-ergonomics-and-compatibility","proposed/000x-lowering-deposits-assethub.html#performance","proposed/000x-lowering-deposits-assethub.html#ergonomics","proposed/000x-lowering-deposits-assethub.html#compatibility","proposed/000x-lowering-deposits-assethub.html#unresolved-questions","proposed/000x-lowering-deposits-assethub.html#future-directions-and-related-material","proposed/0026-sassafras-consensus.html#rfc-0026-sassafras-consensus-protocol","proposed/0026-sassafras-consensus.html#abstract","proposed/0026-sassafras-consensus.html#1-motivation","proposed/0026-sassafras-consensus.html#11-relevance-to-implementors","proposed/0026-sassafras-consensus.html#12-supporting-sassafras-for-polkadot","proposed/0026-sassafras-consensus.html#2-stakeholders","proposed/0026-sassafras-consensus.html#21-blockchain-developers","proposed/0026-sassafras-consensus.html#22-polkadot-ecosystem-contributors","proposed/0026-sassafras-consensus.html#3-notation-and-convention","proposed/0026-sassafras-consensus.html#31-data-structures-definitions-and-encoding","proposed/0026-sassafras-consensus.html#32-pseudo-code","proposed/0026-sassafras-consensus.html#33-incremental-introduction-of-types-and-functions","proposed/0026-sassafras-consensus.html#4-protocol-introduction","proposed/0026-sassafras-consensus.html#41-submission-of-candidate-tickets","proposed/0026-sassafras-consensus.html#42-validation-of-candidate-tickets","proposed/0026-sassafras-consensus.html#43-tickets-and-slots-binding","proposed/0026-sassafras-consensus.html#44-claim-of-ticket-ownership","proposed/0026-sassafras-consensus.html#45-validation-of-ticket-ownership","proposed/0026-sassafras-consensus.html#5-bandersnatch-vrfs-cryptographic-primitives","proposed/0026-sassafras-consensus.html#51-vrf-input","proposed/0026-sassafras-consensus.html#52-vrf-preoutput","proposed/0026-sassafras-consensus.html#53-vrf-signature-data","proposed/0026-sassafras-consensus.html#54-vrf-signature","proposed/0026-sassafras-consensus.html#6-sassafras-protocol","proposed/0026-sassafras-consensus.html#61-epochs-first-block","proposed/0026-sassafras-consensus.html#62-creation-and-submission-of-candidate-tickets","proposed/0026-sassafras-consensus.html#63-validation-of-candidate-tickets","proposed/0026-sassafras-consensus.html#64-ticket-slot-binding","proposed/0026-sassafras-consensus.html#65-slot-claim-production","proposed/0026-sassafras-consensus.html#66-slot-claim-verification","proposed/0026-sassafras-consensus.html#661-primary-method","proposed/0026-sassafras-consensus.html#67-randomness-accumulator","proposed/0026-sassafras-consensus.html#7-drawbacks","proposed/0026-sassafras-consensus.html#8-testing-security-and-privacy","proposed/0026-sassafras-consensus.html#9-performance-ergonomics-and-compatibility","proposed/0026-sassafras-consensus.html#91-performance","proposed/0026-sassafras-consensus.html#92-ergonomics","proposed/0026-sassafras-consensus.html#93-compatibility","proposed/0026-sassafras-consensus.html#10-prior-art-and-references","proposed/0026-sassafras-consensus.html#11-unresolved-questions","proposed/0026-sassafras-consensus.html#12-future-directions-and-related-material","proposed/0026-sassafras-consensus.html#121-interactions-with-on-chain-code","proposed/0026-sassafras-consensus.html#122-deployment-strategies","proposed/0026-sassafras-consensus.html#123-zk-snark-srs-initialization","proposed/0026-sassafras-consensus.html#124-anonymous-submission-of-tickets","proposed/0034-xcm-absolute-location-account-derivation.html#rfc-34-xcm-absolute-location-account-derivation","proposed/0034-xcm-absolute-location-account-derivation.html#summary","proposed/0034-xcm-absolute-location-account-derivation.html#motivation","proposed/0034-xcm-absolute-location-account-derivation.html#stakeholders","proposed/0034-xcm-absolute-location-account-derivation.html#explanation","proposed/0034-xcm-absolute-location-account-derivation.html#drawbacks","proposed/0034-xcm-absolute-location-account-derivation.html#testing-security-and-privacy","proposed/0034-xcm-absolute-location-account-derivation.html#performance-ergonomics-and-compatibility","proposed/0034-xcm-absolute-location-account-derivation.html#performance","proposed/0034-xcm-absolute-location-account-derivation.html#ergonomics","proposed/0034-xcm-absolute-location-account-derivation.html#compatibility","proposed/0034-xcm-absolute-location-account-derivation.html#prior-art-and-references","proposed/0034-xcm-absolute-location-account-derivation.html#unresolved-questions","proposed/0042-extrinsics-state-version.html#rfc-0042-add-system-version-that-replaces-stateversion-on-runtimeversion","proposed/0042-extrinsics-state-version.html#summary","proposed/0042-extrinsics-state-version.html#motivation","proposed/0042-extrinsics-state-version.html#stakeholders","proposed/0042-extrinsics-state-version.html#explanation","proposed/0042-extrinsics-state-version.html#drawbacks","proposed/0042-extrinsics-state-version.html#testing-security-and-privacy","proposed/0042-extrinsics-state-version.html#performance-ergonomics-and-compatibility","proposed/0042-extrinsics-state-version.html#performance","proposed/0042-extrinsics-state-version.html#ergonomics","proposed/0042-extrinsics-state-version.html#compatibility","proposed/0042-extrinsics-state-version.html#prior-art-and-references","proposed/0042-extrinsics-state-version.html#unresolved-questions","proposed/0042-extrinsics-state-version.html#future-directions-and-related-material","proposed/0046-metadata-for-offline-signers.html#rfc-0000-metadata-for-offline-signers","proposed/0046-metadata-for-offline-signers.html#summary","proposed/0046-metadata-for-offline-signers.html#motivation","proposed/0046-metadata-for-offline-signers.html#background","proposed/0046-metadata-for-offline-signers.html#solution-requirements","proposed/0046-metadata-for-offline-signers.html#stakeholders","proposed/0046-metadata-for-offline-signers.html#explanation","proposed/0046-metadata-for-offline-signers.html#definitions","proposed/0046-metadata-for-offline-signers.html#general-flow","proposed/0046-metadata-for-offline-signers.html#metadata-modularization","proposed/0046-metadata-for-offline-signers.html#merging-protocol","proposed/0046-metadata-for-offline-signers.html#complete-binary-merkle-tree-construction-protocol","proposed/0046-metadata-for-offline-signers.html#digest","proposed/0046-metadata-for-offline-signers.html#shortening","proposed/0046-metadata-for-offline-signers.html#transmission","proposed/0046-metadata-for-offline-signers.html#offline-verification","proposed/0046-metadata-for-offline-signers.html#chain-verification","proposed/0046-metadata-for-offline-signers.html#drawbacks","proposed/0046-metadata-for-offline-signers.html#increased-transaction-size","proposed/0046-metadata-for-offline-signers.html#transition-overhead","proposed/0046-metadata-for-offline-signers.html#testing-security-and-privacy","proposed/0046-metadata-for-offline-signers.html#performance-ergonomics-and-compatibility","proposed/0046-metadata-for-offline-signers.html#performance","proposed/0046-metadata-for-offline-signers.html#ergonomics","proposed/0046-metadata-for-offline-signers.html#compatibility","proposed/0046-metadata-for-offline-signers.html#prior-art-and-references","proposed/0046-metadata-for-offline-signers.html#unresolved-questions","proposed/0046-metadata-for-offline-signers.html#future-directions-and-related-material","proposed/0047-assignment-of-availability-chunks.html#rfc-0047-assignment-of-availability-chunks-to-validators","proposed/0047-assignment-of-availability-chunks.html#summary","proposed/0047-assignment-of-availability-chunks.html#motivation","proposed/0047-assignment-of-availability-chunks.html#stakeholders","proposed/0047-assignment-of-availability-chunks.html#explanation","proposed/0047-assignment-of-availability-chunks.html#systematic-erasure-codes","proposed/0047-assignment-of-availability-chunks.html#availability-recovery-at-present","proposed/0047-assignment-of-availability-chunks.html#availability-recovery-from-systematic-chunks","proposed/0047-assignment-of-availability-chunks.html#chunk-assignment-function","proposed/0047-assignment-of-availability-chunks.html#network-protocol","proposed/0047-assignment-of-availability-chunks.html#upgrade-path","proposed/0047-assignment-of-availability-chunks.html#drawbacks","proposed/0047-assignment-of-availability-chunks.html#testing-security-and-privacy","proposed/0047-assignment-of-availability-chunks.html#performance-ergonomics-and-compatibility","proposed/0047-assignment-of-availability-chunks.html#performance","proposed/0047-assignment-of-availability-chunks.html#ergonomics","proposed/0047-assignment-of-availability-chunks.html#compatibility","proposed/0047-assignment-of-availability-chunks.html#prior-art-and-references","proposed/0047-assignment-of-availability-chunks.html#unresolved-questions","proposed/0047-assignment-of-availability-chunks.html#future-directions-and-related-material","proposed/0047-assignment-of-availability-chunks.html#appendix-a","proposed/0061-allocator-inside-of-runtime.html#rfc-0061-support-allocator-inside-of-runtime","proposed/0061-allocator-inside-of-runtime.html#summary","proposed/0061-allocator-inside-of-runtime.html#motivation","proposed/0061-allocator-inside-of-runtime.html#stakeholders","proposed/0061-allocator-inside-of-runtime.html#explanation","proposed/0061-allocator-inside-of-runtime.html#runtime-side-spec","proposed/0061-allocator-inside-of-runtime.html#client-side-spec","proposed/0061-allocator-inside-of-runtime.html#drawbacks","proposed/0061-allocator-inside-of-runtime.html#testing-security-and-privacy","proposed/0061-allocator-inside-of-runtime.html#performance-ergonomics-and-compatibility","proposed/0061-allocator-inside-of-runtime.html#performance","proposed/0061-allocator-inside-of-runtime.html#ergonomics","proposed/0061-allocator-inside-of-runtime.html#compatibility","proposed/0061-allocator-inside-of-runtime.html#prior-art-and-references","proposed/0061-allocator-inside-of-runtime.html#unresolved-questions","proposed/0061-allocator-inside-of-runtime.html#future-directions-and-related-material","proposed/0066-add-smartcontracts-to-assethub.html#rfc-0066-add-evmink-contracts-pallets-to-asset-hub-for-polkadot","proposed/0066-add-smartcontracts-to-assethub.html#summary","proposed/0066-add-smartcontracts-to-assethub.html#motivation","proposed/0066-add-smartcontracts-to-assethub.html#definft-applications-need-smart-contracts-on-assethub","proposed/0066-add-smartcontracts-to-assethub.html#rollups-need-smart-contracts-on-assethub","proposed/0066-add-smartcontracts-to-assethub.html#ink-on-assethub-will-lead-to-coreplay-developers--on-assethub","proposed/0066-add-smartcontracts-to-assethub.html#stakeholders","proposed/0066-add-smartcontracts-to-assethub.html#explanation","proposed/0066-add-smartcontracts-to-assethub.html#limit-smart-contract-weight-allocation","proposed/0066-add-smartcontracts-to-assethub.html#model-assethub-assets-inside-evm-smart-contracts-based-on-astar","proposed/0066-add-smartcontracts-to-assethub.html#new-dot-revenue-sources","proposed/0066-add-smartcontracts-to-assethub.html#new-revenue-from-assethub-evm-contracts","proposed/0066-add-smartcontracts-to-assethub.html#new-revenue-for-inkcoreplay-contracts","proposed/0066-add-smartcontracts-to-assethub.html#drawbacks-and-tradeoffs","proposed/0066-add-smartcontracts-to-assethub.html#testing-security-and-privacy","proposed/0066-add-smartcontracts-to-assethub.html#performance-ergonomics-and-compatibility","proposed/0066-add-smartcontracts-to-assethub.html#performance","proposed/0066-add-smartcontracts-to-assethub.html#ergonomics","proposed/0066-add-smartcontracts-to-assethub.html#compatibility","proposed/0066-add-smartcontracts-to-assethub.html#unresolved-questions","proposed/0066-add-smartcontracts-to-assethub.html#future-directions-and-related-material","approved/0001-agile-coretime.html#rfc-1-agile-coretime","approved/0001-agile-coretime.html#summary","approved/0001-agile-coretime.html#motivation","approved/0001-agile-coretime.html#present-system","approved/0001-agile-coretime.html#problems","approved/0001-agile-coretime.html#requirements","approved/0001-agile-coretime.html#stakeholders","approved/0001-agile-coretime.html#explanation","approved/0001-agile-coretime.html#overview","approved/0001-agile-coretime.html#detail","approved/0001-agile-coretime.html#specific-functions-of-the-coretime-chain","approved/0001-agile-coretime.html#notes-on-the-instantaneous-coretime-market","approved/0001-agile-coretime.html#notes-on-economics","approved/0001-agile-coretime.html#notes-on-types","approved/0001-agile-coretime.html#rollout","approved/0001-agile-coretime.html#performance-ergonomics-and-compatibility","approved/0001-agile-coretime.html#testing-security-and-privacy","approved/0001-agile-coretime.html#future-directions-and-related-material","approved/0001-agile-coretime.html#drawbacks-alternatives-and-unknowns","approved/0001-agile-coretime.html#prior-art-and-references","approved/0005-coretime-interface.html#rfc-5-coretime-interface","approved/0005-coretime-interface.html#summary","approved/0005-coretime-interface.html#motivation","approved/0005-coretime-interface.html#requirements","approved/0005-coretime-interface.html#stakeholders","approved/0005-coretime-interface.html#explanation","approved/0005-coretime-interface.html#ump-message-types","approved/0005-coretime-interface.html#dmp-message-types","approved/0005-coretime-interface.html#realistic-limits-of-the-usage","approved/0005-coretime-interface.html#performance-ergonomics-and-compatibility","approved/0005-coretime-interface.html#testing-security-and-privacy","approved/0005-coretime-interface.html#future-directions-and-related-material","approved/0005-coretime-interface.html#drawbacks-alternatives-and-unknowns","approved/0005-coretime-interface.html#prior-art-and-references","approved/0007-system-collator-selection.html#rfc-0007-system-collator-selection","approved/0007-system-collator-selection.html#summary","approved/0007-system-collator-selection.html#motivation","approved/0007-system-collator-selection.html#requirements","approved/0007-system-collator-selection.html#stakeholders","approved/0007-system-collator-selection.html#explanation","approved/0007-system-collator-selection.html#set-size","approved/0007-system-collator-selection.html#drawbacks","approved/0007-system-collator-selection.html#testing-security-and-privacy","approved/0007-system-collator-selection.html#performance-ergonomics-and-compatibility","approved/0007-system-collator-selection.html#performance","approved/0007-system-collator-selection.html#ergonomics","approved/0007-system-collator-selection.html#compatibility","approved/0007-system-collator-selection.html#prior-art-and-references","approved/0007-system-collator-selection.html#written-discussions","approved/0007-system-collator-selection.html#prior-feedback-and-input-from","approved/0007-system-collator-selection.html#unresolved-questions","approved/0007-system-collator-selection.html#future-directions-and-related-material","approved/0008-parachain-bootnodes-dht.html#rfc-0008-store-parachain-bootnodes-in-relay-chain-dht","approved/0008-parachain-bootnodes-dht.html#summary","approved/0008-parachain-bootnodes-dht.html#motivation","approved/0008-parachain-bootnodes-dht.html#stakeholders","approved/0008-parachain-bootnodes-dht.html#explanation","approved/0008-parachain-bootnodes-dht.html#dht-provider-registration","approved/0008-parachain-bootnodes-dht.html#new-networking-protocol","approved/0008-parachain-bootnodes-dht.html#drawbacks","approved/0008-parachain-bootnodes-dht.html#testing-security-and-privacy","approved/0008-parachain-bootnodes-dht.html#performance-ergonomics-and-compatibility","approved/0008-parachain-bootnodes-dht.html#performance","approved/0008-parachain-bootnodes-dht.html#ergonomics","approved/0008-parachain-bootnodes-dht.html#compatibility","approved/0008-parachain-bootnodes-dht.html#prior-art-and-references","approved/0008-parachain-bootnodes-dht.html#unresolved-questions","approved/0008-parachain-bootnodes-dht.html#future-directions-and-related-material","approved/0012-process-for-adding-new-collectives.html#rfc-0012-process-for-adding-new-system-collectives","approved/0012-process-for-adding-new-collectives.html#summary","approved/0012-process-for-adding-new-collectives.html#motivation","approved/0012-process-for-adding-new-collectives.html#stakeholders","approved/0012-process-for-adding-new-collectives.html#explanation","approved/0012-process-for-adding-new-collectives.html#removing-collectives","approved/0012-process-for-adding-new-collectives.html#drawbacks","approved/0012-process-for-adding-new-collectives.html#testing-security-and-privacy","approved/0012-process-for-adding-new-collectives.html#performance-ergonomics-and-compatibility","approved/0012-process-for-adding-new-collectives.html#prior-art-and-references","approved/0012-process-for-adding-new-collectives.html#unresolved-questions","approved/0014-improve-locking-mechanism-for-parachains.html#rfc-0014-improve-locking-mechanism-for-parachains","approved/0014-improve-locking-mechanism-for-parachains.html#summary","approved/0014-improve-locking-mechanism-for-parachains.html#motivation","approved/0014-improve-locking-mechanism-for-parachains.html#requirements","approved/0014-improve-locking-mechanism-for-parachains.html#stakeholders","approved/0014-improve-locking-mechanism-for-parachains.html#explanation","approved/0014-improve-locking-mechanism-for-parachains.html#status-quo","approved/0014-improve-locking-mechanism-for-parachains.html#proposed-changes","approved/0014-improve-locking-mechanism-for-parachains.html#migration","approved/0014-improve-locking-mechanism-for-parachains.html#drawbacks","approved/0014-improve-locking-mechanism-for-parachains.html#testing-security-and-privacy","approved/0014-improve-locking-mechanism-for-parachains.html#performance","approved/0014-improve-locking-mechanism-for-parachains.html#ergonomics","approved/0014-improve-locking-mechanism-for-parachains.html#compatibility","approved/0014-improve-locking-mechanism-for-parachains.html#prior-art-and-references","approved/0014-improve-locking-mechanism-for-parachains.html#unresolved-questions","approved/0014-improve-locking-mechanism-for-parachains.html#future-directions-and-related-material","approved/0022-adopt-encointer-runtime.html#rfc-0022-adopt-encointer-runtime","approved/0022-adopt-encointer-runtime.html#summary","approved/0022-adopt-encointer-runtime.html#motivation","approved/0022-adopt-encointer-runtime.html#stakeholders","approved/0022-adopt-encointer-runtime.html#explanation","approved/0022-adopt-encointer-runtime.html#drawbacks","approved/0022-adopt-encointer-runtime.html#testing-security-and-privacy","approved/0022-adopt-encointer-runtime.html#performance-ergonomics-and-compatibility","approved/0022-adopt-encointer-runtime.html#prior-art-and-references","approved/0022-adopt-encointer-runtime.html#unresolved-questions","approved/0022-adopt-encointer-runtime.html#future-directions-and-related-material","approved/0032-minimal-relay.html#rfc-0032-minimal-relay","approved/0032-minimal-relay.html#summary","approved/0032-minimal-relay.html#motivation","approved/0032-minimal-relay.html#stakeholders","approved/0032-minimal-relay.html#explanation","approved/0032-minimal-relay.html#migrations","approved/0032-minimal-relay.html#interfaces","approved/0032-minimal-relay.html#functional-architecture","approved/0032-minimal-relay.html#resource-allocation","approved/0032-minimal-relay.html#deployment","approved/0032-minimal-relay.html#kusama","approved/0032-minimal-relay.html#drawbacks","approved/0032-minimal-relay.html#testing-security-and-privacy","approved/0032-minimal-relay.html#performance-ergonomics-and-compatibility","approved/0032-minimal-relay.html#performance","approved/0032-minimal-relay.html#ergonomics","approved/0032-minimal-relay.html#compatibility","approved/0032-minimal-relay.html#prior-art-and-references","approved/0032-minimal-relay.html#unresolved-questions","approved/0032-minimal-relay.html#future-directions-and-related-material","approved/0050-fellowship-salaries.html#rfc-0050-fellowship-salaries","approved/0050-fellowship-salaries.html#summary","approved/0050-fellowship-salaries.html#motivation","approved/0050-fellowship-salaries.html#stakeholders","approved/0050-fellowship-salaries.html#explanation","approved/0050-fellowship-salaries.html#salary-asset","approved/0050-fellowship-salaries.html#projections","approved/0050-fellowship-salaries.html#updates","approved/0050-fellowship-salaries.html#drawbacks","approved/0050-fellowship-salaries.html#testing-security-and-privacy","approved/0050-fellowship-salaries.html#performance-ergonomics-and-compatibility","approved/0050-fellowship-salaries.html#performance","approved/0050-fellowship-salaries.html#ergonomics","approved/0050-fellowship-salaries.html#compatibility","approved/0050-fellowship-salaries.html#prior-art-and-references","approved/0050-fellowship-salaries.html#unresolved-questions","approved/0056-one-transaction-per-notification.html#rfc-0056-enforce-only-one-transaction-per-notification","approved/0056-one-transaction-per-notification.html#summary","approved/0056-one-transaction-per-notification.html#motivation","approved/0056-one-transaction-per-notification.html#stakeholders","approved/0056-one-transaction-per-notification.html#explanation","approved/0056-one-transaction-per-notification.html#drawbacks","approved/0056-one-transaction-per-notification.html#testing-security-and-privacy","approved/0056-one-transaction-per-notification.html#performance-ergonomics-and-compatibility","approved/0056-one-transaction-per-notification.html#performance","approved/0056-one-transaction-per-notification.html#ergonomics","approved/0056-one-transaction-per-notification.html#compatibility","approved/0056-one-transaction-per-notification.html#prior-art-and-references","approved/0056-one-transaction-per-notification.html#unresolved-questions","approved/0056-one-transaction-per-notification.html#future-directions-and-related-material","stale/0004-remove-unnecessary-allocator-usage.html#rfc-0004-remove-the-host-side-runtime-memory-allocator","stale/0004-remove-unnecessary-allocator-usage.html#summary","stale/0004-remove-unnecessary-allocator-usage.html#motivation","stale/0004-remove-unnecessary-allocator-usage.html#stakeholders","stale/0004-remove-unnecessary-allocator-usage.html#explanation","stale/0004-remove-unnecessary-allocator-usage.html#new-host-functions","stale/0004-remove-unnecessary-allocator-usage.html#other-changes","stale/0004-remove-unnecessary-allocator-usage.html#drawbacks","stale/0004-remove-unnecessary-allocator-usage.html#prior-art","stale/0004-remove-unnecessary-allocator-usage.html#unresolved-questions","stale/0004-remove-unnecessary-allocator-usage.html#future-possibilities","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#rfc-0006-dynamic-pricing-for-bulk-coretime-sales","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#summary","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#motivation","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#requirements","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#stakeholders","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#explanation","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#overview","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#parameters","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#function","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#pseudo-code","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#properties-of-the-curve","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#example-configurations","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#drawbacks","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#prior-art-and-references","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#future-possibilities","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#references","stale/0009-improved-net-light-client-requests.html#rfc-0009-improved-light-client-requests-networking-protocol","stale/0009-improved-net-light-client-requests.html#summary","stale/0009-improved-net-light-client-requests.html#motivation","stale/0009-improved-net-light-client-requests.html#stakeholders","stale/0009-improved-net-light-client-requests.html#explanation","stale/0009-improved-net-light-client-requests.html#drawbacks","stale/0009-improved-net-light-client-requests.html#testing-security-and-privacy","stale/0009-improved-net-light-client-requests.html#performance-ergonomics-and-compatibility","stale/0009-improved-net-light-client-requests.html#performance","stale/0009-improved-net-light-client-requests.html#ergonomics","stale/0009-improved-net-light-client-requests.html#compatibility","stale/0009-improved-net-light-client-requests.html#prior-art-and-references","stale/0009-improved-net-light-client-requests.html#unresolved-questions","stale/0009-improved-net-light-client-requests.html#future-directions-and-related-material","stale/0010-burn-coretime-revenue.html#rfc-0010-burn-coretime-revenue","stale/0010-burn-coretime-revenue.html#summary","stale/0010-burn-coretime-revenue.html#motivation","stale/0010-burn-coretime-revenue.html#stakeholders","stale/0010-burn-coretime-revenue.html#explanation","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#rfc-0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#summary","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#motivation","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#stakeholders","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#explanation","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#coreinitialize_block","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#blockbuilderlast_inherent","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#combined","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#drawbacks","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#testing-security-and-privacy","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#performance-ergonomics-and-compatibility","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#performance","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#ergonomics","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#compatibility","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#prior-art-and-references","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#unresolved-questions","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#future-directions-and-related-material","stale/0015-market-design-revisit.html#rfc-0015-market-design-revisit","stale/0015-market-design-revisit.html#summary","stale/0015-market-design-revisit.html#motivation","stale/0015-market-design-revisit.html#stakeholders","stale/0015-market-design-revisit.html#explanation","stale/0015-market-design-revisit.html#bulk-markets","stale/0015-market-design-revisit.html#benefits-of-this-system","stale/0015-market-design-revisit.html#further-discussion-points","stale/0015-market-design-revisit.html#drawbacks","stale/0015-market-design-revisit.html#prior-art-and-references","stale/0015-market-design-revisit.html#unresolved-questions","stale/0020-treasurer-track-confirmation-period-duration-modification.html#rfc-0020-treasurer-track-confirmation-period-duration-modification","stale/0020-treasurer-track-confirmation-period-duration-modification.html#summary","stale/0020-treasurer-track-confirmation-period-duration-modification.html#motivation","stale/0020-treasurer-track-confirmation-period-duration-modification.html#stakeholders","stale/0020-treasurer-track-confirmation-period-duration-modification.html#explanation","stale/0020-treasurer-track-confirmation-period-duration-modification.html#drawbacks","stale/0020-treasurer-track-confirmation-period-duration-modification.html#testing-security-and-privacy","stale/0020-treasurer-track-confirmation-period-duration-modification.html#performance-ergonomics-and-compatibility","stale/0020-treasurer-track-confirmation-period-duration-modification.html#performance","stale/0020-treasurer-track-confirmation-period-duration-modification.html#ergonomics--compatibility","stale/0020-treasurer-track-confirmation-period-duration-modification.html#prior-art-and-references","stale/0020-treasurer-track-confirmation-period-duration-modification.html#unresolved-questions","stale/0020-treasurer-track-confirmation-period-duration-modification.html#future-directions-and-related-material","stale/0035-conviction-voting-delegation-modifications.html#rfc-0035-conviction-voting-delegation-modifications","stale/0035-conviction-voting-delegation-modifications.html#summary","stale/0035-conviction-voting-delegation-modifications.html#motivation","stale/0035-conviction-voting-delegation-modifications.html#stakeholders","stale/0035-conviction-voting-delegation-modifications.html#explanation","stale/0035-conviction-voting-delegation-modifications.html#drawbacks","stale/0035-conviction-voting-delegation-modifications.html#testing-security-and-privacy","stale/0035-conviction-voting-delegation-modifications.html#performance-ergonomics-and-compatibility","stale/0035-conviction-voting-delegation-modifications.html#performance","stale/0035-conviction-voting-delegation-modifications.html#ergonomics--compatibility","stale/0035-conviction-voting-delegation-modifications.html#prior-art-and-references","stale/0035-conviction-voting-delegation-modifications.html#unresolved-questions","stale/0035-conviction-voting-delegation-modifications.html#future-directions-and-related-material","stale/0043-storage-proof-size-hostfunction.html#rfc-0043-introduce-storage_proof_size-host-function-for-improved-parachain-block-utilization","stale/0043-storage-proof-size-hostfunction.html#summary","stale/0043-storage-proof-size-hostfunction.html#motivation","stale/0043-storage-proof-size-hostfunction.html#stakeholders","stale/0043-storage-proof-size-hostfunction.html#explanation","stale/0043-storage-proof-size-hostfunction.html#performance-ergonomics-and-compatibility","stale/0043-storage-proof-size-hostfunction.html#performance","stale/0043-storage-proof-size-hostfunction.html#ergonomics","stale/0043-storage-proof-size-hostfunction.html#compatibility","stale/0043-storage-proof-size-hostfunction.html#prior-art-and-references","stale/0044-rent-based-registration.html#rfc-0044-rent-based-registration-model","stale/0044-rent-based-registration.html#summary","stale/0044-rent-based-registration.html#motivation","stale/0044-rent-based-registration.html#requirements","stale/0044-rent-based-registration.html#stakeholders","stale/0044-rent-based-registration.html#explanation","stale/0044-rent-based-registration.html#registering-an-on-demand-parachain","stale/0044-rent-based-registration.html#on-demand-parachain-pruning","stale/0044-rent-based-registration.html#ensuring-rent-is-paid","stale/0044-rent-based-registration.html#on-demand-para-re-registration","stale/0044-rent-based-registration.html#drawbacks","stale/0044-rent-based-registration.html#testing-security-and-privacy","stale/0044-rent-based-registration.html#performance-ergonomics-and-compatibility","stale/0044-rent-based-registration.html#performance","stale/0044-rent-based-registration.html#ergonomics","stale/0044-rent-based-registration.html#compatibility","stale/0044-rent-based-registration.html#prior-art-and-references","stale/0044-rent-based-registration.html#unresolved-questions","stale/0044-rent-based-registration.html#future-directions-and-related-material","stale/0048-session-keys-runtime-api.html#rfc-0048-generate-ownership-proof-for-sessionkeys","stale/0048-session-keys-runtime-api.html#summary","stale/0048-session-keys-runtime-api.html#motivation","stale/0048-session-keys-runtime-api.html#stakeholders","stale/0048-session-keys-runtime-api.html#explanation","stale/0048-session-keys-runtime-api.html#drawbacks","stale/0048-session-keys-runtime-api.html#testing-security-and-privacy","stale/0048-session-keys-runtime-api.html#performance-ergonomics-and-compatibility","stale/0048-session-keys-runtime-api.html#performance","stale/0048-session-keys-runtime-api.html#ergonomics","stale/0048-session-keys-runtime-api.html#compatibility","stale/0048-session-keys-runtime-api.html#prior-art-and-references","stale/0048-session-keys-runtime-api.html#unresolved-questions","stale/0048-session-keys-runtime-api.html#future-directions-and-related-material","stale/0054-remove-heap-pages.html#rfc-0054-remove-the-concept-of-heap-pages-from-the-client","stale/0054-remove-heap-pages.html#summary","stale/0054-remove-heap-pages.html#motivation","stale/0054-remove-heap-pages.html#stakeholders","stale/0054-remove-heap-pages.html#explanation","stale/0054-remove-heap-pages.html#drawbacks","stale/0054-remove-heap-pages.html#testing-security-and-privacy","stale/0054-remove-heap-pages.html#performance-ergonomics-and-compatibility","stale/0054-remove-heap-pages.html#performance","stale/0054-remove-heap-pages.html#ergonomics","stale/0054-remove-heap-pages.html#compatibility","stale/0054-remove-heap-pages.html#prior-art-and-references","stale/0054-remove-heap-pages.html#unresolved-questions","stale/0054-remove-heap-pages.html#future-directions-and-related-material","stale/0059-nodes-capabilities-discovery.html#rfc-0059-add-a-discovery-mechanism-for-nodes-based-on-their-capabilities","stale/0059-nodes-capabilities-discovery.html#summary","stale/0059-nodes-capabilities-discovery.html#motivation","stale/0059-nodes-capabilities-discovery.html#stakeholders","stale/0059-nodes-capabilities-discovery.html#explanation","stale/0059-nodes-capabilities-discovery.html#capabilities","stale/0059-nodes-capabilities-discovery.html#dht-provider-registration","stale/0059-nodes-capabilities-discovery.html#secondary-dhts","stale/0059-nodes-capabilities-discovery.html#head-of-the-chain-providers","stale/0059-nodes-capabilities-discovery.html#drawbacks","stale/0059-nodes-capabilities-discovery.html#testing-security-and-privacy","stale/0059-nodes-capabilities-discovery.html#performance-ergonomics-and-compatibility","stale/0059-nodes-capabilities-discovery.html#performance","stale/0059-nodes-capabilities-discovery.html#ergonomics","stale/0059-nodes-capabilities-discovery.html#compatibility","stale/0059-nodes-capabilities-discovery.html#prior-art-and-references","stale/0059-nodes-capabilities-discovery.html#unresolved-questions","stale/0059-nodes-capabilities-discovery.html#future-directions-and-related-material"],"index":{"documentStore":{"docInfo":{"0":{"body":16,"breadcrumbs":2,"title":1},"1":{"body":92,"breadcrumbs":18,"title":9},"10":{"body":12,"breadcrumbs":11,"title":2},"100":{"body":53,"breadcrumbs":6,"title":1},"101":{"body":19,"breadcrumbs":6,"title":1},"102":{"body":232,"breadcrumbs":6,"title":1},"103":{"body":32,"breadcrumbs":7,"title":2},"104":{"body":131,"breadcrumbs":7,"title":2},"105":{"body":9,"breadcrumbs":7,"title":2},"106":{"body":82,"breadcrumbs":11,"title":6},"107":{"body":42,"breadcrumbs":6,"title":1},"108":{"body":41,"breadcrumbs":6,"title":1},"109":{"body":44,"breadcrumbs":6,"title":1},"11":{"body":79,"breadcrumbs":14,"title":5},"110":{"body":36,"breadcrumbs":7,"title":2},"111":{"body":80,"breadcrumbs":7,"title":2},"112":{"body":0,"breadcrumbs":6,"title":1},"113":{"body":15,"breadcrumbs":8,"title":3},"114":{"body":31,"breadcrumbs":7,"title":2},"115":{"body":40,"breadcrumbs":8,"title":3},"116":{"body":0,"breadcrumbs":8,"title":3},"117":{"body":23,"breadcrumbs":6,"title":1},"118":{"body":10,"breadcrumbs":6,"title":1},"119":{"body":18,"breadcrumbs":6,"title":1},"12":{"body":60,"breadcrumbs":13,"title":4},"120":{"body":14,"breadcrumbs":8,"title":3},"121":{"body":12,"breadcrumbs":7,"title":2},"122":{"body":42,"breadcrumbs":9,"title":4},"123":{"body":67,"breadcrumbs":12,"title":6},"124":{"body":20,"breadcrumbs":7,"title":1},"125":{"body":66,"breadcrumbs":7,"title":1},"126":{"body":5,"breadcrumbs":7,"title":1},"127":{"body":0,"breadcrumbs":7,"title":1},"128":{"body":77,"breadcrumbs":9,"title":3},"129":{"body":94,"breadcrumbs":9,"title":3},"13":{"body":89,"breadcrumbs":13,"title":4},"130":{"body":82,"breadcrumbs":10,"title":4},"131":{"body":99,"breadcrumbs":9,"title":3},"132":{"body":261,"breadcrumbs":8,"title":2},"133":{"body":172,"breadcrumbs":8,"title":2},"134":{"body":59,"breadcrumbs":7,"title":1},"135":{"body":11,"breadcrumbs":9,"title":3},"136":{"body":0,"breadcrumbs":9,"title":3},"137":{"body":45,"breadcrumbs":7,"title":1},"138":{"body":1,"breadcrumbs":7,"title":1},"139":{"body":19,"breadcrumbs":7,"title":1},"14":{"body":161,"breadcrumbs":10,"title":1},"140":{"body":6,"breadcrumbs":9,"title":3},"141":{"body":1,"breadcrumbs":8,"title":2},"142":{"body":13,"breadcrumbs":10,"title":4},"143":{"body":217,"breadcrumbs":7,"title":1},"144":{"body":56,"breadcrumbs":12,"title":6},"145":{"body":33,"breadcrumbs":7,"title":1},"146":{"body":122,"breadcrumbs":7,"title":1},"147":{"body":4,"breadcrumbs":7,"title":1},"148":{"body":0,"breadcrumbs":7,"title":1},"149":{"body":150,"breadcrumbs":9,"title":3},"15":{"body":0,"breadcrumbs":12,"title":3},"150":{"body":100,"breadcrumbs":9,"title":3},"151":{"body":34,"breadcrumbs":7,"title":1},"152":{"body":33,"breadcrumbs":9,"title":3},"153":{"body":0,"breadcrumbs":9,"title":3},"154":{"body":19,"breadcrumbs":7,"title":1},"155":{"body":16,"breadcrumbs":7,"title":1},"156":{"body":47,"breadcrumbs":7,"title":1},"157":{"body":8,"breadcrumbs":9,"title":3},"158":{"body":2,"breadcrumbs":8,"title":2},"159":{"body":22,"breadcrumbs":10,"title":4},"16":{"body":9,"breadcrumbs":11,"title":2},"160":{"body":108,"breadcrumbs":18,"title":9},"161":{"body":53,"breadcrumbs":10,"title":1},"162":{"body":89,"breadcrumbs":10,"title":1},"163":{"body":122,"breadcrumbs":15,"title":6},"164":{"body":273,"breadcrumbs":14,"title":5},"165":{"body":107,"breadcrumbs":15,"title":6},"166":{"body":83,"breadcrumbs":10,"title":1},"167":{"body":0,"breadcrumbs":10,"title":1},"168":{"body":170,"breadcrumbs":14,"title":5},"169":{"body":91,"breadcrumbs":18,"title":9},"17":{"body":0,"breadcrumbs":12,"title":3},"170":{"body":23,"breadcrumbs":13,"title":4},"171":{"body":24,"breadcrumbs":14,"title":5},"172":{"body":43,"breadcrumbs":13,"title":4},"173":{"body":76,"breadcrumbs":11,"title":2},"174":{"body":25,"breadcrumbs":12,"title":3},"175":{"body":0,"breadcrumbs":12,"title":3},"176":{"body":20,"breadcrumbs":10,"title":1},"177":{"body":40,"breadcrumbs":10,"title":1},"178":{"body":34,"breadcrumbs":10,"title":1},"179":{"body":22,"breadcrumbs":11,"title":2},"18":{"body":35,"breadcrumbs":10,"title":1},"180":{"body":17,"breadcrumbs":13,"title":4},"181":{"body":65,"breadcrumbs":8,"title":4},"182":{"body":50,"breadcrumbs":5,"title":1},"183":{"body":0,"breadcrumbs":5,"title":1},"184":{"body":124,"breadcrumbs":6,"title":2},"185":{"body":153,"breadcrumbs":5,"title":1},"186":{"body":90,"breadcrumbs":5,"title":1},"187":{"body":54,"breadcrumbs":5,"title":1},"188":{"body":0,"breadcrumbs":5,"title":1},"189":{"body":438,"breadcrumbs":5,"title":1},"19":{"body":20,"breadcrumbs":10,"title":1},"190":{"body":562,"breadcrumbs":5,"title":1},"191":{"body":630,"breadcrumbs":8,"title":4},"192":{"body":103,"breadcrumbs":8,"title":4},"193":{"body":410,"breadcrumbs":6,"title":2},"194":{"body":905,"breadcrumbs":6,"title":2},"195":{"body":52,"breadcrumbs":5,"title":1},"196":{"body":33,"breadcrumbs":7,"title":3},"197":{"body":40,"breadcrumbs":7,"title":3},"198":{"body":35,"breadcrumbs":8,"title":4},"199":{"body":49,"breadcrumbs":7,"title":3},"2":{"body":38,"breadcrumbs":10,"title":1},"20":{"body":7,"breadcrumbs":10,"title":1},"200":{"body":34,"breadcrumbs":7,"title":3},"201":{"body":55,"breadcrumbs":8,"title":4},"202":{"body":43,"breadcrumbs":5,"title":1},"203":{"body":37,"breadcrumbs":5,"title":1},"204":{"body":73,"breadcrumbs":5,"title":1},"205":{"body":21,"breadcrumbs":5,"title":1},"206":{"body":39,"breadcrumbs":5,"title":1},"207":{"body":235,"breadcrumbs":7,"title":3},"208":{"body":86,"breadcrumbs":7,"title":3},"209":{"body":32,"breadcrumbs":7,"title":3},"21":{"body":25,"breadcrumbs":11,"title":2},"210":{"body":2,"breadcrumbs":7,"title":3},"211":{"body":11,"breadcrumbs":7,"title":3},"212":{"body":20,"breadcrumbs":8,"title":4},"213":{"body":2,"breadcrumbs":7,"title":3},"214":{"body":1,"breadcrumbs":7,"title":3},"215":{"body":53,"breadcrumbs":10,"title":5},"216":{"body":40,"breadcrumbs":6,"title":1},"217":{"body":203,"breadcrumbs":6,"title":1},"218":{"body":34,"breadcrumbs":6,"title":1},"219":{"body":8,"breadcrumbs":6,"title":1},"22":{"body":35,"breadcrumbs":13,"title":4},"220":{"body":176,"breadcrumbs":6,"title":1},"221":{"body":18,"breadcrumbs":7,"title":2},"222":{"body":11,"breadcrumbs":6,"title":1},"223":{"body":25,"breadcrumbs":8,"title":3},"224":{"body":14,"breadcrumbs":8,"title":3},"225":{"body":21,"breadcrumbs":6,"title":1},"226":{"body":16,"breadcrumbs":6,"title":1},"227":{"body":8,"breadcrumbs":6,"title":1},"228":{"body":0,"breadcrumbs":8,"title":3},"229":{"body":16,"breadcrumbs":7,"title":2},"23":{"body":176,"breadcrumbs":10,"title":5},"230":{"body":21,"breadcrumbs":8,"title":3},"231":{"body":2,"breadcrumbs":7,"title":2},"232":{"body":13,"breadcrumbs":9,"title":4},"233":{"body":57,"breadcrumbs":16,"title":8},"234":{"body":29,"breadcrumbs":9,"title":1},"235":{"body":185,"breadcrumbs":9,"title":1},"236":{"body":15,"breadcrumbs":9,"title":1},"237":{"body":60,"breadcrumbs":9,"title":1},"238":{"body":110,"breadcrumbs":11,"title":3},"239":{"body":153,"breadcrumbs":11,"title":3},"24":{"body":38,"breadcrumbs":6,"title":1},"240":{"body":96,"breadcrumbs":9,"title":1},"241":{"body":144,"breadcrumbs":11,"title":3},"242":{"body":0,"breadcrumbs":11,"title":3},"243":{"body":110,"breadcrumbs":9,"title":1},"244":{"body":1,"breadcrumbs":9,"title":1},"245":{"body":1,"breadcrumbs":9,"title":1},"246":{"body":1,"breadcrumbs":11,"title":3},"247":{"body":21,"breadcrumbs":10,"title":2},"248":{"body":11,"breadcrumbs":12,"title":4},"249":{"body":44,"breadcrumbs":14,"title":7},"25":{"body":34,"breadcrumbs":7,"title":2},"250":{"body":43,"breadcrumbs":8,"title":1},"251":{"body":81,"breadcrumbs":8,"title":1},"252":{"body":10,"breadcrumbs":8,"title":1},"253":{"body":101,"breadcrumbs":8,"title":1},"254":{"body":70,"breadcrumbs":9,"title":2},"255":{"body":16,"breadcrumbs":8,"title":1},"256":{"body":1,"breadcrumbs":10,"title":3},"257":{"body":39,"breadcrumbs":10,"title":3},"258":{"body":7,"breadcrumbs":10,"title":3},"259":{"body":2,"breadcrumbs":9,"title":2},"26":{"body":21,"breadcrumbs":8,"title":3},"260":{"body":48,"breadcrumbs":12,"title":6},"261":{"body":35,"breadcrumbs":7,"title":1},"262":{"body":152,"breadcrumbs":7,"title":1},"263":{"body":32,"breadcrumbs":7,"title":1},"264":{"body":4,"breadcrumbs":7,"title":1},"265":{"body":0,"breadcrumbs":7,"title":1},"266":{"body":92,"breadcrumbs":8,"title":2},"267":{"body":52,"breadcrumbs":8,"title":2},"268":{"body":32,"breadcrumbs":7,"title":1},"269":{"body":111,"breadcrumbs":7,"title":1},"27":{"body":24,"breadcrumbs":9,"title":4},"270":{"body":19,"breadcrumbs":9,"title":3},"271":{"body":4,"breadcrumbs":7,"title":1},"272":{"body":8,"breadcrumbs":7,"title":1},"273":{"body":5,"breadcrumbs":7,"title":1},"274":{"body":26,"breadcrumbs":9,"title":3},"275":{"body":2,"breadcrumbs":8,"title":2},"276":{"body":34,"breadcrumbs":10,"title":4},"277":{"body":48,"breadcrumbs":10,"title":5},"278":{"body":20,"breadcrumbs":6,"title":1},"279":{"body":30,"breadcrumbs":6,"title":1},"28":{"body":0,"breadcrumbs":7,"title":2},"280":{"body":52,"breadcrumbs":6,"title":1},"281":{"body":73,"breadcrumbs":6,"title":1},"282":{"body":38,"breadcrumbs":6,"title":1},"283":{"body":7,"breadcrumbs":8,"title":3},"284":{"body":1,"breadcrumbs":8,"title":3},"285":{"body":4,"breadcrumbs":8,"title":3},"286":{"body":2,"breadcrumbs":7,"title":2},"287":{"body":4,"breadcrumbs":9,"title":4},"288":{"body":54,"breadcrumbs":8,"title":4},"289":{"body":22,"breadcrumbs":5,"title":1},"29":{"body":10,"breadcrumbs":8,"title":3},"290":{"body":85,"breadcrumbs":5,"title":1},"291":{"body":16,"breadcrumbs":5,"title":1},"292":{"body":42,"breadcrumbs":5,"title":1},"293":{"body":62,"breadcrumbs":5,"title":1},"294":{"body":62,"breadcrumbs":5,"title":1},"295":{"body":127,"breadcrumbs":6,"title":2},"296":{"body":101,"breadcrumbs":6,"title":2},"297":{"body":324,"breadcrumbs":5,"title":1},"298":{"body":117,"breadcrumbs":5,"title":1},"299":{"body":12,"breadcrumbs":5,"title":1},"3":{"body":72,"breadcrumbs":10,"title":1},"30":{"body":18,"breadcrumbs":9,"title":4},"300":{"body":13,"breadcrumbs":7,"title":3},"301":{"body":6,"breadcrumbs":7,"title":3},"302":{"body":12,"breadcrumbs":5,"title":1},"303":{"body":35,"breadcrumbs":5,"title":1},"304":{"body":17,"breadcrumbs":5,"title":1},"305":{"body":7,"breadcrumbs":7,"title":3},"306":{"body":14,"breadcrumbs":6,"title":2},"307":{"body":23,"breadcrumbs":8,"title":4},"308":{"body":48,"breadcrumbs":8,"title":4},"309":{"body":16,"breadcrumbs":5,"title":1},"31":{"body":10,"breadcrumbs":8,"title":3},"310":{"body":70,"breadcrumbs":5,"title":1},"311":{"body":4,"breadcrumbs":5,"title":1},"312":{"body":78,"breadcrumbs":5,"title":1},"313":{"body":92,"breadcrumbs":6,"title":2},"314":{"body":67,"breadcrumbs":5,"title":1},"315":{"body":12,"breadcrumbs":5,"title":1},"316":{"body":13,"breadcrumbs":5,"title":1},"317":{"body":1,"breadcrumbs":7,"title":3},"318":{"body":0,"breadcrumbs":7,"title":3},"319":{"body":1,"breadcrumbs":5,"title":1},"32":{"body":46,"breadcrumbs":10,"title":5},"320":{"body":1,"breadcrumbs":5,"title":1},"321":{"body":1,"breadcrumbs":5,"title":1},"322":{"body":12,"breadcrumbs":7,"title":3},"323":{"body":2,"breadcrumbs":6,"title":2},"324":{"body":51,"breadcrumbs":14,"title":7},"325":{"body":44,"breadcrumbs":8,"title":1},"326":{"body":100,"breadcrumbs":8,"title":1},"327":{"body":3,"breadcrumbs":8,"title":1},"328":{"body":121,"breadcrumbs":8,"title":1},"329":{"body":33,"breadcrumbs":8,"title":1},"33":{"body":109,"breadcrumbs":8,"title":3},"330":{"body":1,"breadcrumbs":10,"title":3},"331":{"body":0,"breadcrumbs":10,"title":3},"332":{"body":1,"breadcrumbs":8,"title":1},"333":{"body":1,"breadcrumbs":8,"title":1},"334":{"body":19,"breadcrumbs":8,"title":1},"335":{"body":1,"breadcrumbs":10,"title":3},"336":{"body":1,"breadcrumbs":9,"title":2},"337":{"body":4,"breadcrumbs":11,"title":4},"338":{"body":45,"breadcrumbs":16,"title":8},"339":{"body":10,"breadcrumbs":9,"title":1},"34":{"body":22,"breadcrumbs":10,"title":5},"340":{"body":156,"breadcrumbs":9,"title":1},"341":{"body":4,"breadcrumbs":9,"title":1},"342":{"body":0,"breadcrumbs":9,"title":1},"343":{"body":1723,"breadcrumbs":11,"title":3},"344":{"body":52,"breadcrumbs":9,"title":1},"345":{"body":12,"breadcrumbs":9,"title":1},"346":{"body":10,"breadcrumbs":10,"title":2},"347":{"body":71,"breadcrumbs":10,"title":2},"348":{"body":26,"breadcrumbs":10,"title":2},"349":{"body":54,"breadcrumbs":14,"title":7},"35":{"body":35,"breadcrumbs":8,"title":3},"350":{"body":68,"breadcrumbs":8,"title":1},"351":{"body":87,"breadcrumbs":8,"title":1},"352":{"body":59,"breadcrumbs":8,"title":1},"353":{"body":18,"breadcrumbs":8,"title":1},"354":{"body":0,"breadcrumbs":8,"title":1},"355":{"body":64,"breadcrumbs":8,"title":1},"356":{"body":66,"breadcrumbs":8,"title":1},"357":{"body":142,"breadcrumbs":8,"title":1},"358":{"body":19,"breadcrumbs":9,"title":2},"359":{"body":104,"breadcrumbs":9,"title":2},"36":{"body":16,"breadcrumbs":9,"title":4},"360":{"body":151,"breadcrumbs":9,"title":2},"361":{"body":2,"breadcrumbs":8,"title":1},"362":{"body":28,"breadcrumbs":10,"title":3},"363":{"body":7,"breadcrumbs":9,"title":2},"364":{"body":10,"breadcrumbs":8,"title":1},"365":{"body":52,"breadcrumbs":16,"title":8},"366":{"body":16,"breadcrumbs":9,"title":1},"367":{"body":224,"breadcrumbs":9,"title":1},"368":{"body":5,"breadcrumbs":9,"title":1},"369":{"body":482,"breadcrumbs":9,"title":1},"37":{"body":13,"breadcrumbs":9,"title":4},"370":{"body":87,"breadcrumbs":9,"title":1},"371":{"body":137,"breadcrumbs":11,"title":3},"372":{"body":0,"breadcrumbs":11,"title":3},"373":{"body":23,"breadcrumbs":9,"title":1},"374":{"body":1,"breadcrumbs":9,"title":1},"375":{"body":11,"breadcrumbs":9,"title":1},"376":{"body":6,"breadcrumbs":11,"title":3},"377":{"body":1,"breadcrumbs":10,"title":2},"378":{"body":17,"breadcrumbs":12,"title":4},"379":{"body":23,"breadcrumbs":10,"title":5},"38":{"body":14,"breadcrumbs":9,"title":4},"380":{"body":36,"breadcrumbs":6,"title":1},"381":{"body":21,"breadcrumbs":6,"title":1},"382":{"body":4,"breadcrumbs":6,"title":1},"383":{"body":290,"breadcrumbs":6,"title":1},"384":{"body":55,"breadcrumbs":16,"title":8},"385":{"body":24,"breadcrumbs":9,"title":1},"386":{"body":67,"breadcrumbs":9,"title":1},"387":{"body":27,"breadcrumbs":9,"title":1},"388":{"body":0,"breadcrumbs":9,"title":1},"389":{"body":27,"breadcrumbs":9,"title":1},"39":{"body":16,"breadcrumbs":9,"title":4},"390":{"body":15,"breadcrumbs":9,"title":1},"391":{"body":106,"breadcrumbs":9,"title":1},"392":{"body":13,"breadcrumbs":9,"title":1},"393":{"body":29,"breadcrumbs":11,"title":3},"394":{"body":0,"breadcrumbs":11,"title":3},"395":{"body":17,"breadcrumbs":9,"title":1},"396":{"body":17,"breadcrumbs":9,"title":1},"397":{"body":16,"breadcrumbs":9,"title":1},"398":{"body":24,"breadcrumbs":11,"title":3},"399":{"body":30,"breadcrumbs":10,"title":2},"4":{"body":8,"breadcrumbs":10,"title":1},"40":{"body":7,"breadcrumbs":9,"title":4},"400":{"body":37,"breadcrumbs":12,"title":4},"401":{"body":48,"breadcrumbs":10,"title":5},"402":{"body":65,"breadcrumbs":6,"title":1},"403":{"body":190,"breadcrumbs":6,"title":1},"404":{"body":25,"breadcrumbs":6,"title":1},"405":{"body":0,"breadcrumbs":6,"title":1},"406":{"body":367,"breadcrumbs":7,"title":2},"407":{"body":218,"breadcrumbs":7,"title":2},"408":{"body":80,"breadcrumbs":8,"title":3},"409":{"body":46,"breadcrumbs":6,"title":1},"41":{"body":48,"breadcrumbs":10,"title":5},"410":{"body":23,"breadcrumbs":8,"title":3},"411":{"body":4,"breadcrumbs":7,"title":2},"412":{"body":48,"breadcrumbs":16,"title":8},"413":{"body":12,"breadcrumbs":9,"title":1},"414":{"body":102,"breadcrumbs":9,"title":1},"415":{"body":44,"breadcrumbs":9,"title":1},"416":{"body":58,"breadcrumbs":9,"title":1},"417":{"body":19,"breadcrumbs":9,"title":1},"418":{"body":40,"breadcrumbs":11,"title":3},"419":{"body":0,"breadcrumbs":11,"title":3},"42":{"body":91,"breadcrumbs":8,"title":3},"420":{"body":15,"breadcrumbs":9,"title":1},"421":{"body":49,"breadcrumbs":10,"title":2},"422":{"body":1,"breadcrumbs":11,"title":3},"423":{"body":62,"breadcrumbs":10,"title":2},"424":{"body":18,"breadcrumbs":12,"title":4},"425":{"body":40,"breadcrumbs":12,"title":6},"426":{"body":61,"breadcrumbs":7,"title":1},"427":{"body":101,"breadcrumbs":7,"title":1},"428":{"body":15,"breadcrumbs":7,"title":1},"429":{"body":187,"breadcrumbs":7,"title":1},"43":{"body":104,"breadcrumbs":8,"title":3},"430":{"body":17,"breadcrumbs":7,"title":1},"431":{"body":12,"breadcrumbs":9,"title":3},"432":{"body":0,"breadcrumbs":9,"title":3},"433":{"body":11,"breadcrumbs":7,"title":1},"434":{"body":40,"breadcrumbs":8,"title":2},"435":{"body":1,"breadcrumbs":9,"title":3},"436":{"body":1,"breadcrumbs":8,"title":2},"437":{"body":39,"breadcrumbs":10,"title":4},"438":{"body":42,"breadcrumbs":20,"title":10},"439":{"body":28,"breadcrumbs":11,"title":1},"44":{"body":58,"breadcrumbs":9,"title":4},"440":{"body":121,"breadcrumbs":11,"title":1},"441":{"body":15,"breadcrumbs":11,"title":1},"442":{"body":70,"breadcrumbs":11,"title":1},"443":{"body":0,"breadcrumbs":13,"title":3},"444":{"body":26,"breadcrumbs":11,"title":1},"445":{"body":26,"breadcrumbs":11,"title":1},"446":{"body":7,"breadcrumbs":11,"title":1},"447":{"body":19,"breadcrumbs":13,"title":3},"448":{"body":61,"breadcrumbs":12,"title":6},"449":{"body":34,"breadcrumbs":7,"title":1},"45":{"body":199,"breadcrumbs":8,"title":3},"450":{"body":92,"breadcrumbs":7,"title":1},"451":{"body":67,"breadcrumbs":7,"title":1},"452":{"body":4,"breadcrumbs":7,"title":1},"453":{"body":77,"breadcrumbs":7,"title":1},"454":{"body":237,"breadcrumbs":9,"title":3},"455":{"body":124,"breadcrumbs":9,"title":3},"456":{"body":41,"breadcrumbs":9,"title":3},"457":{"body":106,"breadcrumbs":10,"title":4},"458":{"body":51,"breadcrumbs":7,"title":1},"459":{"body":27,"breadcrumbs":9,"title":3},"46":{"body":0,"breadcrumbs":8,"title":3},"460":{"body":0,"breadcrumbs":9,"title":3},"461":{"body":4,"breadcrumbs":7,"title":1},"462":{"body":13,"breadcrumbs":7,"title":1},"463":{"body":3,"breadcrumbs":7,"title":1},"464":{"body":5,"breadcrumbs":9,"title":3},"465":{"body":2,"breadcrumbs":8,"title":2},"466":{"body":37,"breadcrumbs":10,"title":4},"467":{"body":50,"breadcrumbs":12,"title":6},"468":{"body":46,"breadcrumbs":7,"title":1},"469":{"body":24,"breadcrumbs":7,"title":1},"47":{"body":313,"breadcrumbs":9,"title":4},"470":{"body":8,"breadcrumbs":7,"title":1},"471":{"body":134,"breadcrumbs":7,"title":1},"472":{"body":21,"breadcrumbs":7,"title":1},"473":{"body":19,"breadcrumbs":9,"title":3},"474":{"body":0,"breadcrumbs":9,"title":3},"475":{"body":8,"breadcrumbs":7,"title":1},"476":{"body":11,"breadcrumbs":7,"title":1},"477":{"body":19,"breadcrumbs":7,"title":1},"478":{"body":1,"breadcrumbs":9,"title":3},"479":{"body":1,"breadcrumbs":8,"title":2},"48":{"body":491,"breadcrumbs":10,"title":5},"480":{"body":3,"breadcrumbs":10,"title":4},"481":{"body":49,"breadcrumbs":14,"title":7},"482":{"body":14,"breadcrumbs":8,"title":1},"483":{"body":113,"breadcrumbs":8,"title":1},"484":{"body":6,"breadcrumbs":8,"title":1},"485":{"body":180,"breadcrumbs":8,"title":1},"486":{"body":91,"breadcrumbs":8,"title":1},"487":{"body":25,"breadcrumbs":10,"title":3},"488":{"body":0,"breadcrumbs":10,"title":3},"489":{"body":44,"breadcrumbs":8,"title":1},"49":{"body":41,"breadcrumbs":9,"title":4},"490":{"body":13,"breadcrumbs":8,"title":1},"491":{"body":31,"breadcrumbs":8,"title":1},"492":{"body":1,"breadcrumbs":10,"title":3},"493":{"body":1,"breadcrumbs":9,"title":2},"494":{"body":12,"breadcrumbs":11,"title":4},"495":{"body":60,"breadcrumbs":16,"title":8},"496":{"body":32,"breadcrumbs":9,"title":1},"497":{"body":98,"breadcrumbs":9,"title":1},"498":{"body":9,"breadcrumbs":9,"title":1},"499":{"body":23,"breadcrumbs":9,"title":1},"5":{"body":69,"breadcrumbs":10,"title":1},"50":{"body":146,"breadcrumbs":9,"title":4},"500":{"body":225,"breadcrumbs":9,"title":1},"501":{"body":125,"breadcrumbs":11,"title":3},"502":{"body":44,"breadcrumbs":10,"title":2},"503":{"body":65,"breadcrumbs":11,"title":3},"504":{"body":2,"breadcrumbs":9,"title":1},"505":{"body":94,"breadcrumbs":11,"title":3},"506":{"body":0,"breadcrumbs":11,"title":3},"507":{"body":91,"breadcrumbs":9,"title":1},"508":{"body":1,"breadcrumbs":9,"title":1},"509":{"body":1,"breadcrumbs":9,"title":1},"51":{"body":332,"breadcrumbs":9,"title":4},"510":{"body":1,"breadcrumbs":11,"title":3},"511":{"body":21,"breadcrumbs":10,"title":2},"512":{"body":74,"breadcrumbs":12,"title":4},"52":{"body":54,"breadcrumbs":9,"title":4},"53":{"body":93,"breadcrumbs":8,"title":3},"54":{"body":75,"breadcrumbs":8,"title":3},"55":{"body":1,"breadcrumbs":7,"title":2},"56":{"body":17,"breadcrumbs":9,"title":4},"57":{"body":0,"breadcrumbs":9,"title":4},"58":{"body":32,"breadcrumbs":7,"title":2},"59":{"body":2,"breadcrumbs":7,"title":2},"6":{"body":43,"breadcrumbs":10,"title":1},"60":{"body":22,"breadcrumbs":7,"title":2},"61":{"body":25,"breadcrumbs":9,"title":4},"62":{"body":1,"breadcrumbs":8,"title":3},"63":{"body":15,"breadcrumbs":10,"title":5},"64":{"body":42,"breadcrumbs":9,"title":4},"65":{"body":19,"breadcrumbs":8,"title":3},"66":{"body":43,"breadcrumbs":10,"title":5},"67":{"body":24,"breadcrumbs":9,"title":4},"68":{"body":45,"breadcrumbs":14,"title":7},"69":{"body":22,"breadcrumbs":8,"title":1},"7":{"body":113,"breadcrumbs":12,"title":3},"70":{"body":37,"breadcrumbs":8,"title":1},"71":{"body":2,"breadcrumbs":8,"title":1},"72":{"body":202,"breadcrumbs":8,"title":1},"73":{"body":3,"breadcrumbs":8,"title":1},"74":{"body":26,"breadcrumbs":10,"title":3},"75":{"body":0,"breadcrumbs":10,"title":3},"76":{"body":8,"breadcrumbs":8,"title":1},"77":{"body":6,"breadcrumbs":8,"title":1},"78":{"body":8,"breadcrumbs":8,"title":1},"79":{"body":10,"breadcrumbs":10,"title":3},"8":{"body":115,"breadcrumbs":14,"title":5},"80":{"body":7,"breadcrumbs":9,"title":2},"81":{"body":49,"breadcrumbs":16,"title":8},"82":{"body":33,"breadcrumbs":9,"title":1},"83":{"body":94,"breadcrumbs":9,"title":1},"84":{"body":6,"breadcrumbs":9,"title":1},"85":{"body":97,"breadcrumbs":9,"title":1},"86":{"body":11,"breadcrumbs":9,"title":1},"87":{"body":4,"breadcrumbs":11,"title":3},"88":{"body":8,"breadcrumbs":11,"title":3},"89":{"body":4,"breadcrumbs":9,"title":1},"9":{"body":142,"breadcrumbs":15,"title":6},"90":{"body":3,"breadcrumbs":9,"title":1},"91":{"body":3,"breadcrumbs":9,"title":1},"92":{"body":12,"breadcrumbs":11,"title":3},"93":{"body":4,"breadcrumbs":10,"title":2},"94":{"body":9,"breadcrumbs":12,"title":4},"95":{"body":78,"breadcrumbs":10,"title":5},"96":{"body":53,"breadcrumbs":6,"title":1},"97":{"body":0,"breadcrumbs":6,"title":1},"98":{"body":170,"breadcrumbs":6,"title":1},"99":{"body":161,"breadcrumbs":7,"title":2}},"docs":{"0":{"body":"This book contains the Polkadot Fellowship Requests for Comments (RFCs) detailing proposed changes to the technical implementation of the Polkadot network. polkadot-fellows/RFCs","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"(source) Table of Contents RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs Summary Motivation Requirements Stakeholders Explanation Current code structure Proposed Modification Using the Deposit Function Enhanced Approach to Further Lower Barriers for Entry Discussion of Other Proposals Enhanced Weak Governance Origin Model Function-Based Pricing Model Linking Deposit to USD(x) Value Drawbacks Testing, Security, and Privacy Security concerns Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Unresolved Questions Future Directions and Related Material Start Date 2 November 2023 Description A proposal to reduce the minimum deposit required for collection creation on the Polkadot and Kusama Asset Hub, making it more accessible and affordable for artists. Authors Aurora Poppyseed , Just_Luuuu , Viki Val","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs","id":"1","title":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs"},"10":{"body":"Several innovative proposals have been considered to enhance the network's adaptability and manage deposit requirements more effectively:","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Discussion of Other Proposals","id":"10","title":"Discussion of Other Proposals"},"100":{"body":"All chain teams are stakeholders, as implementing this feature would require timely effort on their side and would impact compatibility with older tools. This feature is essential for all offline signer tools; many regular signing tools might make use of it. In general, this RFC greatly improves security of any network implementing it, as many governing keys are used with offline signers. Implementing this RFC would remove requirement to maintain metadata portals manually, as task of metadata verification would be effectively moved to consensus mechanism of the chain.","breadcrumbs":"RFC-0000: Metadata for offline signers » Stakeholders","id":"100","title":"Stakeholders"},"101":{"body":"Detailed description of metadata shortening and digest process is provided in metadata-shortener crate (see cargo doc --open and examples). Below are presented algorithms of the process.","breadcrumbs":"RFC-0000: Metadata for offline signers » Explanation","id":"101","title":"Explanation"},"102":{"body":"Metadata structure Metadata in general consists of four sections: Types registry Pallets Extrinsic metadata Runtime type Of these, only sections 1-3 contain information required for extrinsic decoding. The most important section is (1) Types registry, that is mostly used in extrinsic decoding. It is also the largest part, thus it is modularized for fractional transmission. Part (2) contains runtime version and is otherwise useless for transaction decoding; thus its contents are reduced to this parameter and included into Metadata Descriptor. Part (3) is included into Metadata Descriptor verbatim. Metadata descriptor Values for: u8 metadata shortening protocol version, SCALE-encoded ExtrinsicMetadata, SCALE-encoded spec_version String, SCALE-encoded spec_name String, u16 base58 prefix, u8 decimals value or 0u8 if no units are defined, SCALE-encoded tokenSymbol String defined on chain to identify the name of currency (available for example through system.properties() RPC call) or empty string if no base units are defined, enum MetadataDescriptor { V0, V1(MetadataDescriptorV1),\n} struct MetadataDescriptorV1 { extrinsic_metadata: Vec, // SCALE from `ExtrinsicMetadata` spec_version: Vec, // SCALE form `String` spec_name: Vec, // SCALE from `String` base58_prefix: u16, decimals: u8, token_symbol: Vec, // SCALE from `String`\n} constitute metadata descriptor. This is minimal information that is, together with (shortened) types registry, sufficient to decode any signable transaction. Merkle tree A Complete Binary Merkle Tree ( CBMT ) is proposed as digest structure. Every node of the proposed tree has a 32-bit value. A terminal node of the tree we call leaf . Its value is input for digest. The top node of the tree we call root . All node values for non-leave nodes are not terminal are computed through non-commutative merge procedure of child nodes. In CBMT, all layers must be populated, except for the last one, that must have complete filling from the left. Nodes are numbered top-down and left-to-right starting with 0 at the top of tree. Example 8-node tree 0 / \\ 1 2 / \\ / \\ 3 4 5 6 / \\\n7 8 Nodes 4, 5, 6, 7, 8 are leaves\nNode 0 is root","breadcrumbs":"RFC-0000: Metadata for offline signers » Definitions","id":"102","title":"Definitions"},"103":{"body":"The metadata is converted into lean modular form (vector of chunks) A Merkle tree is constructed from the metadata chunks A root of tree (as a left element) is merged with Metadata Descriptor (as a right element) Resulting value is a constant to be included in additionalSigned to prove that the metadata seen by cold device is genuine","breadcrumbs":"RFC-0000: Metadata for offline signers » General flow","id":"103","title":"General flow"},"104":{"body":"Structure of types in shortened metadata exactly matches structure of types in scale-info, but doc field is always empty struct Type { path: Path, // vector of strings type_params: Vec, type_def: TypeDef, // enum of various types doc: Vec,\n} struct TypeParams { name: String, ty: Option,\n} Types registry is stripped from docs fields. Types records are separated into chunks, with enum variants being individual chunks differing by variant index; each chunk consisting of id (same as in full metadata registry) and SCALE-encoded 'Type' description (reduced to 1-variant enum for enum variants). Enums with 0 variants are treated as regular types. Chunks are sorted by id in ascending order; chunks with same id are sorted by enum variant index in ascending order. types_registry = metadataV14.types\nmodularized_registry = EmptyVector\nfor (id, type) in types.registry.iterate_enumerate { type.doc = empty_vector if (type is ReduceableEnum) { // false for 0-variant enums for variant in type.variants.iterate { variant_type = Type { path: type.path type_params: empty_vector type_def: TypeDef::Variant(variants: [variant]) } modularized_registry.push(id, variant_type) } } else { modularized_registry.push(id, type) }\n} modularized_registry.sort(|a, b| { if a.id == b.id { //only possible for variants a.variant_index > b.variant_index } else { a.id > b.id } }\n)","breadcrumbs":"RFC-0000: Metadata for offline signers » Metadata modularization","id":"104","title":"Metadata modularization"},"105":{"body":"blake3 transformation of concatenated child nodes (blake3(left + right)) as merge procedure;","breadcrumbs":"RFC-0000: Metadata for offline signers » Merging protocol","id":"105","title":"Merging protocol"},"106":{"body":"Leaves are numbered in ascending order. Leaf index is associated with corresponding chunk. Merge is performed using the leaf with highest index as right and node with second to highest index as left children; result is pushed to the end of nodes queue and leaves are discarded. Step (2) is repeated until no leaves or just one leaf remains; in latter case, the last leaf is pushed to the front of the nodes queue. Right node and then left node is popped from the front of the nodes queue and merged; the result is sent to the end of the queue. Step (4) is repeated until only one node remains; this is tree root. Resulting tree for metadata consisting of 5 nodes (numbered from 0 to 4): root / \\ * * / \\ / \\ * 0 1 2 / \\\n3 4","breadcrumbs":"RFC-0000: Metadata for offline signers » Complete Binary Merkle Tree construction protocol","id":"106","title":"Complete Binary Merkle Tree construction protocol"},"107":{"body":"Blake3 hash is computed for each chunk of modular short metadata registry. Complete Binary Merkle Tree is constructed as described above. Root hash of this tree (left) is merged with metadata descriptor blake3 hash (right); this is metadata digest. Version number and corresponding resulting metadata digest MUST be included into Signed Extensions as specified in Chain Verification section below.","breadcrumbs":"RFC-0000: Metadata for offline signers » Digest","id":"107","title":"Digest"},"108":{"body":"For shortening, an attempt to decode transaction completely using provided metadata is performed with the same algorithm that would be used on the cold side. All chunks are associated with their leaf indices. An example of this protocol is proposed in metadata-shortener that is based on substrate-parser decoding protocol; any decoding protocol could be used here as long as cold signer's design finds it appropriate for given security model.","breadcrumbs":"RFC-0000: Metadata for offline signers » Shortening","id":"108","title":"Shortening"},"109":{"body":"Shortened metadata chunks MAY be trasmitted into cold device together with Merkle proof in its entirety or in parts, depending on memory capabilities of the cold device and it ability to reconstruct larger fraction of tree. This document does not specify the manner of transmission. The order of metadata chunks MAY be arbitrary, the only requirement is that indices of leaf nodes in Merkle tree corresponding to chunks MUST be communicated. Community MAY handle proof format standartization independently.","breadcrumbs":"RFC-0000: Metadata for offline signers » Transmission","id":"109","title":"Transmission"},"11":{"body":"The concept of a weak governance origin, controlled by a consortium like the System Collective, has been proposed. This model would allow for dynamic adjustments of NFT deposit requirements in response to market conditions, adhering to storage deposit norms. Enhancements and Concerns: Responsiveness : To address concerns about delayed responses, the model could incorporate automated triggers based on predefined market indicators, ensuring timely adjustments. Stability vs. Flexibility : Balancing stability with the need for flexibility is challenging. To mitigate the issue of frequent changes in DOT-based deposits, a mechanism for gradual and predictable adjustments could be introduced. Scalability : The model's scalability is a concern, given the numerous deposits across the system. A more centralized approach to deposit management might be needed to avoid constant, decentralized adjustments.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Enhanced Weak Governance Origin Model","id":"11","title":"Enhanced Weak Governance Origin Model"},"110":{"body":"The transmitted metadata chunks are hashed together with proof lemmas to obtain root that MAY be transmitted along with the rest of payload. Verification that the root transmitted with message matches with calculated root is optional; the transmitted root SHOULD NOT be used in signature, calculated root MUST be used; however, there is no mechanism to enforce this - it should be done during cold signers code audit.","breadcrumbs":"RFC-0000: Metadata for offline signers » Offline verification","id":"110","title":"Offline verification"},"111":{"body":"The root of metadata computed by cold device MAY be included into Signed Extensions; this way the transaction will pass as valid iff hash of metadata as seen by cold storage device is identical to consensus hash of metadata, ensuring fair signing protocol. The Signed Extension representing metadata digest is a single byte representing both digest vaule inclusion and shortening protocol version; this MUST be included in Signed Extensions set. Depending on its value, a digest value is included as additionalSigned to signature computation according to following specification: signed extension value digest value comment 0x00 digest is not included 0x01 32-byte digest this represents protocol version 1 0x02 - 0xFF reserved reserved for future use","breadcrumbs":"RFC-0000: Metadata for offline signers » Chain verification","id":"111","title":"Chain verification"},"112":{"body":"","breadcrumbs":"RFC-0000: Metadata for offline signers » Drawbacks","id":"112","title":"Drawbacks"},"113":{"body":"A 1-byte increase in transaction size due to signed extension value. Digest is not included in transferred transaction, only in signing process.","breadcrumbs":"RFC-0000: Metadata for offline signers » Increased transaction size","id":"113","title":"Increased transaction size"},"114":{"body":"Some slightly out of spec systems might experience breaking changes as new content of signed extensions is added. It is important to note, that there is no real overhead in processing time nor complexity, as the metadata checking mechanism is voluntary. The only drawbacks are expected for tools that do not implement MetadataV14 self-descripting features.","breadcrumbs":"RFC-0000: Metadata for offline signers » Transition overhead","id":"114","title":"Transition overhead"},"115":{"body":"The metadata shortening protocol should be extensively tested on all available examples of metadata before releasing changes to either metadata or shortener. Careful code review should be performed on shortener implementation code to ensure security. The main metadata tree would inevitably be constructed on runtime build which would also ensure correctness. To be able to recall shortener protocol in case of vulnerability issues, a version byte is included.","breadcrumbs":"RFC-0000: Metadata for offline signers » Testing, Security, and Privacy","id":"115","title":"Testing, Security, and Privacy"},"116":{"body":"","breadcrumbs":"RFC-0000: Metadata for offline signers » Performance, Ergonomics, and Compatibility","id":"116","title":"Performance, Ergonomics, and Compatibility"},"117":{"body":"This is negligibly short pessimization during build time on the chain side. Cold wallets performance would improve mostly as metadata validity mechanism that was taking most of effort in cold wallet support would become trivial.","breadcrumbs":"RFC-0000: Metadata for offline signers » Performance","id":"117","title":"Performance"},"118":{"body":"The proposal was optimized for cold storage wallets usage with minimal impact on all other parts of the ecosystem","breadcrumbs":"RFC-0000: Metadata for offline signers » Ergonomics","id":"118","title":"Ergonomics"},"119":{"body":"Proposal in this form is not compatible with older tools that do not implement proper MetadataV14 self-descriptive features; those would have to be upgraded to include a new signed extensions field.","breadcrumbs":"RFC-0000: Metadata for offline signers » Compatibility","id":"119","title":"Compatibility"},"12":{"body":"Another proposal is to use a mathematical function to regulate deposit prices, initially allowing low prices to encourage participation, followed by a gradual increase to prevent network bloat. Refinements: Choice of Function : A logarithmic or sigmoid function is favored over an exponential one, as these functions increase prices at a rate that encourages participation while preventing prohibitive costs. Adjustment of Constants : To finely tune the pricing rise, one of the function's constants could correlate with the total number of NFTs on AssetHub. This would align the deposit requirements with the actual usage and growth of the network.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Function-Based Pricing Model","id":"12","title":"Function-Based Pricing Model"},"120":{"body":"This project was developed upon a Polkadot Treasury grant; relevant development links are located in metadata-offline-project repository.","breadcrumbs":"RFC-0000: Metadata for offline signers » Prior Art and References","id":"120","title":"Prior Art and References"},"121":{"body":"How would polkadot-js handle the transition? Where would non-rust tools like Ledger apps get shortened metadata content?","breadcrumbs":"RFC-0000: Metadata for offline signers » Unresolved Questions","id":"121","title":"Unresolved Questions"},"122":{"body":"Changes to code of all cold signers to implement this mechanism SHOULD be done when this is enabled; non-cold signers may perform extra metadata check for better security. Ultimately, signing anything without decoding it with verifiable metadata should become discouraged in all situations where a decision-making mechanism is involved (that is, outside of fully automated blind signers like trade bots or staking rewards payout tools).","breadcrumbs":"RFC-0000: Metadata for offline signers » Future Directions and Related Material","id":"122","title":"Future Directions and Related Material"},"123":{"body":"(source) Table of Contents RFC-0047: Assignment of availability chunks to validators Summary Motivation Stakeholders Explanation Systematic erasure codes Availability recovery at present Availability recovery from systematic chunks Chunk assignment function Network protocol Upgrade path Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Appendix A Start Date 03 November 2023 Description An evenly-distributing indirection layer between availability chunks and validators. Authors Alin Dima","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » RFC-0047: Assignment of availability chunks to validators","id":"123","title":"RFC-0047: Assignment of availability chunks to validators"},"124":{"body":"Propose a way of permuting the availability chunk indices assigned to validators, in the context of recovering available data from systematic chunks , with the purpose of fairly distributing network bandwidth usage.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Summary","id":"124","title":"Summary"},"125":{"body":"Currently, the ValidatorIndex is always identical to the ChunkIndex. Since the validator array is only shuffled once per session, naively using the ValidatorIndex as the ChunkIndex would pose an unreasonable stress on the first N/3 validators during an entire session, when favouring availability recovery from systematic chunks. Therefore, the relay chain node needs a deterministic way of evenly distributing the first ~(N_VALIDATORS / 3) systematic availability chunks to different validators, based on the relay chain block and core. The main purpose is to ensure fair distribution of network bandwidth usage for availability recovery in general and in particular for systematic chunk holders.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Motivation","id":"125","title":"Motivation"},"126":{"body":"Relay chain node core developers.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Stakeholders","id":"126","title":"Stakeholders"},"127":{"body":"","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Explanation","id":"127","title":"Explanation"},"128":{"body":"An erasure coding algorithm is considered systematic if it preserves the original unencoded data as part of the resulting code. The implementation of the erasure coding algorithm used for polkadot's availability data is systematic. Roughly speaking, the first N_VALIDATORS/3 chunks of data can be cheaply concatenated to retrieve the original data, without running the resource-intensive and time-consuming reconstruction algorithm. You can find the concatenation procedure of systematic chunks for polkadot's erasure coding algorithm here In a nutshell, it performs a column-wise concatenation with 2-byte chunks. The output could be zero-padded at the end, so scale decoding must be aware of the expected length in bytes and ignore trailing zeros (this assertion is already being made for regular reconstruction).","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Systematic erasure codes","id":"128","title":"Systematic erasure codes"},"129":{"body":"According to the polkadot protocol spec : A validator should request chunks by picking peers randomly and must recover at least f+1 chunks, where n=3f+k and k in {1,2,3}. For parity's polkadot node implementation, the process was further optimised. At this moment, it works differently based on the estimated size of the available data: (a) for small PoVs (up to 128 Kib), sequentially try requesting the unencoded data from the backing group, in a random order. If this fails, fallback to option (b). (b) for large PoVs (over 128 Kib), launch N parallel requests for the erasure coded chunks (currently, N has an upper limit of 50), until enough chunks were recovered. Validators are tried in a random order. Then, reconstruct the original data. All options require that after reconstruction, validators then re-encode the data and re-create the erasure chunks trie in order to check the erasure root.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Availability recovery at present","id":"129","title":"Availability recovery at present"},"13":{"body":"This approach suggests pegging the deposit value to a stable currency like the USD, introducing predictability and stability for network users. Considerations and Challenges: Market Dynamics : One perspective is that fluctuations in native currency value naturally balance user participation and pricing, deterring network spam while encouraging higher-value collections. Conversely, there's an argument for allowing broader participation if the DOT/KSM value increases. Complexity and Risks : Implementing a USD-based pricing system could add complexity and potential risks. The implementation needs to be carefully designed to avoid unintended consequences, such as excessive reliance on external financial systems or currencies. Each of these proposals offers unique advantages and challenges. The optimal approach may involve a combination of these ideas, carefully adjusted to address the specific needs and dynamics of the Polkadot and Kusama networks.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Linking Deposit to USD(x) Value","id":"13","title":"Linking Deposit to USD(x) Value"},"130":{"body":"As part of the effort of increasing polkadot's resource efficiency, scalability and performance , work is under way to modify the Availability Recovery protocol by leveraging systematic chunks. See this comment for preliminary performance results. In this scheme, the relay chain node will first attempt to retrieve the ~N/3 systematic chunks from the validators that should hold them, before falling back to recovering from regular chunks, as before. A re-encoding step is still needed for verifying the erasure root, so the erasure coding overhead cannot be completely brought down to 0. Not being able to retrieve even one systematic chunk would make systematic reconstruction impossible. Therefore, backers can be used as a backup to retrieve a couple of missing systematic chunks, before falling back to retrieving regular chunks.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Availability recovery from systematic chunks","id":"130","title":"Availability recovery from systematic chunks"},"131":{"body":"Properties The function that decides the chunk index for a validator will be parameterized by at least (validator_index, core_index) and have the following properties: deterministic relatively quick to compute and resource-efficient. when considering a fixed core_index, the function should describe a permutation of the chunk indices the validators that map to the first N/3 chunk indices should have as little overlap as possible for different cores. In other words, we want a uniformly distributed, deterministic mapping from ValidatorIndex to ChunkIndex per core. It's desirable to not embed this function in the runtime, for performance and complexity reasons. However, this means that the function needs to be kept very simple and with minimal or no external dependencies. Any change to this function could result in parachains being stalled and needs to be coordinated via a runtime upgrade or governance call. Proposed function Pseudocode: pub fn get_chunk_index( n_validators: u32, validator_index: ValidatorIndex, core_index: CoreIndex\n) -> ChunkIndex { let threshold = systematic_threshold(n_validators); // Roughly n_validators/3 let core_start_pos = core_index * threshold; (core_start_pos + validator_index) % n_validators\n}","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Chunk assignment function","id":"131","title":"Chunk assignment function"},"132":{"body":"The request-response /req_chunk protocol will be bumped to a new version (from v1 to v2). For v1, the request and response payloads are: /// Request an availability chunk.\npub struct ChunkFetchingRequest { /// Hash of candidate we want a chunk for. pub candidate_hash: CandidateHash, /// The index of the chunk to fetch. pub index: ValidatorIndex,\n} /// Receive a requested erasure chunk.\npub enum ChunkFetchingResponse { /// The requested chunk data. Chunk(ChunkResponse), /// Node was not in possession of the requested chunk. NoSuchChunk,\n} /// This omits the chunk's index because it is already known by\n/// the requester and by not transmitting it, we ensure the requester is going to use his index\n/// value for validating the response, thus making sure he got what he requested.\npub struct ChunkResponse { /// The erasure-encoded chunk of data belonging to the candidate block. pub chunk: Vec, /// Proof for this chunk's branch in the Merkle tree. pub proof: Proof,\n} Version 2 will add an index field to ChunkResponse: #[derive(Debug, Clone, Encode, Decode)]\npub struct ChunkResponse { /// The erasure-encoded chunk of data belonging to the candidate block. pub chunk: Vec, /// Proof for this chunk's branch in the Merkle tree. pub proof: Proof, /// Chunk index. pub index: ChunkIndex\n} An important thing to note is that in version 1, the ValidatorIndex value is always equal to the ChunkIndex. Until the chunk rotation feature is enabled, this will also be true for version 2. However, after the feature is enabled, this will generally not be true. The requester will send the request to validator with index V. The responder will map the V validator index to the C chunk index and respond with the C-th chunk. This mapping can be seamless, by having each validator store their chunk by ValidatorIndex (just as before). The protocol implementation MAY check the returned ChunkIndex against the expected mapping to ensure that it received the right chunk. In practice, this is desirable during availability-distribution and systematic chunk recovery. However, regular recovery may not check this index, which is particularly useful when participating in disputes that don't allow for easy access to the validator->chunk mapping. See Appendix A for more details. In any case, the requester MUST verify the chunk's proof using the provided index. During availability-recovery, given that the requester may not know (if the mapping is not available) whether the received chunk corresponds to the requested validator index, it has to keep track of received chunk indices and ignore duplicates. Such duplicates should be considered the same as an invalid/garbage response (drop it and move on to the next validator - we can't punish via reputation changes, because we don't know which validator misbehaved).","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Network protocol","id":"132","title":"Network protocol"},"133":{"body":"Step 1: Enabling new network protocol In the beginning, both /req_chunk/1 and /req_chunk/2 will be supported, until all validators and collators have upgraded to use the new version. V1 will be considered deprecated. During this step, the mapping will still be 1:1 (ValidatorIndex == ChunkIndex), regardless of protocol. Once all nodes are upgraded, a new release will be cut that removes the v1 protocol. Only once all nodes have upgraded to this version will step 2 commence. Step 2: Enabling the new validator->chunk mapping Considering that the Validator->Chunk mapping is critical to para consensus, the change needs to be enacted atomically via governance, only after all validators have upgraded the node to a version that is aware of this mapping, functionality-wise. It needs to be explicitly stated that after the governance enactment, validators that run older client versions that don't support this mapping will not be able to participate in parachain consensus. Additionally, an error will be logged when starting a validator with an older version, after the feature was enabled. On the other hand, collators will not be required to upgrade in this step (but are still require to upgrade for step 1), as regular chunk recovery will work as before, granted that version 1 of the networking protocol has been removed. Note that collators only perform availability-recovery in rare, adversarial scenarios, so it is fine to not optimise for this case and let them upgrade at their own pace. To support enabling this feature via the runtime, we will use the NodeFeatures bitfield of the HostConfiguration struct (added in https://github.com/paritytech/polkadot-sdk/pull/2177). Adding and enabling a feature with this scheme does not require a runtime upgrade, but only a referendum that issues a Configuration::set_node_feature extrinsic. Once the feature is enabled and new configuration is live, the validator->chunk mapping ceases to be a 1:1 mapping and systematic recovery may begin.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Upgrade path","id":"133","title":"Upgrade path"},"134":{"body":"Getting access to the core_index that used to be occupied by a candidate in some parts of the dispute protocol is very complicated (See appendix A ). This RFC assumes that availability-recovery processes initiated during disputes will only use regular recovery, as before. This is acceptable since disputes are rare occurrences in practice and is something that can be optimised later, if need be. Adding the core_index to the CandidateReceipt would mitigate this problem and will likely be needed in the future for CoreJam and/or Elastic scaling. Related discussion about updating CandidateReceipt It's a breaking change that requires all validators and collators to upgrade their node version at least once.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Drawbacks","id":"134","title":"Drawbacks"},"135":{"body":"Extensive testing will be conducted - both automated and manual. This proposal doesn't affect security or privacy.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Testing, Security, and Privacy","id":"135","title":"Testing, Security, and Privacy"},"136":{"body":"","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Performance, Ergonomics, and Compatibility","id":"136","title":"Performance, Ergonomics, and Compatibility"},"137":{"body":"This is a necessary data availability optimisation, as reed-solomon erasure coding has proven to be a top consumer of CPU time in polkadot as we scale up the parachain block size and number of availability cores. With this optimisation, preliminary performance results show that CPU time used for reed-solomon coding/decoding can be halved and total POV recovery time decrease by 80% for large POVs. See more here .","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Performance","id":"137","title":"Performance"},"138":{"body":"Not applicable.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Ergonomics","id":"138","title":"Ergonomics"},"139":{"body":"This is a breaking change. See upgrade path section above. All validators and collators need to have upgraded their node versions before the feature will be enabled via a governance call.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Compatibility","id":"139","title":"Compatibility"},"14":{"body":"Modifying deposit requirements necessitates a balanced assessment of the potential drawbacks. Highlighted below are cogent points extracted from the discourse on the Polkadot Forum conversation , which provide critical perspectives on the implications of such changes: The discourse around modifying deposit requirements includes various perspectives: Adjusting NFT deposit requirements on Polkadot and Kusama Asset Hubs involves key challenges: State Growth and Technical Concerns : Lowering deposit requirements can lead to increased blockchain state size, potentially causing state bloat. This growth needs to be managed to prevent strain on the network's resources and maintain operational efficiency. Network Security and Market Response : Reduced deposits might increase transaction volume, potentially bloating the state, thereby impacting network security. Additionally, adapting to the cryptocurrency market's volatility is crucial. The mechanism for setting deposit amounts must be responsive yet stable, avoiding undue complexity for users. Economic Impact on Previous Stakeholders : The change could have varied economic effects on previous (before the change) creators, platform operators, and investors. Balancing these interests is essential to ensure the adjustment benefits the ecosystem without negatively impacting its value dynamics. However in the particular case of Polkadot and Kusama Asset Hub this does not pose a concern since there are very few collections currently and thus previous stakeholders wouldn't be much affected. As of date 9th January 2024 there are 42 collections on Polkadot Asset Hub and 191 on Kusama Asset Hub with a relatively low volume.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Drawbacks","id":"14","title":"Drawbacks"},"140":{"body":"See comments on the tracking issue and the in-progress PR","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Prior Art and References","id":"140","title":"Prior Art and References"},"141":{"body":"Not applicable.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Unresolved Questions","id":"141","title":"Unresolved Questions"},"142":{"body":"This enables future optimisations for the performance of availability recovery, such as retrieving batched systematic chunks from backers/approval-checkers.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Future Directions and Related Material","id":"142","title":"Future Directions and Related Material"},"143":{"body":"This appendix details the intricacies of getting access to the core index of a candidate in parity's polkadot node. Here, core_index refers to the index of the core that a candidate was occupying while it was pending availability (from backing to inclusion). Availability-recovery can currently be triggered by the following phases in the polkadot protocol: During the approval voting process. By other collators of the same parachain. During disputes. Getting the right core index for a candidate can be troublesome. Here's a breakdown of how different parts of the node implementation can get access to it: The approval-voting process for a candidate begins after observing that the candidate was included. Therefore, the node has easy access to the block where the candidate got included (and also the core that it occupied). The pov_recovery task of the collators starts availability recovery in response to noticing a candidate getting backed, which enables easy access to the core index the candidate started occupying. Disputes may be initiated on a number of occasions: 3.a. is initiated by the validator as a result of finding an invalid candidate while participating in the approval-voting protocol. In this case, availability-recovery is not needed, since the validator already issued their vote. 3.b is initiated by the validator noticing dispute votes recorded on-chain. In this case, we can safely assume that the backing event for that candidate has been recorded and kept in memory. 3.c is initiated as a result of getting a dispute statement from another validator. It is possible that the dispute is happening on a fork that was not yet imported by this validator, so the subsystem may not have seen this candidate being backed. A naive attempt of solving 3.c would be to add a new version for the disputes request-response networking protocol. Blindly passing the core index in the network payload would not work, since there is no way of validating that the reported core_index was indeed the one occupied by the candidate at the respective relay parent. Another attempt could be to include in the message the relay block hash where the candidate was included. This information would be used in order to query the runtime API and retrieve the core index that the candidate was occupying. However, considering it's part of an unimported fork, the validator cannot call a runtime API on that block. Adding the core_index to the CandidateReceipt would solve this problem and would enable systematic recovery for all dispute scenarios.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Appendix A","id":"143","title":"Appendix A"},"144":{"body":"(source) Table of Contents RFC-0061: Support allocator inside of runtime Summary Motivation Stakeholders Explanation Runtime side spec Client side spec Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 27 December 2023 Description Supporting runtime built-in allocator makes the substrate runtime more versatile Authors Jiahao Ye","breadcrumbs":"RFC-0061: Support allocator inside of runtime » RFC-0061: Support allocator inside of runtime","id":"144","title":"RFC-0061: Support allocator inside of runtime"},"145":{"body":"Currently, substrate runtime use an simple allocator defined by host side. Every runtime MUST import these allocator functions for normal execution. This situation make runtime code not versatile enough. So this RFC proposes to define a new spec for allocator part to make substrate runtime more generic.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Summary","id":"145","title":"Summary"},"146":{"body":"Since this RFC define a new way for allocator, we now regard the old one as legacy allocator. As we all know, since the allocator implementation details are defined by the substrate client, parachain/parathread cannot customize memory allocator algorithm, so the new specification allows the runtime to customize memory allocation, and then export the allocator function according to the specification for the client side to use. Another benefit is that some new host functions can be designed without allocating memory on the client, which may have potential performance improvements. Also it will help provide a unified and clean specification if substrate runtime support multi-targets(e.g. RISC-V). There is also a potential benefit. Many programming languages that support compilation to wasm may not be friendly to supporting external allocator. This is beneficial for other programming languages to enter the substrate runtime ecosystem. The last and most important benefit is that for offchain context execution, the runtime can fully support pure wasm. What this means here is that all imported host functions could not actually be called (as stub functions), then the various verification logic of the runtime can be converted into pure wasm, which provides the possibility for the substrate runtime to run block verification in other environments (such as in browsers and other non-substrate environments).","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Motivation","id":"146","title":"Motivation"},"147":{"body":"No attempt was made at convincing stakeholders.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Stakeholders","id":"147","title":"Stakeholders"},"148":{"body":"","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Explanation","id":"148","title":"Explanation"},"149":{"body":"This section contains a list of functions should be exported by substrate runtime. We define the spec as version 1, so the following dummy function v1 MUST be exported to hint client that runtime is using version 1 spec, otherwise rollback to legacy allocator. The function should never be used, and its name is only for version checking. (export \"v1\" (func $v1)) Choose this way is more generic than custom section since many other tools do not support custom section very well. But if an environment want to run it, it should always be possible to parse the export section. The allocator functions are: (export \"alloc\" (func $alloc))\n(export \"dealloc\" (func $dealloc))\n(export \"realloc\" (func $realloc)) Their signatures are: (func $alloc (param $size i32) (result i32))\n(func $dealloc (param $addr i32) (param $size i32))\n(func $realloc (param $addr i32) (param $size i32) (param $new_size i32) (result i32)) Note: dealloc/realloc is not used in substrate side currently, but for the functional integrity. The following imports are disabled. The two kind of allocators(leagcy and v1) cannot know each other, and importing them will cause abnormal memory allocation. (import \"env\" \"ext_allocator_free_version_1\" (func $ext_allocator_free_version_1 (type 0)))\n(import \"env\" \"ext_allocator_malloc_version_1\" (func $ext_allocator_malloc_version_1 (type 1))) The following export could be removed. The client side no need to know heap base. (export \"__heap_base\" (global 2))","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Runtime side spec","id":"149","title":"Runtime side spec"},"15":{"body":"","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Testing, Security, and Privacy","id":"15","title":"Testing, Security, and Privacy"},"150":{"body":"During instantiating time, add a version checking stage for wasm executor before any other wasm module checking. Check if parsed wasm module contains a exported v1 function: If not exist, we predicate it using legacy allocator, just do normal checking like before. Set legacy allocator be Some while set v1 allocator be None. If exist, we predicate it using v1 allocator. And then we lookup and hold the exported alloc function for the total lifestyle of instance, return error if not exist. Set legacy allocator be None while set v1 allocator be Some. When wasm host functions or other entrypoint call(e.g. runtime_apis/validate_block) need to allocate memory, check if instance hold the alloc, if hold just call it otherwise call the legacy allocator. Detail-heavy explanation of the RFC, suitable for explanation to an implementer of the changeset. This should address corner cases in detail and provide justification behind decisions, and provide rationale for how the design meets the solution requirements.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Client side spec","id":"150","title":"Client side spec"},"151":{"body":"The allocator inside of the runtime will make code size bigger, but it's not obvious. The allocator inside of the runtime maybe slow down(or speed up) the runtime, still not obvious. We could ignore these drawbacks since they are not prominent. And the execution efficiency is highly decided by runtime developer. We could not prevent a poor efficiency if developer want to do it.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Drawbacks","id":"151","title":"Drawbacks"},"152":{"body":"Keep the legacy allocator runtime test cases, and add new feature to compile test cases for v1 allocator spec. And then update the test asserts. Update template runtime to enable v1 spec. Once the dev network runs well, it seems that the spec is implmented correctly.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Testing, Security, and Privacy","id":"152","title":"Testing, Security, and Privacy"},"153":{"body":"","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Performance, Ergonomics, and Compatibility","id":"153","title":"Performance, Ergonomics, and Compatibility"},"154":{"body":"As the above says, not obvious impact about performance. And polkadot-sdk could offer the best practice allocator for all chains. Third party also could customized by theirself. So the performance could be improved over time.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Performance","id":"154","title":"Performance"},"155":{"body":"Only for runtime developer, Just need to import a new crate and enable a new feature. Maybe it's convienient for other wasm-target language to implment.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Ergonomics","id":"155","title":"Ergonomics"},"156":{"body":"It's 100% compatible. Only Some runtime configs and executor configs need to be depreacted. For support new runtime spec, we MUST upgrade the client binary to support new spec of client part firstly. We SHALL add an optional primtive crate to enable the version 1 spec and disable the legacy allocator by cargo feature. For the first year, we SHALL disable the v1 by default, and enable it by default start in the next year.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Compatibility","id":"156","title":"Compatibility"},"157":{"body":"Move the allocator inside of the runtime Add new allocator design","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Prior Art and References","id":"157","title":"Prior Art and References"},"158":{"body":"None at this time.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Unresolved Questions","id":"158","title":"Unresolved Questions"},"159":{"body":"The content discussed with RFC-0004 is basically orthogonal, but it could still be considered together, and it is preferred that this rfc be implmentented first. This feature could make substrate runtime be easier supported by other languages and integreted into other ecosystem.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Future Directions and Related Material","id":"159","title":"Future Directions and Related Material"},"16":{"body":"The prevention of \"spam\" could be prevented by OpenGov proposal to forceDestoy list of collections that are not suitable.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Security concerns","id":"16","title":"Security concerns"},"160":{"body":"(source) Table of Contents RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot Summary Motivation Defi+NFT Applications need Smart Contracts on AssetHub Rollups need Smart Contracts on AssetHub ink! on AssetHub will lead to CorePlay Developers on AssetHub Stakeholders Explanation Limit Smart Contract Weight allocation Model AssetHub Assets inside EVM Smart Contracts based on Astar New DOT Revenue Sources New Revenue from AssetHub EVM Contracts New Revenue for ink!/Coreplay Contracts Drawbacks and Tradeoffs Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Unresolved Questions Future Directions and Related Material Start Date 14 January 2024 Description A proposal to add EVM + ink! Contracts to Asset Hub for Polkadot to support Polkadot Rollups and larger numbers of EVM/Coreplay smart contract developers and their users on Polkadot Rollups and AssetHub for Polkadot . Authors Sourabh Niyogi","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot","id":"160","title":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot"},"161":{"body":"This RFC proposes to add the two dominant smart contract programming languages in the Polkadot ecosystem to AssetHub: EVM + ink!/Coreplay. The objective is to increase DOT Revenue by making AssetHub accessible to (1) Polkadot Rollups; (2) EVM smart contract programmers; (3) Coreplay programmers who will benefit from easier-to-use smart contract environments. These changes in AssetHub are enabled by key Polkadot 2.0 technologies: PolkaVM supporting Coreplay, and hyper data availability in Blobs Chain.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Summary","id":"161","title":"Summary"},"162":{"body":"EVM Contracts are pervasive in the Web3 blockchain ecosystem, while Polkadot 2.0's Coreplay aims to surpass EVM Contracts in ease-of-use using PolkaVM's RISC architecture. Asset Hub for Polkadot does not have smart contract capabilities, even though dominant stablecoin assets such as USDC and USDT are originated there. In addition, in the RFC #32 - Minimal Relay Chain architecture , DOT balances are planned to be shifted to Asset Hub, to support Polkadot 2.0's CoreJam map-reduce architecture . In this 2.0 architecture, there is no room for synchronous contracts on the Polkadot relay chain -- doing so would waste precious resources that should be dedicated to sync+async composability. However, while Polkadot fellows have concluded the Polkadot relay chain should not support synchronous smart contracts, this is not applicable to AssetHub for Polkadot. The following sections argue for the need for Smart Contracts on AssetHub.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Motivation","id":"162","title":"Motivation"},"163":{"body":"EVM Smart Contract chains within Polkadot and outside are dominated by defi + NFT applications. While the assetConversion pallet (implementing Uniswap v1) is a start to having some basic defi on AssetHub, many programmers may be surprised to find that synchronous EVM smart contract capabilities (e.g. uniswap v2+v3) on other chains are not possible on AssetHub. Indeed, this is true for many Polkadot parachains, with the exception of the top 2 Polkadot parachains (by marketcap circa early 2024: Moonbeam + Astar) who do include the EVM pallets. This leads to a cumbersome Polkadot EVM smart contract programming experience between AssetHub and these 2 Polkadot parachains, making the Polkadot ecosystem hard to work with for asset-related applications from defi to NFTs. The ink! defi ecosystem remains nascent, having only Astar as a potential home, and empirically has almost no defi/NFT activity. Although e.g. uniswap translations have been written, An AssetHub for Polkadot deployment of EVM and ink! contracts, it is hoped, would likely support new applications for top assets (USDC and USDT) and spur many smart contract developers to develop end user applications with familiar synchronous programming constructs.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Defi+NFT Applications need Smart Contracts on AssetHub","id":"163","title":"Defi+NFT Applications need Smart Contracts on AssetHub"},"164":{"body":"Polkadot Data Availability technology is extremely promising but underutilized. We envision a new class of customer, \"Polkadot Rollups\" that can utilize Polkadot DA far better than Ethereum and other technology platforms. Unlike Ethereum's DA which is capped at a fixed throughput now extending to EIP-4844, Polkadot data availability is linear in the number of cores . This means Polkadot can support a much larger number of rollups than Ethereum now , and even more as the number of cores in Polkadot grows. This performance difference has not been widely appreciated in the blockchain community. Recently, a \"Blobs\" chain has been developed to expose Polkadot DA to rollups by senior Polkadot Fellows: ThrumDev Blobs on Kusama - ParaID 3338 ) Rollkit A rollup kit is mappable to widely used rollup platforms, such as OP Stack, Arbitrum Orbit or StarkNet Madara. A Blobs chain, currently deployed on Kusama (paraID 3338), enables rollups to utilize functionality outside the Polkadot 1.0 parachain architecture by having rollups submit transactions via a rollup kit abstraction. The Blobs chain write interface is simple blobs.submitBlob(namespaceId, blob) with a matching read interface. However, simply sending blobs is not enough to power a rollup. End users need to interact with a \"settlement layer\", while rollups require proof systems for security. Key functionality for optimistic rollups (e.g. OP Stack, Arbitrum Orbit) are: enabling the users of the rollup to deposit and withdraw the L1 native token (DOT) into the rollup and from the rollup. In an AssetHub context: Deposits: send DOT to the rollup from AssetHub, by calling an EVM Contract function on AssetHub; Withdrawal: withdraw DOT from the rollup by submitting a EVM transaction on the rollup. After some of days (e.g. 7 days on OP Stack), the user submits a transaction on AssetHub to claim their DOT, using a Merkle proof. enabling interactive fraud proofs. While this has rarely happened in practice, it is critical to rollup security. In an AssetHub context: Anyone monitoring a rollup, using the Blobs chain can access the recent history. When detecting invalid state transitions, anyone can interact with rollup and AssetHub's EVM to generate a fraud proof. Analogous functionality exist for ZK-rollup platforms (e.g. Polygon zkEVM, StarkNet Madara), with high potential for using the same Blobs+AssetHub chains. While it is possible to have the operations in EVM Contracts translated in FRAME pallets (e.g. an \"opstack\" pallet), we do not believe a pallet translation confers significant benefits. Instead, we believe the translation would require regular updates from the rollup platform, which have proven difficult to implement in practice.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Rollups need Smart Contracts on AssetHub","id":"164","title":"Rollups need Smart Contracts on AssetHub"},"165":{"body":"While ink! WASM Smart Contracts have been promising technology, the adoption of ink! WASM Contracts amongst Polkadot parachains has been low, in practice just Astar to date, with nowhere near as many developers. This may be due to missing tooling, slow compile times, and/or simply because ink!/Rust is just harder to learn than Solidity, the dominant programming language of EVM Chains. Fortunately, ink! can compile to PolkaVM , a new RISC based VM that has the special capability of suspending and resuming the registers, supporting long-running computations. This has the key new promise of making smart contract languages easier to use -- instead of smart contract developers worrying about what can be done within the gas limits of a specific block or a specific transaction, Coreplay smart contracts can be much easier to program on (see here ). We believe AssetHub should support ink! as a precursor to support CorePlay's capabilities as soon as possible. To the best of our knowledge, release times of this are unknown but having ink! inside AssetHub would be natural for Polkadot 2.0.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » ink! on AssetHub will lead to CorePlay Developers on AssetHub","id":"165","title":"ink! on AssetHub will lead to CorePlay Developers on AssetHub"},"166":{"body":"Asset Hub Users : Those who call any extrinsic on Asset Hub for Polkadot. DOT Token Holders : Those who hold DOT on any chain in the Polkadot ecosystem. AssetHub Smart Contract Developers : Those who utilize EVM Smart Contracts, ink! Contracts or Coreplay Contracts on AssetHub. Ethereum Rollups : Rollups who utilize Ethereum as a settlement layer and interactive fraud proofs or ZK proofs to secure their rollup and utilize Ethereum DA to record transactions, provide security for their rollup, and have rollup users settle on Ethereum. Polkadot Rollups : Rollups who utilize AssetHub as a settlement layer and interactive fraud proofs or ZK proofs on Assethub and Blobs to record rollup transactions, provide security for their rollup, and have rollup users settle on AssetHub for Polkadot.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Stakeholders","id":"166","title":"Stakeholders"},"167":{"body":"","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Explanation","id":"167","title":"Explanation"},"168":{"body":"AssetHub is a major component of the Polkadot 2.0 Minimal Relay Chain architecture. It is critical that smart contract developers not be able to clog AssetHub's blockspace for other mission critical applications, such as Staking and Governance. As such, it is proposed that at most 50% of the available weight in AssetHub for Polkadot blocks be allocated to smart contracts pallets (EVM, ink! and/or Coreplay). While to date AssetHub has limited usage, it is believed (see here ) that imposing this limit on smart contracts pallet would limit the effect on non-smart contract usage. A excessively small weight limit like 10% or 20% may limit the attractiveness of Polkadot as a platform for Polkadot rollups and EVM Contracts. A excessively large weight like 90% or 100% may threaten AssetHub usage. In practice, this 50% weight limit would be used for 3 categories of smart contract usage: Defi/NFT applications: modern defi EVM Contracts would be expected to go beyond the capabilities of assetConversion pallet to support many common ERC20/ERC721/ERC1155 centric applications. Polkadot Rollups users: deposit and withdrawal operations would be expected to dominate here. Note the operations of recording blocks would be done on the Blobs Chains, while interactive fraud proofs would be extremely rare by comparison. Coreplay smart contract usage, at a future time. We expect the first category to dominate. If AssetHub smart contract usage increases so as to approach this 50% limit, the gas price will increase significantly. This likely motivates EVM contract developers to migrate to a EVM contract chain and/or rethink their application to work asynchronously within CoreJam, another major Polkadot 2.0 technology.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Limit Smart Contract Weight allocation","id":"168","title":"Limit Smart Contract Weight allocation"},"169":{"body":"It is essential to make AssetHub assets interface well with EVM Smart Contracts. Polkadot parachains Astar and Moonbeam have a mapping between assetIDs and \"virtual\" EVM Contracts. Astar XCM Asset List Moonbeam XC-20 We propose that AssetHub support a systemic mapping following Astar: (a) Native Relay DOT + KSM - should be mapped to 0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF on AssetHub for Polkadot and AssetHub for Kusama respectively (b) Other Assethubs assets should map into an EVM address using a 0xffffffff prefix https://docs.astar.network/docs/learn/interoperability/xcm/integration/tools#xc20-address The usage of the above has been made code-complete by Astar: xc-asset-config assets-erc20 pallet-assets extensions Polkadot parachains Astar and Moonbeam adopted two very different approaches of how end users interact with EVM Contracts. We propose that AssetHub for Polkadot adopt the Astar solution, mirroring it as closely as possible.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Model AssetHub Assets inside EVM Smart Contracts based on Astar","id":"169","title":"Model AssetHub Assets inside EVM Smart Contracts based on Astar"},"17":{"body":"","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Performance, Ergonomics, and Compatibility","id":"17","title":"Performance, Ergonomics, and Compatibility"},"170":{"body":"A substantial motivation in this proposal is to increase demand for DOT via two key chains: AssetHub - from defi/NFT users, Polkadot Rollup users and AssetHub Smart Contract Developers Blobs - for Polkadot Rollups","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » New DOT Revenue Sources","id":"170","title":"New DOT Revenue Sources"},"171":{"body":"Enabling EVM Contracts on AssetHub will support DOT revenue from: defi/NFT users who use AssetHub directly rollup operators who utilize Blobs chain rollup users who buy DOT to utilize Polkadot Rollups","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » New Revenue from AssetHub EVM Contracts","id":"171","title":"New Revenue from AssetHub EVM Contracts"},"172":{"body":"Enabling ink! contracts will pave the way to a new class of AssetHub Smart Contract Developers. Given PolkaVM's proven reduced compile time and RISC architecture enabling register snapshots, it is natural to utilize these new technical capabilities on a flagship system chain. To the extent these capabilities are attractive to smart contract developers, this has the potential for bringing in new DOT revenue from a system chain.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » New Revenue for ink!/Coreplay Contracts","id":"172","title":"New Revenue for ink!/Coreplay Contracts"},"173":{"body":"Supporting EVM Contracts in AssetHub is seen by some as undercutting Polkadot's 1.0 parachain architecture, both special purpose appchains and smart contract developer platform parachains. We believe the lack of growth of parachains in the last 12-18 months, and the high potential of CorePlay motivates new options be pursued in system chains. Maintaining EVM Contracts on AssetHub may be seen as difficult and may require Substrate engineers to maintain EVM Pallets and manage the xcContracts. We believe this cost will be relatively small based on the proven deployment of Astar and Moonbeam. The cost will be justified compared to the potential upside of new DOT revenue from defi/NFT applications on AssetHub and the potential for utilizing Polkadot DA for Polkadot rollups.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Drawbacks and Tradeoffs","id":"173","title":"Drawbacks and Tradeoffs"},"174":{"body":"Testing the mapping between assetIDs and EVM Contracts thoroughly will be critical. Having a complete working OP Stack chain using AssetHub for Kusama (1000) and Blobs on Kusama (3338) would be highly desirable, but is unlikely to be required.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Testing, Security, and Privacy","id":"174","title":"Testing, Security, and Privacy"},"175":{"body":"","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Performance, Ergonomics, and Compatibility","id":"175","title":"Performance, Ergonomics, and Compatibility"},"176":{"body":"The weight limit of 50% is expected to be adequate to limit excess smart contract usage at this time. Storage bloat is expected to kept to a minimum with the nominal 0.01 Existential Deposit.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Performance","id":"176","title":"Performance"},"177":{"body":"Note that the existential deposit is not 0 DOT but being lowered from 0.1 DOT to 0.01 DOT, which may pose problems for some developers. Many developers routinely deploy their EVM contracts on many different EVM Chains in parallel. This non-zero ED may pose problems for some developers The 0.01 DOT (worth $0.075 USD) is unlikely to pose significant issue.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Ergonomics","id":"177","title":"Ergonomics"},"178":{"body":"It is believed that EVM pallet (as deployed on Moonbeam + Astar) is sufficiently compatible with Ethereum, and that the ED of 0.01 DOT pose negligible issues. The messaging architecture for rollups are not compatible with Polkadot XCM. It is not clear if leading rollup platforms (OP Stack, Arbitrum Orbit, Polygon zkEVM) could be made compatible with XCM.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Compatibility","id":"178","title":"Compatibility"},"179":{"body":"It is highly desirable to know the throughput of Polkadot DA with popular rollup architectures OP Stack and Arbitrum Orbit. This would enable CEXs and EVM L2 builders to choose Polkadot over Ethereum.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Unresolved Questions","id":"179","title":"Unresolved Questions"},"18":{"body":"The primary performance consideration stems from the potential for state bloat due to increased activity from lower deposit requirements. It's vital to monitor and manage this to avoid any negative impact on the chain's performance. Strategies for mitigating state bloat, including efficient data management and periodic reviews of storage requirements, will be essential.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Performance","id":"18","title":"Performance"},"180":{"body":"If accepted, this RFC could pave the way for CorePlay on Asset Hub for Polkadot/Kusama, a major component of Polkadot 2.0's smart contract future. The importance of precompiles should","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Future Directions and Related Material","id":"180","title":"Future Directions and Related Material"},"181":{"body":"(source) Table of Contents RFC-1: Agile Coretime Summary Motivation Present System Problems Requirements Stakeholders Explanation Overview Detail Specific functions of the Coretime-chain Notes on the Instantaneous Coretime Market Notes on Economics Notes on Types Rollout Performance, Ergonomics and Compatibility Testing, Security and Privacy Future Directions and Related Material Drawbacks, Alternatives and Unknowns Prior Art and References Start Date 30 June 2023 Description Agile periodic-sale-based model for assigning Coretime on the Polkadot Ubiquitous Computer. Authors Gavin Wood","breadcrumbs":"RFC-1: Agile Coretime » RFC-1: Agile Coretime","id":"181","title":"RFC-1: Agile Coretime"},"182":{"body":"This proposes a periodic, sale-based method for assigning Polkadot Coretime, the analogue of \"block space\" within the Polkadot Network. The method takes into account the need for long-term capital expenditure planning for teams building on Polkadot, yet also provides a means to allow Polkadot to capture long-term value in the resource which it sells. It supports the possibility of building rich and dynamic secondary markets to optimize resource allocation and largely avoids the need for parameterization.","breadcrumbs":"RFC-1: Agile Coretime » Summary","id":"182","title":"Summary"},"183":{"body":"","breadcrumbs":"RFC-1: Agile Coretime » Motivation","id":"183","title":"Motivation"},"184":{"body":"The Polkadot Ubiquitous Computer , or just Polkadot UC , represents the public service provided by the Polkadot Network. It is a trust-free, WebAssembly-based, multicore, internet-native omnipresent virtual machine which is highly resilient to interference and corruption. The present system of allocating the limited resources of the Polkadot Ubiquitous Computer is through a process known as parachain slot auctions . This is a parachain-centric paradigm whereby a single core is long-term allocated to a single parachain which itself implies a Substrate/Cumulus-based chain secured and connected via the Relay-chain. Slot auctions are on-chain candle auctions which proceed for several days and result in the core being assigned to the parachain for six months at a time up to 24 months in advance. Practically speaking, we only see two year periods being bid upon and leased. Funds behind the bids made in the slot auctions are merely locked, they are not consumed or paid and become unlocked and returned to the bidder on expiry of the lease period. A means of sharing the deposit trustlessly known as a crowdloan is available allowing token holders to contribute to the overall deposit of a chain without any counterparty risk.","breadcrumbs":"RFC-1: Agile Coretime » Present System","id":"184","title":"Present System"},"185":{"body":"The present system is based on a model of one-core-per-parachain. This is a legacy interpretation of the Polkadot platform and is not a reflection of its present capabilities. By restricting ownership and usage to this model, more dynamic and resource-efficient means of utilizing the Polkadot Ubiquitous Computer are lost. More specifically, it is impossible to lease out cores at anything less than six months, and apparently unrealistic to do so at anything less than two years. This removes the ability to dynamically manage the underlying resource, and generally experimentation, iteration and innovation suffer. It bakes into the platform an assumption of permanence for anything deployed into it and restricts the market's ability to find a more optimal allocation of the finite resource. There is no ability to determine capital requirements for hosting a parachain beyond two years from the point of its initial deployment onto Polkadot. While it would be unreasonable to have perfect and indefinite cost predictions for any real-world platform, not having any clarity whatsoever beyond \"market rates\" two years hence can be a very off-putting prospect for teams to buy into. However, quite possibly the most substantial problem is both a perceived and often real high barrier to entry of the Polkadot ecosystem. By forcing innovators to either raise seven-figure sums through investors or appeal to the wider token-holding community, Polkadot makes it difficult for a small band of innovators to deploy their technology into Polkadot. While not being actually permissioned, it is also far from the barrierless, permissionless ideal which an innovation platform such as Polkadot should be striving for.","breadcrumbs":"RFC-1: Agile Coretime » Problems","id":"185","title":"Problems"},"186":{"body":"The solution SHOULD provide an acceptable value-capture mechanism for the Polkadot network. The solution SHOULD allow parachains and other projects deployed on to the Polkadot UC to make long-term capital expenditure predictions for the cost of ongoing deployment. The solution SHOULD minimize the barriers to entry in the ecosystem. The solution SHOULD work well when the Polkadot UC has up to 1,000 cores. The solution SHOULD work when the number of cores which the Polkadot UC can support changes over time. The solution SHOULD facilitate the optimal allocation of work to cores of the Polkadot UC, including by facilitating the trade of regular core assignment at various intervals and for various spans. The solution SHOULD avoid creating additional dependencies on functionality which the Relay-chain need not strictly provide for the delivery of the Polkadot UC. Furthermore, the design SHOULD be implementable and deployable in a timely fashion; three months from the acceptance of this RFC should not be unreasonable.","breadcrumbs":"RFC-1: Agile Coretime » Requirements","id":"186","title":"Requirements"},"187":{"body":"Primary stakeholder sets are: Protocol researchers and developers, largely represented by the Polkadot Fellowship and Parity Technologies' Engineering division. Polkadot Parachain teams both present and future, and their users. Polkadot DOT token holders. Socialization: The essensials of this proposal were presented at Polkadot Decoded 2023 Copenhagen on the Main Stage. A small amount of socialization at the Parachain Summit preceeded it and some substantial discussion followed it. Parity Ecosystem team is currently soliciting views from ecosystem teams who would be key stakeholders.","breadcrumbs":"RFC-1: Agile Coretime » Stakeholders","id":"187","title":"Stakeholders"},"188":{"body":"","breadcrumbs":"RFC-1: Agile Coretime » Explanation","id":"188","title":"Explanation"},"189":{"body":"Upon implementation of this proposal, the parachain-centric slot auctions and associated crowdloans cease. Instead, Coretime on the Polkadot UC is sold by the Polkadot System in two separate formats: Bulk Coretime and Instantaneous Coretime . When a Polkadot Core is utilized, we say it is dedicated to a Task rather than a \"parachain\". The Task to which a Core is dedicated may change at every Relay-chain block and while one predominant type of Task is to secure a Cumulus-based blockchain (i.e. a parachain), other types of Tasks are envisioned. Bulk Coretime is sold periodically on a specialised system chain known as the Coretime-chain and allocated in advance of its usage, whereas Instantaneous Coretime is sold on the Relay-chain immediately prior to usage on a block-by-block basis. This proposal does not fix what should be done with revenue from sales of Coretime and leaves it for a further RFC process. Owners of Bulk Coretime are tracked on the Coretime-chain and the ownership status and properties of the owned Coretime are exposed over XCM as a non-fungible asset. At the request of the owner, the Coretime-chain allows a single Bulk Coretime asset, known as a Region , to be used in various ways including transferal to another owner, allocated to a particular task (e.g. a parachain) or placed in the Instantaneous Coretime Pool. Regions can also be split out, either into non-overlapping sub-spans or exactly-overlapping spans with less regularity. The Coretime-Chain periodically instructs the Relay-chain to assign its cores to alternative tasks as and when Core allocations change due to new Regions coming into effect. Renewal and Migration There is a renewal system which allows a Bulk Coretime assignment of a single core to be renewed unchanged with a known price increase from month to month. Renewals are processed in a period prior to regular purchases, effectively giving them precedence over a fixed number of cores available. Renewals are only enabled when a core's assignment does not include an Instantaneous Coretime allocation and has not been split into shorter segments. Thus, renewals are designed to ensure only that committed parachains get some guarantees about price for predicting future costs. This price-capped renewal system only allows cores to be reused for their same tasks from month to month. In any other context, Bulk Coretime would need to be purchased regularly. As a migration mechanism, pre-existing leases (from the legacy lease/slots/crowdloan framework) are initialized into the Coretime-chain and cores assigned to them prior to Bulk Coretime sales. In the sale where the lease expires, the system offers a renewal, as above, to allow a priority sale of Bulk Coretime and ensure that the Parachain suffers no downtime when transitioning from the legacy framework. Instantaneous Coretime Processing of Instantaneous Coretime happens in part on the Polkadot Relay-chain. Credit is purchased on the Coretime-chain for regular DOT tokens, and this results in a DOT-denominated Instantaneous Coretime Credit account on the Relay-chain being credited for the same amount. Though the Instantaneous Coretime Credit account records a balance for an account identifier (very likely controlled by a collator), it is non-transferable and non-refundable . It can only be consumed in order to purchase some Instantaneous Coretime with immediate availability. The Relay-chain reports this usage back to the Coretime-chain in order to allow it to reward the providers of the underlying Coretime, either the Polkadot System or owners of Bulk Coretime who contributed to the Instantaneous Coretime Pool. Specifically the Relay-chain is expected to be responsible for: holding non-transferable, non-refundable DOT-denominated Instantaneous Coretime Credit balance information. setting and adjusting the price of Instantaneous Coretime based on usage. allowing collators to consume their Instantaneous Coretime Credit at the current pricing in exchange for the ability to schedule one PoV for near-immediate usage. ensuring the Coretime-Chain has timely accounting information on Instantaneous Coretime Sales revenue. Coretime-chain The Coretime-chain is a new system parachain. It has the responsibility of providing the Relay-chain via UMP with information of: The number of cores which should be made available. Which tasks should be running on which cores and in what ratios. Accounting information for Instantaneous Coretime Credit. It also expects information from the Relay-chain via DMP: The number of cores available to be scheduled. Account information on Instantaneous Coretime Sales. The specific interface is properly described in RFC-5.","breadcrumbs":"RFC-1: Agile Coretime » Overview","id":"189","title":"Overview"},"19":{"body":"The proposed change aims to enhance the user experience for artists, traders and utilizers of Kusama and Polkadot asset hub. Making Polkadot and Kusama more accessible and user-friendly.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Ergonomics","id":"19","title":"Ergonomics"},"190":{"body":"Parameters This proposal includes a number of parameters which need not necessarily be fixed. Their usage is explained below, but their values are suggested or specified in the later section Parameter Values . Reservations and Leases The Coretime-chain includes some governance-set reservations of Coretime; these cover every System-chain. Additionally, governance is expected to initialize details of the pre-existing leased chains. Regions A Region is an assignable period of Coretime with a known regularity. All Regions are associated with a unique Core Index , to identify which core the assignment of which ownership of the Region controls. All Regions are also associated with a Core Mask , an 80-bit bitmap, to denote the regularity at which it may be scheduled on the core. If all bits are set in the Core Mask value, it is said to be Complete . 80 is selected since this results in the size of the datatype used to identify any Region of Polkadot Coretime to be a very convenient 128-bit. Additionally, if TIMESLICE (the number of Relay-chain blocks in a Timeslice) is 80, then a single bit in the Core Mask bitmap represents exactly one Core for one Relay-chain block in one Timeslice. All Regions have a span. Region spans are quantized into periods of TIMESLICE blocks; BULK_PERIOD divides into TIMESLICE a whole number of times. The Timeslice type is a u32 which can be multiplied by TIMESLICE to give a BlockNumber value representing the same quantity in terms of Relay-chain blocks. Regions can be tasked to a TaskId (aka ParaId) or pooled into the Instantaneous Coretime Pool. This process can be Provisional or Final . If done only provisionally or not at all then they are fresh and have an Owner which is able to manipulate them further including reassignment. Once Final , then all ownership information is discarded and they cannot be manipulated further. Renewal is not possible when only provisionally tasked/pooled. Bulk Sales A sale of Bulk Coretime occurs on the Coretime-chain every BULK_PERIOD blocks. In every sale, a BULK_LIMIT of individual Regions are offered for sale. Each Region offered for sale has a different Core Index, ensuring that they each represent an independently allocatable resource on the Polkadot UC. The Regions offered for sale have the same span: they last exactly BULK_PERIOD blocks, and begin immediately following the span of the previous Sale's Regions. The Regions offered for sale also have the complete, non-interlaced, Core Mask. The Sale Period ends immediately as soon as span of the Coretime Regions that are being sold begins. At this point, the next Sale Price is set according to the previous Sale Price together with the number of Regions sold compared to the desired and maximum amount of Regions to be sold. See Price Setting for additional detail on this point. Following the end of the previous Sale Period, there is an Interlude Period lasting INTERLUDE_PERIOD of blocks. After this period is elapsed, regular purchasing begins with the Purchasing Period . This is designed to give at least two weeks worth of time for the purchased regions to be partitioned, interlaced, traded and allocated. The Interlude The Interlude period is a period prior to Regular Purchasing where renewals are allowed to happen. This has the effect of ensuring existing long-term tasks/parachains have a chance to secure their Bulk Coretime for a well-known price prior to general sales. Regular Purchasing Any account may purchase Regions of Bulk Coretime if they have the appropriate funds in place during the Purchasing Period, which is from INTERLUDE_PERIOD blocks after the end of the previous sale until the beginning of the Region of the Bulk Coretime which is for sale as long as there are Regions of Bulk Coretime left for sale (i.e. no more than BULK_LIMIT have already been sold in the Bulk Coretime Sale). The Purchasing Period is thus roughly BULK_PERIOD - INTERLUDE_PERIOD blocks in length. The Sale Price varies during an initial portion of the Purchasing Period called the Leadin Period and then stays stable for the remainder. This initial portion is LEADIN_PERIOD blocks in duration. During the Leadin Period the price decreases towards the Sale Price, which it lands at by the end of the Leadin Period. The actual curve by which the price starts and descends to the Sale Price is outside the scope of this RFC, though a basic suggestion is provided in the Price Setting Notes, below. Renewals At any time when there are remaining Regions of Bulk Coretime to be sold, including during the Interlude Period , then certain Bulk Coretime assignmnents may be Renewed . This is similar to a purchase in that funds must be paid and it consumes one of the Regions of Bulk Coretime which would otherwise be placed for purchase. However there are two key differences. Firstly, the price paid is the minimum of RENEWAL_PRICE_CAP more than what the purchase/renewal price was in the previous renewal and the current (or initial, if yet to begin) regular Sale Price. Secondly, the purchased Region comes preassigned with exactly the same workload as before. It cannot be traded, repartitioned, interlaced or exchanged. As such unlike regular purchasing the Region never has an owner. Renewal is only possible for either cores which have been assigned as a result of a previous renewal, which are migrating from legacy slot leases, or which fill their Bulk Coretime with an unsegmented, fully and finally assigned workload which does not include placement in the Instantaneous Coretime Pool. The renewed workload will be the same as this initial workload. Manipulation Regions may be manipulated in various ways by its owner: Transferred in ownership. Partitioned into quantized, non-overlapping segments of Bulk Coretime with the same ownership. Interlaced into multiple Regions over the same period whose eventual assignments take turns to be scheduled. Assigned to a single, specific task (identified by TaskId aka ParaId). This may be either provisional or final . Pooled into the Instantaneous Coretime Pool, in return for a pro-rata amount of the revenue from the Instantaneous Coretime Sales over its period. Enactment","breadcrumbs":"RFC-1: Agile Coretime » Detail","id":"190","title":"Detail"},"191":{"body":"Several functions of the Coretime-chain SHALL be exposed through dispatchables and/or a nonfungible trait implementation integrated into XCM: 1. transfer Regions may have their ownership transferred. A transfer(region: RegionId, new_owner: AccountId) dispatchable shall have the effect of altering the current owner of the Region identified by region from the signed origin to new_owner. An implementation of the nonfungible trait SHOULD include equivalent functionality. RegionId SHOULD be used for the AssetInstance value. 2. partition Regions may be split apart into two non-overlapping interior Regions of the same Core Mask which together concatenate to the original Region. A partition(region: RegionId, pivot: Timeslice) dispatchable SHALL have the effect of removing the Region identified by region and adding two new Regions of the same owner and Core Mask. One new Region will begin at the same point of the old Region but end at pivot timeslices into the Region, whereas the other will begin at this point and end at the end point of the original Region. Also: owner field of region must the equal to the Signed origin. pivot must equal neither the begin nor end fields of the region. 3. interlace Regions may be decomposed into two Regions of the same span whose eventual assignments take turns on the core by virtue of having complementary Core Masks. An interlace(region: RegionId, mask: CoreMask) dispatchable shall have the effect of removing the Region identified by region and creating two new Regions. The new Regions will each have the same span and owner of the original Region, but one Region will have a Core Mask equal to mask and the other will have Core Mask equal to the XOR of mask and the Core Mask of the original Region. Also: owner field of region must the equal to the Signed origin. mask must have some bits set AND must not equal the Core Mask of the old Region AND must only have bits set which are also set in the old Region's' Core Mask. 4. assign Regions may be assigned to a core. A assign(region: RegionId, target: TaskId, finality: Finality) dispatchable shall have the effect of placing an item in the workplan corresponding to the region's properties and assigned to the target task. If the region's end has already passed (taking into account any advance notice requirements) then this operation is a no-op. If the region's begining has already passed, then it is effectively altered to become the next schedulable timeslice. finality may have the value of either Final or Provisional. If Final, then the operation is free, the region record is removed entirely from storage and renewal may be possible: if the Region's span is the entire BULK_PERIOD, then the Coretime-chain records in storage that the allocation happened during this period in order to facilitate the possibility for a renewal. (Renewal only becomes possible when the full Core Mask of a core is finally assigned for the full BULK_PERIOD.) Also: owner field of region must the equal to the Signed origin. 5. pool Regions may be consumed in exchange for a pro rata portion of the Instantaneous Coretime Sales Revenue from its period and regularity. A pool(region: RegionId, beneficiary: AccountId, finality: Finality) dispatchable shall have the effect of placing an item in the workplan corresponding to the region's properties and assigned to the Instantaneous Coretime Pool. The details of the region will be recorded in order to allow for a pro rata share of the Instantaneous Coretime Sales Revenue at the time of the Region relative to any other providers in the Pool. If the region's end has already passed (taking into account any advance notice requirements) then this operation is a no-op. If the region's begining has already passed, then it is effectively altered to become the next schedulable timeslice. finality may have the value of either Final or Provisional. If Final, then the operation is free and the region record is removed entirely from storage. Also: owner field of region must the equal to the Signed origin. 6. Purchases A dispatchable purchase(price_limit: Balance) shall be provided. Any account may call purchase to purchase Bulk Coretime at the maximum price of price_limit. This may be called successfully only: during the regular Purchasing Period; when the caller is a Signed origin and their account balance is reducible by the current sale price; when the current sale price is no greater than price_limit; and when the number of cores already sold is less than BULK_LIMIT. If successful, the caller's account balance is reduced by the current sale price and a new Region item for the following Bulk Coretime span is issued with the owner equal to the caller's account. 7. Renewals A dispatchable renew(core: CoreIndex) shall be provided. Any account may call renew to purchase Bulk Coretime and renew an active allocation for the given core. This may be called during the Interlude Period as well as the regular Purchasing Period and has the same effect as purchase followed by assign, except that: The price of the sale is the Renewal Price (see next). The Region is allocated exactly the given core is currently allocated for the present Region. Renewal is only valid where a Region's span is assigned to Tasks (not placed in the Instantaneous Coretime Pool) for the entire unsplit BULK_PERIOD over all of the Core Mask and with Finality. There are thus three possibilities of a renewal being allowed: Purchased unsplit Coretime with final assignment to tasks over the full Core Mask. Renewed Coretime. A legacy lease which is ending. Renewal Price The Renewal Price is the minimum of the current regular Sale Price (or the initial Sale Price if in the Interlude Period) and: If the workload being renewed came to be through the Purchase and Assignment of Bulk Coretime, then the price paid during that Purchase operation. If the workload being renewed was previously renewed, then the price paid during this previous Renewal operation plus RENEWAL_PRICE_CAP. If the workload being renewed is a migation from a legacy slot auction lease, then the nominal price for a Regular Purchase (outside of the Lead-in Period) of the Sale during which the legacy lease expires. 8. Instantaneous Coretime Credits A dispatchable purchase_credit(amount: Balance, beneficiary: RelayChainAccountId) shall be provided. Any account with at least amount spendable funds may call this. This increases the Instantaneous Coretime Credit balance on the Relay-chain of the beneficiary by the given amount. This Credit is consumable on the Relay-chain as part of the Task scheduling system and its specifics are out of the scope of this proposal. When consumed, revenue is recorded and provided to the Coretime-chain for proper distribution. The API for doing this is specified in RFC-5.","breadcrumbs":"RFC-1: Agile Coretime » Specific functions of the Coretime-chain","id":"191","title":"Specific functions of the Coretime-chain"},"192":{"body":"For an efficient market to form around the provision of Bulk-purchased Cores into the pool of cores available for Instantaneous Coretime purchase, it is crucial to ensure that price changes for the purchase of Instantaneous Coretime are reflected well in the revenues of private Coretime providers during the same period. In order to ensure this, then it is crucial that Instantaneous Coretime, once purchased, cannot be held indefinitely prior to eventual use since, if this were the case, a nefarious collator could purchase Coretime when cheap and utilize it some time later when expensive and deprive private Coretime providers of their revenue. It must therefore be assumed that Instantaneous Coretime, once purchased, has a definite and short \"shelf-life\", after which it becomes unusable. This incentivizes collators to avoid purchasing Coretime unless they expect to utilize it imminently and thus helps create an efficient market-feedback mechanism whereby a higher price will actually result in material revenues for private Coretime providers who contribute to the pool of Cores available to service Instantaneous Coretime purchases.","breadcrumbs":"RFC-1: Agile Coretime » Notes on the Instantaneous Coretime Market","id":"192","title":"Notes on the Instantaneous Coretime Market"},"193":{"body":"The specific pricing mechanisms are out of scope for the present proposal. Proposals on economics should be properly described and discussed in another RFC. However, for the sake of completeness, I provide some basic illustration of how price setting could potentially work. Bulk Price Progression The present proposal assumes the existence of a price-setting mechanism which takes into account several parameters: OLD_PRICE: The price of the previous sale. BULK_TARGET: the target number of cores to be purchased as Bulk Coretime Regions or renewed during the previous sale. BULK_LIMIT: the maximum number of cores which could have been purchased/renewed during the previous sale. CORES_SOLD: the actual number of cores purchased/renewed in the previous sale. SELLOUT_PRICE: the price at which the most recent Bulk Coretime was purchased ( not renewed) prior to selling more cores than BULK_TARGET (or immediately after, if none were purchased before). This may not have a value if no Bulk Coretime was purchased. In general we would expect the price to increase the closer CORES_SOLD gets to BULK_LIMIT and to decrease the closer it gets to zero. If it is exactly equal to BULK_TARGET, then we would expect the price to remain the same. In the edge case that no cores were purchased yet more cores were sold (through renewals) than the target, then we would also avoid altering the price. A simple example of this would be the formula: IF SELLOUT_PRICE == NULL AND CORES_SOLD > BULK_TARGET THEN RETURN OLD_PRICE\nEND IF\nEFFECTIVE_PRICE := IF CORES_SOLD > BULK_TARGET THEN SELLOUT_PRICE\nELSE OLD_PRICE\nEND IF\nNEW_PRICE := IF CORES_SOLD < BULK_TARGET THEN EFFECTIVE_PRICE * MAX(CORES_SOLD, 1) / BULK_TARGET\nELSE EFFECTIVE_PRICE + EFFECTIVE_PRICE * (CORES_SOLD - BULK_TARGET) / (BULK_LIMIT - BULK_TARGET)\nEND IF This exists only as a trivial example to demonstrate a basic solution exists, and should not be intended as a concrete proposal. Intra-Leadin Price-decrease During the Leadin Period of a sale, the effective price starts higher than the Sale Price and falls to end at the Sale Price at the end of the Leadin Period. The price can thus be defined as a simple factor above one on which the Sale Price is multiplied. A function which returns this factor would accept a factor between zero and one specifying the portion of the Leadin Period which has passed. Thus we assume SALE_PRICE, then we can define PRICE as: PRICE := SALE_PRICE * FACTOR((NOW - LEADIN_BEGIN) / LEADIN_PERIOD) We can define a very simple progression where the price decreases monotonically from double the Sale Price at the beginning of the Leadin Period. FACTOR(T) := 2 - T Parameter Values Parameters are either suggested or specified . If suggested , it is non-binding and the proposal should not be judged on the value since other RFCs and/or the governance mechanism of Polkadot is expected to specify/maintain it. If specified , then the proposal should be judged on the merit of the value as-is. Name Value BULK_PERIOD 28 * DAYS specified INTERLUDE_PERIOD 7 * DAYS specified LEADIN_PERIOD 7 * DAYS specified TIMESLICE 8 * MINUTES specified BULK_TARGET 30 suggested BULK_LIMIT 45 suggested RENEWAL_PRICE_CAP Perbill::from_percent(2) suggested Instantaneous Price Progression This proposal assumes the existence of a Relay-chain-based price-setting mechanism for the Instantaneous Coretime Market which alters from block to block, taking into account several parameters: the last price, the size of the Instantaneous Coretime Pool (in terms of cores per Relay-chain block) and the amount of Instantaneous Coretime waiting for processing (in terms of Core-blocks queued). The ideal situation is to have the size of the Instantaneous Coretime Pool be equal to some factor of the Instantaneous Coretime waiting. This allows all Instantaneous Coretime sales to be processed with some limited latency while giving limited flexibility over ordering to the Relay-chain apparatus which is needed for efficient operation. If we set a factor of three, and thus aim to retain a queue of Instantaneous Coretime Sales which can be processed within three Relay-chain blocks, then we would increase the price if the queue goes above three times the amount of cores available, and decrease if it goes under. Let us assume the values OLD_PRICE, FACTOR, QUEUE_SIZE and POOL_SIZE. A simple definition of the NEW_PRICE would be thus: NEW_PRICE := IF QUEUE_SIZE < POOL_SIZE * FACTOR THEN OLD_PRICE * 0.95\nELSE OLD_PRICE / 0.95\nEND IF This exists only as a trivial example to demonstrate a basic solution exists, and should not be intended as a concrete proposal.","breadcrumbs":"RFC-1: Agile Coretime » Notes on Economics","id":"193","title":"Notes on Economics"},"194":{"body":"This exists only as a short illustration of a potential technical implementation and should not be treated as anything more. Regions This data schema achieves a number of goals: Coretime can be individually traded at a level of a single usage of a single core. Coretime Regions, of arbitrary span and up to 1/80th interlacing can be exposed as NFTs and exchanged. Any Coretime Region can be contributed to the Instantaneous Coretime Pool. Unlimited number of individual Coretime contributors to the Instantaneous Coretime Pool. (Effectively limited only in number of cores and interlacing level; with current values this would allow 80,000 individual payees per timeslice). All keys are self-describing. Workload to communicate core (re-)assignments is well-bounded and low in weight. All mandatory bookkeeping workload is well-bounded in weight. type Timeslice = u32; // 80 block amounts.\ntype CoreIndex = u16;\ntype CoreMask = [u8; 10]; // 80-bit bitmap. // 128-bit (16 bytes)\nstruct RegionId { begin: Timeslice, core: CoreIndex, mask: CoreMask,\n}\n// 296-bit (37 bytes)\nstruct RegionRecord { end: Timeslice, owner: AccountId,\n} map Regions = Map; // 40-bit (5 bytes). Could be 32-bit with a more specialised type.\nenum CoreTask { Off, Assigned { target: TaskId }, InstaPool,\n}\n// 120-bit (15 bytes). Could be 14 bytes with a specialised 32-bit `CoreTask`.\nstruct ScheduleItem { mask: CoreMask, // 80 bit task: CoreTask, // 40 bit\n} /// The work we plan on having each core do at a particular time in the future.\ntype Workplan = Map<(Timeslice, CoreIndex), BoundedVec>;\n/// The current workload of each core. This gets updated with workplan as timeslices pass.\ntype Workload = Map>; enum Contributor { System, Private(AccountId),\n} struct ContributionRecord { begin: Timeslice, end: Timeslice, core: CoreIndex, mask: CoreMask, payee: Contributor,\n}\ntype InstaPoolContribution = Map; type SignedTotalMaskBits = u32;\ntype InstaPoolIo = Map; type PoolSize = Value; /// Counter for the total CoreMask which could be dedicated to a pool. `u32` so we don't ever get\n/// an overflow.\ntype TotalMaskBits = u32;\nstruct InstaPoolHistoryRecord { total_contributions: TotalMaskBits, maybe_payout: Option,\n}\n/// Total InstaPool rewards for each Timeslice and the number of core Mask which contributed.\ntype InstaPoolHistory = Map; CoreMask tracks unique \"parts\" of a single core. It is used with interlacing in order to give a unique identifier to each component of any possible interlacing configuration of a core, allowing for simple self-describing keys for all core ownership and allocation information. It also allows for each core's workload to be tracked and updated progressively, keeping ongoing compute costs well-bounded and low. Regions are issued into the Regions map and can be transferred, partitioned and interlaced as the owner desires. Regions can only be tasked if they begin after the current scheduling deadline (if they have missed this, then the region can be auto-trimmed until it is). Once tasked, they are removed from there and a record is placed in Workplan. In addition, if they are contributed to the Instantaneous Coretime Pool, then an entry is placing in InstaPoolContribution and InstaPoolIo. Each timeslice, InstaPoolIo is used to update the current value of PoolSize. A new entry in InstaPoolHistory is inserted, with the total_contributions field of InstaPoolHistoryRecord being informed by the PoolSize value. Each core's has its Workload mutated according to its Workplan for the upcoming timeslice. When Instantaneous Coretime Market Revenues are reported for a particular timeslice from the Relay-chain, this information gets placed in the maybe_payout field of the relevant record of InstaPoolHistory. Payments can be requested made for any records in InstaPoolContribution whose begin is the key for a value in InstaPoolHistory whose maybe_payout is Some. In this case, the total_contributions is reduced by the ContributionRecord's mask and a pro rata amount paid. The ContributionRecord is mutated by incrementing begin, or removed if begin becomes equal to end. Example: // Simple example with a `u16` `CoreMask` and bulk sold in 100 timeslices.\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// First split @ 50\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_1111_1111u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Share half of first 50 blocks\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Sell half of them to Bob\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Bob };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Bob splits first 10 and assigns them to himself.\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1111_1111u16 } => { end: 110u32, owner: Bob };\n{ core: 0u16, begin: 110, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Bob };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Bob shares first 10 3 ways and sells smaller shares to Charlie and Dave\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1100_0000u16 } => { end: 110u32, owner: Charlie };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_0011_0000u16 } => { end: 110u32, owner: Dave };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_0000_1111u16 } => { end: 110u32, owner: Bob };\n{ core: 0u16, begin: 110, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Bob };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Bob assigns to his para B, Charlie and Dave assign to their paras C and D; Alice assigns first 50 to A\nRegions:\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\nWorkplan:\n(100, 0) => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1100_0000u16, task: Assigned(C) }, { mask: 0b0000_0000_0011_0000u16, task: Assigned(D) }, { mask: 0b0000_0000_0000_1111u16, task: Assigned(B) },\n]\n(110, 0) => vec![{ mask: 0b0000_0000_1111_1111u16, task: Assigned(B) }]\n// Alice assigns her remaining 50 timeslices to the InstaPool paying herself:\nRegions: (empty)\nWorkplan:\n(100, 0) => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1100_0000u16, task: Assigned(C) }, { mask: 0b0000_0000_0011_0000u16, task: Assigned(D) }, { mask: 0b0000_0000_0000_1111u16, task: Assigned(B) },\n]\n(110, 0) => vec![{ mask: 0b0000_0000_1111_1111u16, task: Assigned(B) }]\n(150, 0) => vec![{ mask: 0b1111_1111_1111_1111u16, task: InstaPool }]\nInstaPoolContribution:\n{ begin: 150, end: 200, core: 0, mask: 0b1111_1111_1111_1111u16, payee: Alice }\nInstaPoolIo:\n150 => 16\n200 => -16\n// Actual notifications to relay chain.\n// Assumes:\n// - Timeslice is 10 blocks.\n// - Timeslice 0 begins at block #1000.\n// - Relay needs 10 blocks notice of change.\n//\nWorkload: 0 => vec![]\nPoolSize: 0 // Block 990:\nRelay <= assign_core(core: 0u16, begin: 1000, assignment: vec![(A, 8), (C, 2), (D, 2), (B, 4)])\nWorkload: 0 => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1100_0000u16, task: Assigned(C) }, { mask: 0b0000_0000_0011_0000u16, task: Assigned(D) }, { mask: 0b0000_0000_0000_1111u16, task: Assigned(B) },\n]\nPoolSize: 0 // Block 1090:\nRelay <= assign_core(core: 0u16, begin: 1100, assignment: vec![(A, 8), (B, 8)])\nWorkload: 0 => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1111_1111u16, task: Assigned(B) },\n]\nPoolSize: 0 // Block 1490:\nRelay <= assign_core(core: 0u16, begin: 1500, assignment: vec![(Pool, 16)])\nWorkload: 0 => vec![ { mask: 0b1111_1111_1111_1111u16, task: InstaPool },\n]\nPoolSize: 16\nInstaPoolIo:\n200 => -16\nInstaPoolHistory:\n150 => { total_contributions: 16, maybe_payout: None } // Sometime after block 1500:\nInstaPoolHistory:\n150 => { total_contributions: 16, maybe_payout: Some(P) } // Sometime after block 1990:\nInstaPoolIo: (empty)\nPoolSize: 0\nInstaPoolHistory:\n150 => { total_contributions: 16, maybe_payout: Some(P0) }\n151 => { total_contributions: 16, maybe_payout: Some(P1) }\n152 => { total_contributions: 16, maybe_payout: Some(P2) }\n...\n199 => { total_contributions: 16, maybe_payout: Some(P49) } // Sometime later still Alice calls for a payout\nInstaPoolContribution: (empty)\nInstaPoolHistory: (empty)\n// Alice gets rewarded P0 + P1 + ... P49.","breadcrumbs":"RFC-1: Agile Coretime » Notes on Types","id":"194","title":"Notes on Types"},"195":{"body":"Rollout of this proposal comes in several phases: Finalise the specifics of implementation; this may be done through a design document or through a well-documented prototype implementation. Implement the design, including all associated aspects such as unit tests, benchmarks and any support software needed. If any new parachain is required, launch of this. Formal audit of the implementation and any manual testing. Announcement to the various stakeholders of the imminent changes. Software integration and release. Governance upgrade proposal(s). Monitoring of the upgrade process.","breadcrumbs":"RFC-1: Agile Coretime » Rollout","id":"195","title":"Rollout"},"196":{"body":"No specific considerations. Parachains already deployed into the Polkadot UC must have a clear plan of action to migrate to an agile Coretime market. While this proposal does not introduce documentable features per se, adequate documentation must be provided to potential purchasers of Polkadot Coretime. This SHOULD include any alterations to the Polkadot-SDK software collection.","breadcrumbs":"RFC-1: Agile Coretime » Performance, Ergonomics and Compatibility","id":"196","title":"Performance, Ergonomics and Compatibility"},"197":{"body":"Regular testing through unit tests, integration tests, manual testnet tests, zombie-net tests and fuzzing SHOULD be conducted. A regular security review SHOULD be conducted prior to deployment through a review by the Web3 Foundation economic research group. Any final implementation MUST pass a professional external security audit. The proposal introduces no new privacy concerns.","breadcrumbs":"RFC-1: Agile Coretime » Testing, Security and Privacy","id":"197","title":"Testing, Security and Privacy"},"198":{"body":"RFC-3 proposes a means of implementing the high-level allocations within the Relay-chain. RFC-5 proposes the API for interacting with Relay-chain. Additional work should specify the interface for the instantaneous market revenue so that the Coretime-chain can ensure Bulk Coretime placed in the instantaneous market is properly compensated.","breadcrumbs":"RFC-1: Agile Coretime » Future Directions and Related Material","id":"198","title":"Future Directions and Related Material"},"199":{"body":"Unknowns include the economic and resource parameterisations: The initial price of Bulk Coretime. The price-change algorithm between Bulk Coretime sales. The price increase per Bulk Coretime period for renewals. The price decrease graph in the Leadin period for Bulk Coretime sales. The initial price of Instantaneous Coretime. The price-change algorithm for Instantaneous Coretime sales. The percentage of cores to be sold as Bulk Coretime. The fate of revenue collected.","breadcrumbs":"RFC-1: Agile Coretime » Drawbacks, Alternatives and Unknowns","id":"199","title":"Drawbacks, Alternatives and Unknowns"},"2":{"body":"This RFC proposes changing the current deposit requirements on the Polkadot and Kusama Asset Hub for creating NFT collection, minting an individual NFT, and lowering it's coresponding metadata and attribute deposit. The objective is to lower the barrier to entry for NFT creators, fostering a more inclusive and vibrant ecosystem while maintaining network integrity and preventing spam.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Summary","id":"2","title":"Summary"},"20":{"body":"The change does not impact compatibility as redeposit function is already implemented.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Compatibility","id":"20","title":"Compatibility"},"200":{"body":"Robert Habermeier initially wrote on the subject of Polkadot blockspace-centric in the article Polkadot Blockspace over Blockchains . While not going into details, the article served as an early reframing piece for moving beyond one-slot-per-chain models and building out secondary market infrastructure for resource allocation.","breadcrumbs":"RFC-1: Agile Coretime » Prior Art and References","id":"200","title":"Prior Art and References"},"201":{"body":"(source) Table of Contents RFC-5: Coretime Interface Summary Motivation Requirements Stakeholders Explanation UMP Message Types DMP Message Types Realistic Limits of the Usage Performance, Ergonomics and Compatibility Testing, Security and Privacy Future Directions and Related Material Drawbacks, Alternatives and Unknowns Prior Art and References Start Date 06 July 2023 Description Interface for manipulating the usage of cores on the Polkadot Ubiquitous Computer. Authors Gavin Wood, Robert Habermeier","breadcrumbs":"RFC-5: Coretime Interface » RFC-5: Coretime Interface","id":"201","title":"RFC-5: Coretime Interface"},"202":{"body":"In the Agile Coretime model of the Polkadot Ubiquitous Computer, as proposed in RFC-1 and RFC-3, it is necessary for the allocating parachain (envisioned to be one or more pallets on a specialised Brokerage System Chain) to communicate the core assignments to the Relay-chain, which is responsible for ensuring those assignments are properly enacted. This is a proposal for the interface which will exist around the Relay-chain in order to communicate this information and instructions.","breadcrumbs":"RFC-5: Coretime Interface » Summary","id":"202","title":"Summary"},"203":{"body":"The background motivation for this interface is splitting out coretime allocation functions and secondary markets from the Relay-chain onto System parachains. A well-understood and general interface is necessary for ensuring the Relay-chain receives coretime allocation instructions from one or more System chains without introducing dependencies on the implementation details of either side.","breadcrumbs":"RFC-5: Coretime Interface » Motivation","id":"203","title":"Motivation"},"204":{"body":"The interface MUST allow the Relay-chain to be scheduled on a low-latency basis. Individual cores MUST be schedulable, both in full to a single task (a ParaId or the Instantaneous Coretime Pool) or to many unique tasks in differing ratios. Typical usage of the interface SHOULD NOT overload the VMP message system. The interface MUST allow for the allocating chain to be notified of all accounting information relevant for making accurate rewards for contributing to the Instantaneous Coretime Pool. The interface MUST allow for Instantaneous Coretime Market Credits to be communicated. The interface MUST allow for the allocating chain to instruct changes to the number of cores which it is able to allocate. The interface MUST allow for the allocating chain to be notified of changes to the number of cores which are able to be allocated by the allocating chain.","breadcrumbs":"RFC-5: Coretime Interface » Requirements","id":"204","title":"Requirements"},"205":{"body":"Primary stakeholder sets are: Developers of the Relay-chain core-management logic. Developers of the Brokerage System Chain and its pallets. Socialization: This content of this RFC was discussed in the Polkdot Fellows channel.","breadcrumbs":"RFC-5: Coretime Interface » Stakeholders","id":"205","title":"Stakeholders"},"206":{"body":"The interface has two sections: The messages which the Relay-chain is able to receive from the allocating parachain (the UMP message types ), and messages which the Relay-chain is able to send to the allocating parachain (the DMP message types ). These messages are expected to be able to be implemented in a well-known pallet and called with the XCM Transact instruction. Future work may include these messages being introduced into the XCM standard.","breadcrumbs":"RFC-5: Coretime Interface » Explanation","id":"206","title":"Explanation"},"207":{"body":"request_core_count Prototype: fn request_core_count( count: u16,\n) Requests the Relay-chain to alter the number of schedulable cores to count. Under normal operation, the Relay-chain SHOULD send a notify_core_count(count) message back. request_revenue_info_at Prototype: fn request_revenue_at( when: BlockNumber,\n) Requests that the Relay-chain send a notify_revenue message back at or soon after Relay-chain block number when whose until parameter is equal to when. The period in to the past which when is allowed to be may be limited; if so the limit should be understood on a channel outside of this proposal. In the case that the request cannot be serviced because when is too old a block then a notify_revenue message must still be returned, but its revenue field may be None. credit_account Prototype: fn credit_account( who: AccountId, amount: Balance,\n) Instructs the Relay-chain to add the amount of DOT to the Instantaneous Coretime Market Credit account of who. It is expected that Instantaneous Coretime Market Credit on the Relay-chain is NOT transferrable and only redeemable when used to assign cores in the Instantaneous Coretime Pool. assign_core Prototype: type PartsOf57600 = u16;\nenum CoreAssignment { InstantaneousPool, Task(ParaId),\n}\nfn assign_core( core: CoreIndex, begin: BlockNumber, assignment: Vec<(CoreAssignment, PartsOf57600)>, end_hint: Option,\n) Requirements: assert!(core < core_count);\nassert!(targets.iter().map(|x| x.0).is_sorted());\nassert_eq!(targets.iter().map(|x| x.0).unique().count(), targets.len());\nassert_eq!(targets.iter().map(|x| x.1).sum(), 57600); Where: core_count is assumed to be the sole parameter in the last received notify_core_count message. Instructs the Relay-chain to ensure that the core indexed as core is utilised for a number of assignments in specific ratios given by assignment starting as soon after begin as possible. Core assignments take the form of a CoreAssignment value which can either task the core to a ParaId value or indicate that the core should be used in the Instantaneous Pool. Each assignment comes with a ratio value, represented as the numerator of the fraction with a denominator of 57,600. If end_hint is Some and the inner is greater than the current block number, then the Relay-chain should optimize in the expectation of receiving a new assign_core(core, ...) message at or prior to the block number of the inner value. Specific functionality should remain unchanged regardless of the end_hint value. On the choice of denominator: 57,600 is a very composite number which factors into: 2 ** 8, 3 ** 2, 5 ** 2. By using it as the denominator we allow for various useful fractions to be perfectly represented including thirds, quarters, fifths, tenths, 80ths, percent and 256ths.","breadcrumbs":"RFC-5: Coretime Interface » UMP Message Types","id":"207","title":"UMP Message Types"},"208":{"body":"notify_core_count Prototype: fn notify_core_count( count: u16,\n) Indicate that from this block onwards, the range of acceptable values of the core parameter of assign_core message is [0, count). assign_core will be a no-op if provided with a value for core outside of this range. notify_revenue_info Prototype: fn notify_revenue_info( until: BlockNumber, revenue: Option,\n) Provide the amount of revenue accumulated from Instantaneous Coretime Sales from Relay-chain block number last_until to until, not including until itself. last_until is defined as being the until argument of the last notify_revenue message sent, or zero for the first call. If revenue is None, this indicates that the information is no longer available. This explicitly disregards the possibility of multiple parachains requesting and being notified of revenue information. The Relay-chain must be configured to ensure that only a single revenue information destination exists.","breadcrumbs":"RFC-5: Coretime Interface » DMP Message Types","id":"208","title":"DMP Message Types"},"209":{"body":"For request_revenue_info, a successful request should be possible if when is no less than the Relay-chain block number on arrival of the message less 100,000. For assign_core, a successful request should be possible if begin is no less than the Relay-chain block number on arrival of the message plus 10 and workload contains no more than 100 items.","breadcrumbs":"RFC-5: Coretime Interface » Realistic Limits of the Usage","id":"209","title":"Realistic Limits of the Usage"},"21":{"body":"There remain unresolved questions regarding the implementation of a function-based pricing model for deposits and the feasibility of linking deposits to a USD(x) value. These aspects require further exploration and discussion to ascertain their viability and potential impact on the ecosystem.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Unresolved Questions","id":"21","title":"Unresolved Questions"},"210":{"body":"No specific considerations.","breadcrumbs":"RFC-5: Coretime Interface » Performance, Ergonomics and Compatibility","id":"210","title":"Performance, Ergonomics and Compatibility"},"211":{"body":"Standard Polkadot testing and security auditing applies. The proposal introduces no new privacy concerns.","breadcrumbs":"RFC-5: Coretime Interface » Testing, Security and Privacy","id":"211","title":"Testing, Security and Privacy"},"212":{"body":"RFC-1 proposes a means of determining allocation of Coretime using this interface. RFC-3 proposes a means of implementing the high-level allocations within the Relay-chain.","breadcrumbs":"RFC-5: Coretime Interface » Future Directions and Related Material","id":"212","title":"Future Directions and Related Material"},"213":{"body":"None at present.","breadcrumbs":"RFC-5: Coretime Interface » Drawbacks, Alternatives and Unknowns","id":"213","title":"Drawbacks, Alternatives and Unknowns"},"214":{"body":"None.","breadcrumbs":"RFC-5: Coretime Interface » Prior Art and References","id":"214","title":"Prior Art and References"},"215":{"body":"(source) Table of Contents RFC-0007: System Collator Selection Summary Motivation Requirements Stakeholders Explanation Set Size Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Written Discussions Prior Feedback and Input From Unresolved Questions Future Directions and Related Material Start Date 07 July 2023 Description Mechanism for selecting collators of system chains. Authors Joe Petrowski","breadcrumbs":"RFC-0007: System Collator Selection » RFC-0007: System Collator Selection","id":"215","title":"RFC-0007: System Collator Selection"},"216":{"body":"As core functionality moves from the Relay Chain into system chains, so increases the reliance on the liveness of these chains for the use of the network. It is not economically scalable, nor necessary from a game-theoretic perspective, to pay collators large rewards. This RFC proposes a mechanism -- part technical and part social -- for ensuring reliable collator sets that are resilient to attemps to stop any subsytem of the Polkadot protocol.","breadcrumbs":"RFC-0007: System Collator Selection » Summary","id":"216","title":"Summary"},"217":{"body":"In order to guarantee access to Polkadot's system, the collators on its system chains must propose blocks (provide liveness) and allow all transactions to eventually be included. That is, some collators may censor transactions, but there must exist one collator in the set who will include a given transaction. In fact, all collators may censor varying subsets of transactions, but as long as no transaction is in the intersection of every subset, it will eventually be included. The objective of this RFC is to propose a mechanism to select such a set on each system chain. While the network as a whole uses staking (and inflationary rewards) to attract validators, collators face different challenges in scale and have lower security assumptions than validators. Regarding scale, there exist many system chains, and it is economically expensive to pay collators a premium. Likewise, any staked DOT for collation is not staked for validation. Since collator sets do not need to meet Byzantine Fault Tolerance criteria, staking as the primary mechanism for collator selection would remove stake that is securing BFT assumptions, making the network less secure. Another problem with economic scalability relates to the increasing number of system chains, and corresponding increase in need for collators (i.e., increase in collator slots). \"Good\" (highly available, non-censoring) collators will not want to compete in elections on many chains when they could use their resources to compete in the more profitable validator election. Such dilution decreases the required bond on each chain, leaving them vulnerable to takeover by hostile collator groups. This RFC proposes a system whereby collation is primarily an infrastructure service, with the on-chain Treasury reimbursing costs of semi-trusted node operators, referred to as \"Invulnerables\". The system need not trust the individual operators, only that as a set they would be resilient to coordinated attempts to stop a single chain from halting or to censor a particular subset of transactions. In the case that users do not trust this set, this RFC also proposes that each chain always have available collator positions that can be acquired by anyone by placing a bond.","breadcrumbs":"RFC-0007: System Collator Selection » Motivation","id":"217","title":"Motivation"},"218":{"body":"System MUST have at least one valid collator for every chain. System MUST allow anyone to become a collator, provided they reserve/hold enough DOT. System SHOULD select a set of collators with reasonable expectation that the set will not collude to censor any subset of transactions. Collators selected by governance SHOULD have a reasonable expectation that the Treasury will reimburse their operating costs.","breadcrumbs":"RFC-0007: System Collator Selection » Requirements","id":"218","title":"Requirements"},"219":{"body":"Infrastructure providers (people who run validator/collator nodes) Polkadot Treasury","breadcrumbs":"RFC-0007: System Collator Selection » Stakeholders","id":"219","title":"Stakeholders"},"22":{"body":"We recommend initially lowering the deposit to the suggested levels. Subsequently, based on the outcomes and feedback, we can continue discussions on more complex models such as function-based pricing or currency-linked deposits. If accepted, this RFC could pave the way for further discussions and proposals aimed at enhancing the inclusivity and accessibility of the Polkadot ecosystem.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Future Directions and Related Material","id":"22","title":"Future Directions and Related Material"},"220":{"body":"This protocol builds on the existing Collator Selection pallet and its notion of Invulnerables. Invulnerables are collators (identified by their AccountIds) who will be selected as part of the collator set every session. Operations relating to the management of the Invulnerables are done through privileged, governance origins. The implementation should maintain an API for adding and removing Invulnerable collators. In addition to Invulnerables, there are also open slots for \"Candidates\". Anyone can register as a Candidate by placing a fixed bond. However, with a fixed bond and fixed number of slots, there is an obvious selection problem: The slots fill up without any logic to replace their occupants. This RFC proposes that the collator selection protocol allow Candidates to increase (and decrease) their individual bonds, sort the Candidates according to bond, and select the top N Candidates. The selection and changeover should be coordinated by the session manager. A FRAME pallet already exists for sorting (\"bagging\") \"top N\" groups, the Bags List pallet . This pallet's SortedListProvider should be integrated into the session manager of the Collator Selection pallet. Despite the lack of apparent economic incentives (i.e., inflation), several reasons exist why one may want to bond funds to participate in the Candidates election, for example: They want to build credibility to be selected as Invulnerable; They want to ensure availability of an application, e.g. a stablecoin issuer might run a collator on Asset Hub to ensure transactions in its asset are included in blocks; They fear censorship themselves, e.g. a voter might think their votes are being censored from governance, so they run a collator on the governance chain to include their votes. Unlike the fixed-bond mechanism that fills up its Candidates, the election mechanism ensures that anyone can join the collator set by placing the Nth highest bond.","breadcrumbs":"RFC-0007: System Collator Selection » Explanation","id":"220","title":"Explanation"},"221":{"body":"In order to achieve the requirements listed under Motivation , it is reasonable to have approximately: 20 collators per system chain, of which 15 are Invulnerable, and five are elected by bond.","breadcrumbs":"RFC-0007: System Collator Selection » Set Size","id":"221","title":"Set Size"},"222":{"body":"The primary drawback is a reliance on governance for continued treasury funding of infrastructure costs for Invulnerable collators.","breadcrumbs":"RFC-0007: System Collator Selection » Drawbacks","id":"222","title":"Drawbacks"},"223":{"body":"The vast majority of cases can be covered by unit testing. Integration test should ensure that the Collator Selection UpdateOrigin, which has permission to modify the Invulnerables and desired number of Candidates, can handle updates over XCM from the system's governance location.","breadcrumbs":"RFC-0007: System Collator Selection » Testing, Security, and Privacy","id":"223","title":"Testing, Security, and Privacy"},"224":{"body":"This proposal has very little impact on most users of Polkadot, and should improve the performance of system chains by reducing the number of missed blocks.","breadcrumbs":"RFC-0007: System Collator Selection » Performance, Ergonomics, and Compatibility","id":"224","title":"Performance, Ergonomics, and Compatibility"},"225":{"body":"As chains have strict PoV size limits, care must be taken in the PoV impact of the session manager. Appropriate benchmarking and tests should ensure that conservative limits are placed on the number of Invulnerables and Candidates.","breadcrumbs":"RFC-0007: System Collator Selection » Performance","id":"225","title":"Performance"},"226":{"body":"The primary group affected is Candidate collators, who, after implementation of this RFC, will need to compete in a bond-based election rather than a race to claim a Candidate spot.","breadcrumbs":"RFC-0007: System Collator Selection » Ergonomics","id":"226","title":"Ergonomics"},"227":{"body":"This RFC is compatible with the existing implementation and can be handled via upgrades and migration.","breadcrumbs":"RFC-0007: System Collator Selection » Compatibility","id":"227","title":"Compatibility"},"228":{"body":"","breadcrumbs":"RFC-0007: System Collator Selection » Prior Art and References","id":"228","title":"Prior Art and References"},"229":{"body":"GitHub: Collator Selection Roadmap GitHub: Revisit Collator Selection Mechanism Polkadot Forum: Economic Model for System Para Collators","breadcrumbs":"RFC-0007: System Collator Selection » Written Discussions","id":"229","title":"Written Discussions"},"23":{"body":"(source) Table of Contents RFC-0026: Sassafras Consensus Protocol Abstract 1. Motivation 1.1. Relevance to Implementors 1.2. Supporting Sassafras for Polkadot 2. Stakeholders 2.1. Blockchain Developers 2.2. Polkadot Ecosystem Contributors 3. Notation and Convention 3.1. Data Structures Definitions and Encoding 3.2. Pseudo-Code 3.3. Incremental Introduction of Types and Functions 4. Protocol Introduction 4.1. Submission of Candidate Tickets 4.2. Validation of Candidate Tickets 4.3. Tickets and Slots Binding 4.4. Claim of Ticket Ownership 4.5. Validation of Ticket Ownership 5. Bandersnatch VRFs Cryptographic Primitives 5.1. VRF Input 5.2. VRF PreOutput 5.3. VRF Signature Data 5.4. VRF Signature 6. Sassafras Protocol 6.1. Epoch's First Block 6.2. Creation and Submission of Candidate Tickets 6.3. Validation of candidate tickets 6.4. Ticket-Slot Binding 6.5. Slot Claim Production 6.6. Slot Claim Verification 6.6.1. Primary Method 6.7. Randomness Accumulator 7. Drawbacks 8. Testing, Security, and Privacy 9. Performance, Ergonomics, and Compatibility 9.1. Performance 9.2. Ergonomics 9.3. Compatibility 10. Prior Art and References 11. Unresolved Questions 12. Future Directions and Related Material 12.1. Interactions with On-Chain Code 12.2. Deployment Strategies 12.3. ZK-SNARK SRS Initialization 12.4. Anonymous Submission of Tickets. Start Date September 06, 2023 Description Sassafras consensus protocol description and structures Authors Davide Galassi","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » RFC-0026: Sassafras Consensus Protocol","id":"23","title":"RFC-0026: Sassafras Consensus Protocol"},"230":{"body":"Kian Paimani Jeff Burdges Rob Habermeier SR Labs Auditors Current collators including Paranodes, Stake Plus, Turboflakes, Peter Mensik, SIK, and many more.","breadcrumbs":"RFC-0007: System Collator Selection » Prior Feedback and Input From","id":"230","title":"Prior Feedback and Input From"},"231":{"body":"None at this time.","breadcrumbs":"RFC-0007: System Collator Selection » Unresolved Questions","id":"231","title":"Unresolved Questions"},"232":{"body":"There may exist in the future system chains for which this model of collator selection is not appropriate. These chains should be evaluated on a case-by-case basis.","breadcrumbs":"RFC-0007: System Collator Selection » Future Directions and Related Material","id":"232","title":"Future Directions and Related Material"},"233":{"body":"(source) Table of Contents RFC-0008: Store parachain bootnodes in relay chain DHT Summary Motivation Stakeholders Explanation DHT provider registration New networking protocol Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-07-14 Description Parachain bootnodes shall register themselves in the DHT of the relay chain Authors Pierre Krieger","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » RFC-0008: Store parachain bootnodes in relay chain DHT","id":"233","title":"RFC-0008: Store parachain bootnodes in relay chain DHT"},"234":{"body":"The full nodes of the Polkadot peer-to-peer network maintain a distributed hash table (DHT), which is currently used for full nodes discovery and validators discovery purposes. This RFC proposes to extend this DHT to be used to discover full nodes of the parachains of Polkadot.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Summary","id":"234","title":"Summary"},"235":{"body":"The maintenance of bootnodes has long been an annoyance for everyone. When a bootnode is newly-deployed or removed, every chain specification must be updated in order to take the update into account. This has lead to various non-optimal solutions, such as pulling chain specifications from GitHub repositories. When it comes to RPC nodes, UX developers often have trouble finding up-to-date addresses of parachain RPC nodes. With the ongoing migration from RPC nodes to light clients, similar problems would happen with chain specifications as well. Furthermore, there exists multiple different possible variants of a certain chain specification: with the non-raw storage, with the raw storage, with just the genesis trie root hash, with or without checkpoint, etc. All of this creates confusion. Removing the need for parachain developers to be aware of and manage these different versions would be beneficial. Since the PeerId and addresses of bootnodes needs to be stable, extra maintenance work is required from the chain maintainers. For example, they need to be extra careful when migrating nodes within their infrastructure. In some situations, bootnodes are put behind domain names, which also requires maintenance work. Because the list of bootnodes in chain specifications is so annoying to modify, the consequence is that the number of bootnodes is rather low (typically between 2 and 15). In order to better resist downtimes and DoS attacks, a better solution would be to use every node of a certain chain as potential bootnode, rather than special-casing some specific nodes. While this RFC doesn't solve these problems for relay chains, it aims at solving it for parachains by storing the list of all the full nodes of a parachain on the relay chain DHT. Assuming that this RFC is implemented, and that light clients are used, deploying a parachain wouldn't require more work than registering it onto the relay chain and starting the collators. There wouldn't be any need for special infrastructure nodes anymore.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Motivation","id":"235","title":"Motivation"},"236":{"body":"This RFC has been opened on my own initiative because I think that this is a good technical solution to a usability problem that many people are encountering and that they don't realize can be solved.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Stakeholders","id":"236","title":"Stakeholders"},"237":{"body":"The content of this RFC only applies for parachains and parachain nodes that are \"Substrate-compatible\". It is in no way mandatory for parachains to comply to this RFC. Note that \"Substrate-compatible\" is very loosely defined as \"implements the same mechanisms and networking protocols as Substrate\". The author of this RFC believes that \"Substrate-compatible\" should be very precisely specified, but there is controversy on this topic. While a lot of this RFC concerns the implementation of parachain nodes, it makes use of the resources of the Polkadot chain, and as such it is important to describe them in the Polkadot specification. This RFC adds two mechanisms: a registration in the DHT, and a new networking protocol.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Explanation","id":"237","title":"Explanation"},"238":{"body":"This RFC heavily relies on the functionalities of the Kademlia DHT already in use by Polkadot. You can find a link to the specification here . Full nodes of a parachain registered on Polkadot should register themselves onto the Polkadot DHT as the providers of a key corresponding to the parachain that they are serving, as described in the Content provider advertisement section of the specification. This uses the ADD_PROVIDER system of libp2p-kademlia. This key is: sha256(concat(scale_compact(para_id), randomness)) where the value of randomness can be found in the randomness field when calling the BabeApi_currentEpoch function. For example, for a para_id equal to 1000, and at the time of writing of this RFC (July 14th 2023 at 09:13 UTC), it is sha(0xa10f12872447958d50aa7b937b0106561a588e0e2628d33f81b5361b13dbcf8df708), which is equal to 0x483dd8084d50dbbbc962067f216c37b627831d9339f5a6e426a32e3076313d87. In order to avoid downtime when the key changes, parachain full nodes should also register themselves as a secondary key that uses a value of randomness equal to the randomness field when calling BabeApi_nextEpoch. Implementers should be aware that their implementation of Kademlia might already hash the key before XOR'ing it. The key is not meant to be hashed twice. The compact SCALE encoding has been chosen in order to avoid problems related to the number of bytes and endianness of the para_id.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » DHT provider registration","id":"238","title":"DHT provider registration"},"239":{"body":"A new request-response protocol should be added, whose name is /91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3/paranode (that hexadecimal number is the genesis hash of the Polkadot chain, and should be adjusted appropriately for Kusama and others). The request consists in a SCALE-compact-encoded para_id. For example, for a para_id equal to 1000, this is 0xa10f. Note that because this is a request-response protocol, the request is always prefixed with its length in bytes. While the body of the request is simply the SCALE-compact-encoded para_id, the data actually sent onto the substream is both the length and body. The response consists in a protobuf struct, defined as: syntax = \"proto2\"; message Response { // Peer ID of the node on the parachain side. bytes peer_id = 1; // Multiaddresses of the parachain side of the node. The list and format are the same as for the `listenAddrs` field of the `identify` protocol. repeated bytes addrs = 2; // Genesis hash of the parachain. Used to determine the name of the networking protocol to connect to the parachain. Untrusted. bytes genesis_hash = 3; // So-called \"fork ID\" of the parachain. Used to determine the name of the networking protocol to connect to the parachain. Untrusted. optional string fork_id = 4;\n}; The maximum size of a response is set to an arbitrary 16kiB. The responding side should make sure to conform to this limit. Given that fork_id is typically very small and that the only variable-length field is addrs, this is easily achieved by limiting the number of addresses. Implementers should be aware that addrs might be very large, and are encouraged to limit the number of addrs to an implementation-defined value.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » New networking protocol","id":"239","title":"New networking protocol"},"24":{"body":"Sassafras is a novel consensus protocol designed to address the recurring fork-related challenges encountered in other lottery-based protocols. The protocol aims to create a mapping between each epoch's slots and the validators set while ensuring that the identity of validators assigned to the slots remains undisclosed until the slot is actively claimed during block production.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » Abstract","id":"24","title":"Abstract"},"240":{"body":"The peer_id and addrs fields are in theory not strictly needed, as the PeerId and addresses could be always equal to the PeerId and addresses of the node being registered as the provider and serving the response. However, the Cumulus implementation currently uses two different networking stacks, one of the parachain and one for the relay chain, using two separate PeerIds and addresses, and as such the PeerId and addresses of the other networking stack must be indicated. Asking them to use only one networking stack wouldn't feasible in a realistic time frame. The values of the genesis_hash and fork_id fields cannot be verified by the requester and are expected to be unused at the moment. Instead, a client that desires connecting to a parachain is expected to obtain the genesis hash and fork ID of the parachain from the parachain chain specification. These fields are included in the networking protocol nonetheless in case an acceptable solution is found in the future, and in order to allow use cases such as discovering parachains in a not-strictly-trusted way.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Drawbacks","id":"240","title":"Drawbacks"},"241":{"body":"Because not all nodes want to be used as bootnodes, implementers are encouraged to provide a way to disable this mechanism. However, it is very much encouraged to leave this mechanism on by default for all parachain nodes. This mechanism doesn't add or remove any security by itself, as it relies on existing mechanisms. However, if the principle of chain specification bootnodes is entirely replaced with the mechanism described in this RFC (which is the objective), then it becomes important whether the mechanism in this RFC can be abused in order to make a parachain unreachable. Due to the way Kademlia works, it would become the responsibility of the 20 Polkadot nodes whose sha256(peer_id) is closest to the key (described in the explanations section) to store the list of bootnodes of each parachain. Furthermore, when a large number of providers (here, a provider is a bootnode) are registered, only the providers closest to the key are kept, up to a certain implementation-defined limit. For this reason, an attacker can abuse this mechanism by randomly generating libp2p PeerIds until they find the 20 entries closest to the key representing the target parachain. They are then in control of the parachain bootnodes. Because the key changes periodically and isn't predictable, and assuming that the Polkadot DHT is sufficiently large, it is not realistic for an attack like this to be maintained in the long term. Furthermore, parachain clients are expected to cache a list of known good nodes on their disk. If the mechanism described in this RFC went down, it would only prevent new nodes from accessing the parachain, while clients that have connected before would not be affected.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Testing, Security, and Privacy","id":"241","title":"Testing, Security, and Privacy"},"242":{"body":"","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Performance, Ergonomics, and Compatibility","id":"242","title":"Performance, Ergonomics, and Compatibility"},"243":{"body":"The DHT mechanism generally has a low overhead, especially given that publishing providers is done only every 24 hours. Doing a Kademlia iterative query then sending a provider record shouldn't take more than around 50 kiB in total of bandwidth for the parachain bootnode. Assuming 1000 parachain full nodes, the 20 Polkadot full nodes corresponding to a specific parachain will each receive a sudden spike of a few megabytes of networking traffic when the key rotates. Again, this is relatively negligible. If this becomes a problem, one can add a random delay before a parachain full node registers itself to be the provider of the key corresponding to BabeApi_next_epoch. Maybe the biggest uncertainty is the traffic that the 20 Polkadot full nodes will receive from light clients that desire knowing the bootnodes of a parachain. Light clients are generally encouraged to cache the peers that they use between restarts, so they should only query these 20 Polkadot full nodes at their first initialization. If this every becomes a problem, this value of 20 is an arbitrary constant that can be increased for more redundancy.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Performance","id":"243","title":"Performance"},"244":{"body":"Irrelevant.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Ergonomics","id":"244","title":"Ergonomics"},"245":{"body":"Irrelevant.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Compatibility","id":"245","title":"Compatibility"},"246":{"body":"None.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Prior Art and References","id":"246","title":"Prior Art and References"},"247":{"body":"While it fundamentally doesn't change much to this RFC, using BabeApi_currentEpoch and BabeApi_nextEpoch might be inappropriate. I'm not familiar enough with good practices within the runtime to have an opinion here. Should it be an entirely new pallet?","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Unresolved Questions","id":"247","title":"Unresolved Questions"},"248":{"body":"It is possible that in the future a client could connect to a parachain without having to rely on a trusted parachain specification.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Future Directions and Related Material","id":"248","title":"Future Directions and Related Material"},"249":{"body":"(source) Table of Contents RFC-0012: Process for Adding New System Collectives Summary Motivation Stakeholders Explanation Removing Collectives Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Prior Art and References Unresolved Questions Start Date 24 July 2023 Description A process for adding new (and removing existing) system collectives. Authors Joe Petrowski","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » RFC-0012: Process for Adding New System Collectives","id":"249","title":"RFC-0012: Process for Adding New System Collectives"},"25":{"body":"Sassafras Protocol has been rigorously detailed in a comprehensive research paper authored by the Web3 foundation research team. This RFC is primarily intended to detail the critical implementation aspects vital for ensuring interoperability and to clarify certain aspects that are left open by the research paper and thus subject to interpretation during implementation.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 1. Motivation","id":"25","title":"1. Motivation"},"250":{"body":"Since the introduction of the Collectives parachain, many groups have expressed interest in forming new -- or migrating existing groups into -- on-chain collectives. While adding a new collective is relatively simple from a technical standpoint, the Fellowship will need to merge new pallets into the Collectives parachain for each new collective. This RFC proposes a means for the network to ratify a new collective, thus instructing the Fellowship to instate it in the runtime.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Summary","id":"250","title":"Summary"},"251":{"body":"Many groups have expressed interest in representing collectives on-chain. Some of these include: Parachain technical fellowship (new) Fellowship(s) for media, education, and evangelism (new) Polkadot Ambassador Program (existing) Anti-Scam Team (existing) Collectives that form part of the core Polkadot protocol should have a mandate to serve the Polkadot network. However, as part of the Polkadot protocol, the Fellowship, in its capacity of maintaining system runtimes, will need to include modules and configurations for each collective. Once a group has developed a value proposition for the Polkadot network, it should have a clear path to having its collective accepted on-chain as part of the protocol. Acceptance should direct the Fellowship to include the new collective with a given initial configuration into the runtime. However, the network, not the Fellowship, should ultimately decide which collectives are in the interest of the network.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Motivation","id":"251","title":"Motivation"},"252":{"body":"Polkadot stakeholders who would like to organize on-chain. Technical Fellowship, in its role of maintaining system runtimes.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Stakeholders","id":"252","title":"Stakeholders"},"253":{"body":"The group that wishes to operate an on-chain collective should publish the following information: Charter, including the collective's mandate and how it benefits Polkadot. This would be similar to the Fellowship Manifesto . Seeding recommendation. Member types, i.e. should members be individuals or organizations. Member management strategy, i.e. how do members join and get promoted, if applicable. How much, if at all, members should get paid in salary. Any special origins this Collective should have outside its self. For example, the Fellowship can whitelist calls for referenda via the WhitelistOrigin. This information could all be in a single document or, for example, a GitHub repository. After publication, members should seek feedback from the community and Technical Fellowship, and make any revisions needed. When the collective believes the proposal is ready, they should bring a remark with the text APPROVE_COLLECTIVE(\"{collective name}, {commitment}\") to a Root origin referendum. The proposer should provide instructions for generating commitment. The passing of this referendum would be unequivocal direction to the Fellowship that this collective should be part of the Polkadot runtime. Note: There is no need for a REJECT referendum. Proposals that have not been approved are simply not included in the runtime.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Explanation","id":"253","title":"Explanation"},"254":{"body":"If someone believes that an existing collective is not acting in the interest of the network or in accordance with its charter, they should likewise have a means to instruct the Fellowship to remove that collective from Polkadot. An on-chain remark from the Root origin with the text REMOVE_COLLECTIVE(\"{collective name}, {para ID}, [{pallet indices}]\") would instruct the Fellowship to remove the collective via the listed pallet indices on paraId. Should someone want to construct such a remark, they should have a reasonable expectation that a member of the Fellowship would help them identify the pallet indices associated with a given collective, whether or not the Fellowship member agrees with removal. Collective removal may also come with other governance calls, for example voiding any scheduled Treasury spends that would fund the given collective.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Removing Collectives","id":"254","title":"Removing Collectives"},"255":{"body":"Passing a Root origin referendum is slow. However, given the network's investment (in terms of code maintenance and salaries) in a new collective, this is an appropriate step.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Drawbacks","id":"255","title":"Drawbacks"},"256":{"body":"No impacts.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Testing, Security, and Privacy","id":"256","title":"Testing, Security, and Privacy"},"257":{"body":"Generally all new collectives will be in the Collectives parachain. Thus, performance impacts should strictly be limited to this parachain and not affect others. As the majority of logic for collectives is generalized and reusable, we expect most collectives to be instances of similar subsets of modules. That is, new collectives should generally be compatible with UIs and other services that provide collective-related functionality, with little modifications to support new ones.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Performance, Ergonomics, and Compatibility","id":"257","title":"Performance, Ergonomics, and Compatibility"},"258":{"body":"The launch of the Technical Fellowship, see the initial forum post .","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Prior Art and References","id":"258","title":"Prior Art and References"},"259":{"body":"None at this time.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Unresolved Questions","id":"259","title":"Unresolved Questions"},"26":{"body":"This RFC focuses on providing implementors with the necessary insights into the protocol's operation. In instances of inconsistency between this document and the research paper, this RFC should be considered authoritative to eliminate ambiguities and ensure interoperability.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 1.1. Relevance to Implementors","id":"26","title":"1.1. Relevance to Implementors"},"260":{"body":"(source) Table of Contents RFC-0014: Improve locking mechanism for parachains Summary Motivation Requirements Stakeholders Explanation Status quo Proposed changes Migration Drawbacks Testing, Security, and Privacy Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date July 25, 2023 Description Improve locking mechanism for parachains Authors Bryan Chen","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » RFC-0014: Improve locking mechanism for parachains","id":"260","title":"RFC-0014: Improve locking mechanism for parachains"},"261":{"body":"This RFC proposes a set of changes to the parachain lock mechanism. The goal is to allow a parachain manager to self-service the parachain without root track governance action. This is achieved by remove existing lock conditions and only lock a parachain when: A parachain manager explicitly lock the parachain OR a parachain block is produced successfully","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Summary","id":"261","title":"Summary"},"262":{"body":"The manager of a parachain has permission to manage the parachain when the parachain is unlocked. Parachains are by default locked when onboarded to a slot. This requires the parachain wasm/genesis must be valid, otherwise a root track governance action on relaychain is required to update the parachain. The current reliance on root track governance actions for managing parachains can be time-consuming and burdensome. This RFC aims to address this technical difficulty by allowing parachain managers to take self-service actions, rather than relying on general public voting. The key scenarios this RFC seeks to improve are: Rescue a parachain with invalid wasm/genesis. While we have various resources and templates to build a new parachain, it is still not a trivial task. It is very easy to make a mistake and resulting an invalid wasm/genesis. With lack of tools to help detect those issues [1] , it is very likely that the issues are only discovered after the parachain is onboarded on a slot. In this case, the parachain is locked and the parachain team has to go through a lengthy governance process to rescue the parachain. Perform lease renewal for an existing parachain. One way to perform lease renewal for a parachain is by doing a least swap with another parachain with a longer lease. This requires the other parachain must be operational and able to perform XCM transact call into relaychain to dispatch the swap call. Combined with the overhead of setting up a new parachain, this is an time consuming and expensive process. Ideally, the parachain manager should be able to perform the lease swap call without having a running parachain [2] .","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Motivation","id":"262","title":"Motivation"},"263":{"body":"A parachain manager SHOULD be able to rescue a parachain by updating the wasm/genesis without root track governance action. A parachain manager MUST NOT be able to update the wasm/genesis if the parachain is locked. A parachain SHOULD be locked when it successfully produced the first block. A parachain manager MUST be able to perform lease swap without having a running parachain.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Requirements","id":"263","title":"Requirements"},"264":{"body":"Parachain teams Parachain users","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Stakeholders","id":"264","title":"Stakeholders"},"265":{"body":"","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Explanation","id":"265","title":"Explanation"},"266":{"body":"A parachain can either be locked or unlocked [3] . With parachain locked, the parachain manager does not have any privileges. With parachain unlocked, the parachain manager can perform following actions with the paras_registrar pallet: deregister: Deregister a Para Id, freeing all data and returning any deposit. swap: Initiate or confirm lease swap with another parachain. add_lock: Lock the parachain. schedule_code_upgrade: Schedule a parachain upgrade to update parachain wasm. set_current_head: Set the parachain's current head. Currently, a parachain can be locked with following conditions: From add_lock call, which can be dispatched by relaychain Root origin, the parachain, or the parachain manager. When a parachain is onboarded on a slot [4] . When a crowdloan is created. Only the relaychain Root origin or the parachain itself can unlock the lock [5] . This creates an issue that if the parachain is unable to produce block, the parachain manager is unable to do anything and have to rely on relaychain Root origin to manage the parachain.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Status quo","id":"266","title":"Status quo"},"267":{"body":"This RFC proposes to change the lock and unlock conditions. A parachain can be locked only with following conditions: Relaychain governance MUST be able to lock any parachain. A parachain MUST be able to lock its own lock. A parachain manager SHOULD be able to lock the parachain. A parachain SHOULD be locked when it successfully produced a block for the first time. A parachain can be unlocked only with following conditions: Relaychain governance MUST be able to unlock any parachain. A parachain MUST be able to unlock its own lock. Note that create crowdloan MUST NOT lock the parachain and onboard a parachain SHOULD NOT lock it until a new block is successfully produced.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Proposed changes","id":"267","title":"Proposed changes"},"268":{"body":"A one off migration is proposed in order to apply this change retrospectively so that existing parachains can also be benefited from this RFC. This migration will unlock parachains that confirms with following conditions: Parachain is locked. Parachain never produced a block. Including from expired leases. Parachain manager never explicitly lock the parachain.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Migration","id":"268","title":"Migration"},"269":{"body":"Parachain locks are designed in such way to ensure the decentralization of parachains. If parachains are not locked when it should be, it could introduce centralization risk for new parachains. For example, one possible scenario is that a collective may decide to launch a parachain fully decentralized. However, if the parachain is unable to produce block, the parachain manager will be able to replace the wasm and genesis without the consent of the collective. It is considered this risk is tolerable as it requires the wasm/genesis to be invalid at first place. It is not yet practically possible to develop a parachain without any centralized risk currently. Another case is that a parachain team may decide to use crowdloan to help secure a slot lease. Previously, creating a crowdloan will lock a parachain. This means crowdloan participants will know exactly the genesis of the parachain for the crowdloan they are participating. However, this actually providers little assurance to crowdloan participants. For example, if the genesis block is determined before a crowdloan is started, it is not possible to have onchain mechanism to enforce reward distributions for crowdloan participants. They always have to rely on the parachain team to fulfill the promise after the parachain is alive. Existing operational parachains will not be impacted.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Drawbacks","id":"269","title":"Drawbacks"},"27":{"body":"Beyond promoting interoperability, this RFC also aims to facilitate the implementation of Sassafras within the Polkadot ecosystem. Although the specifics of deployment strategies are beyond the scope of this document, it lays the groundwork for the integration of Sassafras into the Polkadot network.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 1.2. Supporting Sassafras for Polkadot","id":"27","title":"1.2. Supporting Sassafras for Polkadot"},"270":{"body":"The implementation of this RFC will be tested on testnets (Rococo and Westend) first. An audit maybe required to ensure the implementation does not introduce unwanted side effects. There is no privacy related concerns.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Testing, Security, and Privacy","id":"270","title":"Testing, Security, and Privacy"},"271":{"body":"This RFC should not introduce any performance impact.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Performance","id":"271","title":"Performance"},"272":{"body":"This RFC should improve the developer experiences for new and existing parachain teams","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Ergonomics","id":"272","title":"Ergonomics"},"273":{"body":"This RFC is fully compatibility with existing interfaces.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Compatibility","id":"273","title":"Compatibility"},"274":{"body":"Parachain Slot Extension Story: https://github.com/paritytech/polkadot/issues/4758 Allow parachain to renew lease without actually run another parachain: https://github.com/paritytech/polkadot/issues/6685 Always treat parachain that never produced block for a significant amount of time as unlocked: https://github.com/paritytech/polkadot/issues/7539","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Prior Art and References","id":"274","title":"Prior Art and References"},"275":{"body":"None at this stage.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Unresolved Questions","id":"275","title":"Unresolved Questions"},"276":{"body":"This RFC is only intended to be a short term solution. Slots will be removed in future and lock mechanism is likely going to be replaced with a more generalized parachain manage & recovery system in future. Therefore long term impacts of this RFC are not considered. https://github.com/paritytech/cumulus/issues/377 [2] : https://github.com/paritytech/polkadot/issues/6685 [3] : https://github.com/paritytech/polkadot/blob/994af3de79af25544bf39644844cbe70a7b4d695/runtime/common/src/paras_registrar.rs#L51-L52C15 [4] : https://github.com/paritytech/polkadot/blob/994af3de79af25544bf39644844cbe70a7b4d695/runtime/common/src/paras_registrar.rs#L473-L475 [5] : https://github.com/paritytech/polkadot/blob/994af3de79af25544bf39644844cbe70a7b4d695/runtime/common/src/paras_registrar.rs#L333-L340","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Future Directions and Related Material","id":"276","title":"Future Directions and Related Material"},"277":{"body":"(source) Table of Contents RFC-0022: Adopt Encointer Runtime Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date Aug 22nd 2023 Description Permanently move the Encointer runtime into the Fellowship runtimes repo. Authors @brenzi for Encointer Association, 8000 Zurich, Switzerland","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » RFC-0022: Adopt Encointer Runtime","id":"277","title":"RFC-0022: Adopt Encointer Runtime"},"278":{"body":"Encointer is a system chain on Kusama since Jan 2022 and has been developed and maintained by the Encointer association. This RFC proposes to treat Encointer like any other system chain and include it in the fellowship repo with this PR .","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Summary","id":"278","title":"Summary"},"279":{"body":"Encointer does not seek to be in control of its runtime repository. As a decentralized system, the fellowship has a more suitable structure to maintain a system chain runtime repo than the Encointer association does. Also, Encointer aims to update its runtime in batches with other system chains in order to have consistency for interoperability across system chains.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Motivation","id":"279","title":"Motivation"},"28":{"body":"","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 2. Stakeholders","id":"28","title":"2. Stakeholders"},"280":{"body":"Fellowship: Will continue to take upon them the review and auditing work for the Encointer runtime, but the process is streamlined with other system chains and therefore less time-consuming compared to the separate repo and CI process we currently have. Kusama Network: Tokenholders can easily see the changes of all system chains in one place. Encointer Association: Further decentralization of the Encointer Network necessities like devops. Encointer devs: Being able to work directly in the Fellowship runtimes repo to streamline and synergize with other developers.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Stakeholders","id":"280","title":"Stakeholders"},"281":{"body":"Our PR has all details about our runtime and how we would move it into the fellowship repo. Noteworthy: All Encointer-specific pallets will still be located in encointer's repo for the time being: https://github.com/encointer/pallets It will still be the duty of the Encointer team to keep its runtime up to date and provide adequate test fixtures. Frequent dependency bumps with Polkadot releases would be beneficial for interoperability and could be streamlined with other system chains but that will not be a duty of fellowship. Whenever possible, all system chains could be upgraded jointly (including Encointer) with a batch referendum. Further notes: Encointer will publish all its crates crates.io Encointer does not carry out external auditing of its runtime nor pallets. It would be beneficial but not a requirement from our side if Encointer could join the auditing process of other system chains.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Explanation","id":"281","title":"Explanation"},"282":{"body":"Other than all other system chains, development and maintenance of the Encointer Network is mainly financed by the KSM Treasury and possibly the DOT Treasury in the future. Encointer is dedicated to maintaining its network and runtime code for as long as possible, but there is a dependency on funding which is not in the hands of the fellowship. The only risk in the context of funding, however, is that the Encointer runtime will see less frequent updates if there's less funding.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Drawbacks","id":"282","title":"Drawbacks"},"283":{"body":"No changes to the existing system are proposed. Only changes to how maintenance is organized.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Testing, Security, and Privacy","id":"283","title":"Testing, Security, and Privacy"},"284":{"body":"No changes","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Performance, Ergonomics, and Compatibility","id":"284","title":"Performance, Ergonomics, and Compatibility"},"285":{"body":"Existing Encointer runtime repo","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Prior Art and References","id":"285","title":"Prior Art and References"},"286":{"body":"None identified","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Unresolved Questions","id":"286","title":"Unresolved Questions"},"287":{"body":"More info on Encointer: encointer.org","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Future Directions and Related Material","id":"287","title":"Future Directions and Related Material"},"288":{"body":"(source) Table of Contents RFC-0032: Minimal Relay Summary Motivation Stakeholders Explanation Migrations Interfaces Functional Architecture Resource Allocation Deployment Kusama Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 20 September 2023 Description Proposal to minimise Relay Chain functionality. Authors Joe Petrowski, Gavin Wood","breadcrumbs":"RFC-0032: Minimal Relay » RFC-0032: Minimal Relay","id":"288","title":"RFC-0032: Minimal Relay"},"289":{"body":"The Relay Chain contains most of the core logic for the Polkadot network. While this was necessary prior to the launch of parachains and development of XCM, most of this logic can exist in parachains. This is a proposal to migrate several subsystems into system parachains.","breadcrumbs":"RFC-0032: Minimal Relay » Summary","id":"289","title":"Summary"},"29":{"body":"Developers responsible for creating blockchains who intend to leverage the benefits offered by the Sassafras Protocol.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 2.1. Blockchain Developers","id":"29","title":"2.1. Blockchain Developers"},"290":{"body":"Polkadot's scaling approach allows many distinct state machines (known generally as parachains) to operate with common guarantees about the validity and security of their state transitions. Polkadot provides these common guarantees by executing the state transitions on a strict subset (a backing group) of the Relay Chain's validator set. However, state transitions on the Relay Chain need to be executed by all validators. If any of those state transitions can occur on parachains, then the resources of the complement of a single backing group could be used to offer more cores. As in, they could be offering more coretime (a.k.a. blockspace) to the network. By minimising state transition logic on the Relay Chain by migrating it into \"system chains\" -- a set of parachains that, with the Relay Chain, make up the Polkadot protocol -- the Polkadot Ubiquitous Computer can maximise its primary offering: secure blockspace.","breadcrumbs":"RFC-0032: Minimal Relay » Motivation","id":"290","title":"Motivation"},"291":{"body":"Parachains that interact with affected logic on the Relay Chain; Core protocol and XCM format developers; Tooling, block explorer, and UI developers.","breadcrumbs":"RFC-0032: Minimal Relay » Stakeholders","id":"291","title":"Stakeholders"},"292":{"body":"The following pallets and subsystems are good candidates to migrate from the Relay Chain: Identity Balances Staking Staking Election Provider Bags List NIS Nomination Pools Fast Unstake Governance Treasury and Bounties Conviction Voting Referenda Note: The Auctions and Crowdloan pallets will be replaced by Coretime, its system chain and interface described in RFC-1 and RFC-5, respectively.","breadcrumbs":"RFC-0032: Minimal Relay » Explanation","id":"292","title":"Explanation"},"293":{"body":"Some subsystems are simpler to move than others. For example, migrating Identity can be done by simply preventing state changes in the Relay Chain, using the Identity-related state as the genesis for a new chain, and launching that new chain with the genesis and logic (pallet) needed. Other subsystems cannot experience any downtime like this because they are essential to the network's functioning, like Staking and Governance. However, these can likely coexist with a similarly-permissioned system chain for some time, much like how \"Gov1\" and \"OpenGov\" coexisted at the latter's introduction. Specific migration plans will be included in release notes of runtimes from the Polkadot Fellowship when beginning the work of migrating a particular subsystem.","breadcrumbs":"RFC-0032: Minimal Relay » Migrations","id":"293","title":"Migrations"},"294":{"body":"The Relay Chain, in many cases, will still need to interact with these subsystems, especially Staking and Governance. These subsystems will require making some APIs available either via dispatchable calls accessible to XCM Transact or possibly XCM Instructions in future versions. For example, Staking provides a pallet-API to register points (e.g. for block production) and offences (e.g. equivocation). With Staking in a system chain, that chain would need to allow the Relay Chain to update validator points periodically so that it can correctly calculate rewards. A pub-sub protocol may also lend itself to these types of interactions.","breadcrumbs":"RFC-0032: Minimal Relay » Interfaces","id":"294","title":"Interfaces"},"295":{"body":"This RFC proposes that system chains form individual components within the system's architecture and that these components are chosen as functional groups. This approach allows synchronous composibility where it is most valuable, but isolates logic in such a way that provides flexibility for optimal resource allocation (see Resource Allocation ). For the subsystems discussed in this RFC, namely Identity, Governance, and Staking, this would mean: People Chain, for identity and personhood logic, providing functionality related to the attributes of single actors; Governance Chain, for governance and system collectives, providing functionality for pluralities to express their voices within the system; Staking Chain, for Polkadot's staking system, including elections, nominations, reward distribution, slashing, and non-interactive staking; and Asset Hub, for fungible and non-fungible assets, including DOT. The Collectives chain and Asset Hub already exist, so implementation of this RFC would mean two new chains (People and Staking), with Governance moving to the currently-known-as Collectives chain and Asset Hub being increasingly used for DOT over the Relay Chain. Note that one functional group will likely include many pallets, as we do not know how pallet configurations and interfaces will evolve over time.","breadcrumbs":"RFC-0032: Minimal Relay » Functional Architecture","id":"295","title":"Functional Architecture"},"296":{"body":"The system should minimise wasted blockspace. These three (and other) subsystems may not each consistently require a dedicated core. However, core scheduling is far more agile than functional grouping. While migrating functionality from one chain to another can be a multi-month endeavour, cores can be rescheduled almost on-the-fly. Migrations are also breaking changes to some use cases, for example other parachains that need to route XCM programs to particular chains. It is thus preferable to do them a single time in migrating off the Relay Chain, reducing the risk of needing parachain splits in the future. Therefore, chain boundaries should be based on functional grouping where synchronous composibility is most valuable; and efficient resource allocation should be managed by the core scheduling protocol. Many of these system chains (including Asset Hub) could often share a single core in a semi-round robin fashion (the coretime may not be uniform). When needed, for example during NPoS elections or slashing events, the scheduler could allocate a dedicated core to the chain in need of more throughput.","breadcrumbs":"RFC-0032: Minimal Relay » Resource Allocation","id":"296","title":"Resource Allocation"},"297":{"body":"Actual migrations should happen based on some prioritization. This RFC proposes to migrate Identity, Staking, and Governance as the systems to work on first. A brief discussion on the factors involved in each one: Identity Identity will be one of the simpler pallets to migrate into a system chain, as its logic is largely self-contained and it does not \"share\" balances with other subsystems. As in, any DOT is held in reserve as a storage deposit and cannot be simultaneously used the way locked DOT can be locked for multiple purposes. Therefore, migration can take place as follows: The pallet can be put in a locked state, blocking most calls to the pallet and preventing updates to identity info. The frozen state will form the genesis of a new system parachain. Functions will be added to the pallet that allow migrating the deposit to the parachain. The parachain deposit is on the order of 1/100th of the Relay Chain's. Therefore, this will result in freeing up Relay State as well as most of each user's reserved balance. The pallet and any leftover state can be removed from the Relay Chain. User interfaces that render Identity information will need to source their data from the new system parachain. Note: In the future, it may make sense to decommission Kusama's Identity chain and do all account identities via Polkadot's. However, the Kusama chain will serve as a dress rehearsal for Polkadot. Staking Migrating the staking subsystem will likely be the most complex technical undertaking, as the Staking system cannot stop (the system MUST always have a validator set) nor run in parallel (the system MUST have only one validator set) and the subsystem itself is made up of subsystems in the runtime and the node. For example, if offences are reported to the Staking parachain, validator nodes will need to submit their reports there. Handling balances also introduces complications. The same balance can be used for staking and governance. Ideally, all balances stay on Asset Hub, and only report \"credits\" to system chains like Staking and Governance. However, staking mutates balances by issuing new DOT on era changes and for rewards. Allowing DOT directly on the Staking parachain would simplify staking changes. Given the complexity, it would be pragmatic to include the Balances pallet in the Staking parachain in its first version. Any other systems that use overlapping locks, most notably governance, will need to recognise DOT held on both Asset Hub and the Staking parachain. There is more discussion about staking in a parachain in Moving Staking off the Relay Chain . Governance Migrating governance into a parachain will be less complicated than staking. Most of the primitives needed for the migration already exist. The Treasury supports spending assets on remote chains and collectives like the Polkadot Technical Fellowship already function in a parachain. That is, XCM already provides the ability to express system origins across chains. Therefore, actually moving the governance logic into a parachain will be simple. It can run in parallel with the Relay Chain's governance, which can be removed when the parachain has demonstrated sufficient functionality. It's possible that the Relay Chain maintain a Root-level emergency track for situations like parachains halting . The only complication arises from the fact that both Asset Hub and the Staking parachain will have DOT balances; therefore, the Governance chain will need to be able to credit users' voting power based on balances from both locations. This is not expected to be difficult to handle.","breadcrumbs":"RFC-0032: Minimal Relay » Deployment","id":"297","title":"Deployment"},"298":{"body":"Although Polkadot and Kusama both have system chains running, they have to date only been used for introducing new features or bodies, for example fungible assets or the Technical Fellowship. There has not yet been a migration of logic/state from the Relay Chain into a parachain. Given its more realistic network conditions than testnets, Kusama is the best stage for rehearsal. In the case of identity, Polkadot's system may be sufficient for the ecosystem. Therefore, Kusama should be used to test the migration of logic and state from Relay Chain to parachain, but these features may be (at the will of Kusama's governance) dropped from Kusama entirely after a successful migration on Polkadot. For Governance, Polkadot already has the Collectives parachain, which would become the Governance parachain. The entire group of DOT holders is itself a collective (the legislative body), and governance provides the means to express voice. Launching a Kusama Governance chain would be sensible to rehearse a migration. The Staking subsystem is perhaps where Kusama would provide the most value in its canary capacity. Staking is the subsystem most constrained by PoV limits. Ensuring that elections, payouts, session changes, offences/slashes, etc. work in a parachain on Kusama -- with its larger validator set -- will give confidence to the chain's robustness on Polkadot.","breadcrumbs":"RFC-0032: Minimal Relay » Kusama","id":"298","title":"Kusama"},"299":{"body":"These subsystems will have reduced resources in cores than on the Relay Chain. Staking in particular may require some optimizations to deal with constraints.","breadcrumbs":"RFC-0032: Minimal Relay » Drawbacks","id":"299","title":"Drawbacks"},"3":{"body":"The current deposit of 10 DOT for collection creation (along with 0.01 DOT for item deposit and 0.2 DOT for metadata and attribute deposit) on the Polkadot Asset Hub and 0.1 KSM on Kusama Asset Hub presents a significant financial barrier for many NFT creators. By lowering the deposit requirements, we aim to encourage more NFT creators to participate in the Polkadot NFT ecosystem, thereby enriching the diversity and vibrancy of the community and its offerings. The actual implementation of the deposit is an arbitrary number coming from Uniques pallet . It is not a result of any economic analysis. This proposal aims to adjust the deposit from constant to dynamic pricing based on the deposit function with respect to stakeholders.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Motivation","id":"3","title":"Motivation"},"30":{"body":"Developers contributing to the Polkadot ecosystem, both relay-chain and para-chains. The protocol will have a central role in the next generation block authoring consensus systems.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 2.2. Polkadot Ecosystem Contributors","id":"30","title":"2.2. Polkadot Ecosystem Contributors"},"300":{"body":"Standard audit/review requirements apply. More powerful multi-chain integration test tools would be useful in developement.","breadcrumbs":"RFC-0032: Minimal Relay » Testing, Security, and Privacy","id":"300","title":"Testing, Security, and Privacy"},"301":{"body":"Describe the impact of the proposal on the exposed functionality of Polkadot.","breadcrumbs":"RFC-0032: Minimal Relay » Performance, Ergonomics, and Compatibility","id":"301","title":"Performance, Ergonomics, and Compatibility"},"302":{"body":"This is an optimization. The removal of public/user transactions on the Relay Chain ensures that its primary resources are allocated to system performance.","breadcrumbs":"RFC-0032: Minimal Relay » Performance","id":"302","title":"Performance"},"303":{"body":"This proposal alters very little for coretime users (e.g. parachain developers). Application developers will need to interact with multiple chains, making ergonomic light client tools particularly important for application development. For existing parachains that interact with these subsystems, they will need to configure their runtimes to recognize the new locations in the network.","breadcrumbs":"RFC-0032: Minimal Relay » Ergonomics","id":"303","title":"Ergonomics"},"304":{"body":"Implementing this proposal will require some changes to pallet APIs and/or a pub-sub protocol. Application developers will need to interact with multiple chains in the network.","breadcrumbs":"RFC-0032: Minimal Relay » Compatibility","id":"304","title":"Compatibility"},"305":{"body":"Transactionless Relay-chain Moving Staking off the Relay Chain","breadcrumbs":"RFC-0032: Minimal Relay » Prior Art and References","id":"305","title":"Prior Art and References"},"306":{"body":"There remain some implementation questions, like how to use balances for both Staking and Governance. See, for example, Moving Staking off the Relay Chain .","breadcrumbs":"RFC-0032: Minimal Relay » Unresolved Questions","id":"306","title":"Unresolved Questions"},"307":{"body":"Ideally the Relay Chain becomes transactionless, such that not even balances are represented there. With Staking and Governance off the Relay Chain, this is not an unreasonable next step. With Identity on Polkadot, Kusama may opt to drop its People Chain.","breadcrumbs":"RFC-0032: Minimal Relay » Future Directions and Related Material","id":"307","title":"Future Directions and Related Material"},"308":{"body":"(source) Table of Contents RFC-0050: Fellowship Salaries Summary Motivation Stakeholders Explanation Salary Asset Projections Updates Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Start Date 15 November 2023 Description Proposal to set rank-based Fellowship salary levels. Authors Joe Petrowski, Gavin Wood","breadcrumbs":"RFC-0050: Fellowship Salaries » RFC-0050: Fellowship Salaries","id":"308","title":"RFC-0050: Fellowship Salaries"},"309":{"body":"The Fellowship Manifesto states that members should receive a monthly allowance on par with gross income in OECD countries. This RFC proposes concrete amounts.","breadcrumbs":"RFC-0050: Fellowship Salaries » Summary","id":"309","title":"Summary"},"31":{"body":"This section outlines the notation and conventions adopted throughout this document to ensure clarity and consistency.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3. Notation and Convention","id":"31","title":"3. Notation and Convention"},"310":{"body":"One motivation for the Technical Fellowship is to provide an incentive mechanism that can induct and retain technical talent for the continued progress of the network. In order for members to uphold their commitment to the network, they should receive support to ensure that their needs are met such that they have the time to dedicate to their work on Polkadot. Given the high expectations of Fellows, it is reasonable to consider contributions and requirements on par with a full-time job. Providing a livable wage to those making such contributions makes it pragmatic to work full-time on Polkadot. Note: Goals of the Fellowship, expectations for each Dan, and conditions for promotion and demotion are all explained in the Manifesto. This RFC is only to propose concrete values for allowances.","breadcrumbs":"RFC-0050: Fellowship Salaries » Motivation","id":"310","title":"Motivation"},"311":{"body":"Fellowship members Polkadot Treasury","breadcrumbs":"RFC-0050: Fellowship Salaries » Stakeholders","id":"311","title":"Stakeholders"},"312":{"body":"This RFC proposes agreeing on salaries relative to a single level, the III Dan. As such, changes to the amount or asset used would only be on a single value, and all others would adjust relatively. A III Dan is someone whose contributions match the expectations of a full-time individual contributor. The salary at this level should be reasonably close to averages in OECD countries. Dan Factor I 0.125 II 0.25 III 1 IV 1.5 V 2.0 VI 2.5 VII 2.5 VIII 2.5 IX 2.5 Note that there is a sizable increase between II Dan (Proficient) and III Dan (Fellow). By the third Dan, it is generally expected that one is working on Polkadot as their primary focus in a full-time capacity.","breadcrumbs":"RFC-0050: Fellowship Salaries » Explanation","id":"312","title":"Explanation"},"313":{"body":"Although the Manifesto (Section 8) specifies a monthly allowance in DOT, this RFC proposes the use of USDT instead. The allowance is meant to provide members stability in meeting their day-to-day needs and recognize contributions. Using USDT provides more stability and less speculation. This RFC proposes that a III Dan earn 80,000 USDT per year. The salary at this level is commensurate with average salaries in OECD countries (note: 77,000 USD in the U.S., with an average engineer at 100,000 USD). The other ranks would thus earn: Dan Annual Salary I 10,000 II 20,000 III 80,000 IV 120,000 V 160,000 VI 200,000 VII 200,000 VIII 200,000 IX 200,000 The salary levels for Architects (IV, V, and VI Dan) are typical of senior engineers. Allowances will be managed by the Salary pallet.","breadcrumbs":"RFC-0050: Fellowship Salaries » Salary Asset","id":"313","title":"Salary Asset"},"314":{"body":"Based on the current membership, the maximum yearly and monthly costs are shown below: Dan Salary Members Yearly Monthly I 10,000 27 270,000 22,500 II 20,000 11 220,000 18,333 III 80,000 8 640,000 53,333 IV 120,000 3 360,000 30,000 V 160,000 5 800,000 66,667 VI 200,000 3 600,000 50,000 > VI 200,000 0 0 0 Total 2,890,000 240,833 Note that these are the maximum amounts; members may choose to take a passive (lower) level. On the other hand, more people will likely join the Fellowship in the coming years.","breadcrumbs":"RFC-0050: Fellowship Salaries » Projections","id":"314","title":"Projections"},"315":{"body":"Updates to these levels, whether relative ratios, the asset used, or the amount, shall be done via RFC.","breadcrumbs":"RFC-0050: Fellowship Salaries » Updates","id":"315","title":"Updates"},"316":{"body":"By not using DOT for payment, the protocol relies on the stability of other assets and the ability to acquire them. However, the asset of choice can be changed in the future.","breadcrumbs":"RFC-0050: Fellowship Salaries » Drawbacks","id":"316","title":"Drawbacks"},"317":{"body":"N/A.","breadcrumbs":"RFC-0050: Fellowship Salaries » Testing, Security, and Privacy","id":"317","title":"Testing, Security, and Privacy"},"318":{"body":"","breadcrumbs":"RFC-0050: Fellowship Salaries » Performance, Ergonomics, and Compatibility","id":"318","title":"Performance, Ergonomics, and Compatibility"},"319":{"body":"N/A","breadcrumbs":"RFC-0050: Fellowship Salaries » Performance","id":"319","title":"Performance"},"32":{"body":"Data structures are primarily defined using standard ASN.1 , syntax with few exceptions: Fixed width integer types are not explicitly defined by ASN.1 standard. Within this document, U denotes a n-bit unsigned integer. Unless explicitly noted, all types must be serialized using SCALE codec. To ensure interoperability of serialized structures, the order of the fields must match the structures definitions found within this document.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3.1. Data Structures Definitions and Encoding","id":"32","title":"3.1. Data Structures Definitions and Encoding"},"320":{"body":"N/A","breadcrumbs":"RFC-0050: Fellowship Salaries » Ergonomics","id":"320","title":"Ergonomics"},"321":{"body":"N/A","breadcrumbs":"RFC-0050: Fellowship Salaries » Compatibility","id":"321","title":"Compatibility"},"322":{"body":"The Polkadot Fellowship Manifesto OECD Average Wages Indeed: Average Salary for Engineers, United States","breadcrumbs":"RFC-0050: Fellowship Salaries » Prior Art and References","id":"322","title":"Prior Art and References"},"323":{"body":"None at present.","breadcrumbs":"RFC-0050: Fellowship Salaries » Unresolved Questions","id":"323","title":"Unresolved Questions"},"324":{"body":"(source) Table of Contents RFC-0056: Enforce only one transaction per notification Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-11-30 Description Modify the transactions notifications protocol to always send only one transaction at a time Authors Pierre Krieger","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » RFC-0056: Enforce only one transaction per notification","id":"324","title":"RFC-0056: Enforce only one transaction per notification"},"325":{"body":"When two peers connect to each other, they open (amongst other things) a so-called \"notifications protocol\" substream dedicated to gossiping transactions to each other. Each notification on this substream currently consists in a SCALE-encoded Vec where Transaction is defined in the runtime. This RFC proposes to modify the format of the notification to become (Compact(1), Transaction). This maintains backwards compatibility, as this new format decodes as a Vec of length equal to 1.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Summary","id":"325","title":"Summary"},"326":{"body":"There exists three motivations behind this change: It is technically impossible to decode a SCALE-encoded Vec into a list of SCALE-encoded transactions without knowing how to decode a Transaction. That's because a Vec consists in several Transactions one after the other in memory, without any delimiter that indicates the end of a transaction and the start of the next. Unfortunately, the format of a Transaction is runtime-specific. This means that the code that receives notifications is necessarily tied to a specific runtime, and it is not possible to write runtime-agnostic code. Notifications protocols are already designed to be optimized to send many items. Currently, when it comes to transactions, each item is a Vec that consists in multiple sub-items of type Transaction. This two-steps hierarchy is completely unnecessary, and was originally written at a time when the networking protocol of Substrate didn't have proper multiplexing. It makes the implementation way more straight-forward by not having to repeat code related to back-pressure. See explanations below.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Motivation","id":"326","title":"Motivation"},"327":{"body":"Low-level developers.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Stakeholders","id":"327","title":"Stakeholders"},"328":{"body":"To give an example, if you send one notification with three transactions, the bytes that are sent on the wire are: concat( leb128(total-size-in-bytes-of-the-rest), scale(compact(3)), scale(transaction1), scale(transaction2), scale(transaction3)\n) But you can also send three notifications of one transaction each, in which case it is: concat( leb128(size(scale(transaction1)) + 1), scale(compact(1)), scale(transaction1), leb128(size(scale(transaction2)) + 1), scale(compact(1)), scale(transaction2), leb128(size(scale(transaction3)) + 1), scale(compact(1)), scale(transaction3)\n) Right now the sender can choose which of the two encoding to use. This RFC proposes to make the second encoding mandatory. The format of the notification would become a SCALE-encoded (Compact(1), Transaction). A SCALE-compact encoded 1 is one byte of value 4. In other words, the format of the notification would become concat(&[4], scale_encoded_transaction). This is equivalent to forcing the Vec to always have a length of 1, and I expect the Substrate implementation to simply modify the sending side to add a for loop that sends one notification per item in the Vec. As explained in the motivation section, this allows extracting scale(transaction) items without having to know how to decode them. By \"flattening\" the two-steps hierarchy, an implementation only needs to back-pressure individual notifications rather than back-pressure notifications and transactions within notifications.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Explanation","id":"328","title":"Explanation"},"329":{"body":"This RFC chooses to maintain backwards compatibility at the cost of introducing a very small wart (the Compact(1)). An alternative could be to introduce a new version of the transactions notifications protocol that sends one Transaction per notification, but this is significantly more complicated to implement and can always be done later in case the Compact(1) is bothersome.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Drawbacks","id":"329","title":"Drawbacks"},"33":{"body":"It is advantageous to make use of code snippets as part of the protocol description. As a convention, the code is formatted in a style similar to Rust , and can make use of the following set of predefined functions: BYTES(x: T): returns an OCTET_STRING that represents the raw byte array of the object x with type T. If T is a VisibleString (ASCII string), it returns the sequence of octets of its ASCII representation. If T is U, it returns the little-endian encoding of the integer U as n/8 octets. U(x: OCTET_STRING): returns a U interpreting x as the little-endian encoding of a n bits unsigned integer. SCALE(x: T): returns an OCTET_STRING representing the SCALE encoding of x with type T. BLAKE2(n: U32, x: OCTET_STRING): returns the standard Blake2b n bytes hash of x as an OCTET_STRING (note this is not equivalent to the truncation of the full 64 bytes Blake2b hash). CONCAT(x₀: OCTET_STRING, ..., xₖ: OCTET_STRING): returns the concatenation of the inputs as an OCTET_STRING. LENGTH(x: OCTET_STRING): returns the number of octets in x as an U32.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3.2. Pseudo-Code","id":"33","title":"3.2. Pseudo-Code"},"330":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Testing, Security, and Privacy","id":"330","title":"Testing, Security, and Privacy"},"331":{"body":"","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Performance, Ergonomics, and Compatibility","id":"331","title":"Performance, Ergonomics, and Compatibility"},"332":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Performance","id":"332","title":"Performance"},"333":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Ergonomics","id":"333","title":"Ergonomics"},"334":{"body":"The change is backwards compatible if done in two steps: modify the sender to always send one transaction per notification, then, after a while, modify the receiver to enforce the new format.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Compatibility","id":"334","title":"Compatibility"},"335":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Prior Art and References","id":"335","title":"Prior Art and References"},"336":{"body":"None.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Unresolved Questions","id":"336","title":"Unresolved Questions"},"337":{"body":"None. This is a simple isolated change.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Future Directions and Related Material","id":"337","title":"Future Directions and Related Material"},"338":{"body":"(source) Table of Contents RFC-0004: Remove the host-side runtime memory allocator Summary Motivation Stakeholders Explanation New host functions Other changes Drawbacks Prior Art Unresolved Questions Future Possibilities Start Date 2023-07-04 Description Update the runtime-host interface to no longer make use of a host-side allocator Authors Pierre Krieger","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » RFC-0004: Remove the host-side runtime memory allocator","id":"338","title":"RFC-0004: Remove the host-side runtime memory allocator"},"339":{"body":"Update the runtime-host interface to no longer make use of a host-side allocator.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Summary","id":"339","title":"Summary"},"34":{"body":"More types and helper functions are introduced incrementally as they become relevant within the document's context. We find this approach more agile, especially given that the set of types used is not overly complex.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3.3. Incremental Introduction of Types and Functions","id":"34","title":"3.3. Incremental Introduction of Types and Functions"},"340":{"body":"The heap allocation of the runtime is currently controlled by the host using a memory allocator on the host side. The API of many host functions consists in allocating a buffer. For example, when calling ext_hashing_twox_256_version_1, the host allocates a 32 bytes buffer using the host allocator, and returns a pointer to this buffer to the runtime. The runtime later has to call ext_allocator_free_version_1 on this pointer in order to free the buffer. Even though no benchmark has been done, it is pretty obvious that this design is very inefficient. To continue with the example of ext_hashing_twox_256_version_1, it would be more efficient to instead write the output hash to a buffer that was allocated by the runtime on its stack and passed by pointer to the function. Allocating a buffer on the stack in the worst case scenario simply consists in decreasing a number, and in the best case scenario is free. Doing so would save many Wasm memory reads and writes by the allocator, and would save a function call to ext_allocator_free_version_1. Furthermore, the existence of the host-side allocator has become questionable over time. It is implemented in a very naive way, and for determinism and backwards compatibility reasons it needs to be implemented exactly identically in every client implementation. Runtimes make substantial use of heap memory allocations, and each allocation needs to go twice through the runtime <-> host boundary (once for allocating and once for freeing). Moving the allocator to the runtime side, while it would increase the size of the runtime, would be a good idea. But before the host-side allocator can be deprecated, all the host functions that make use of it need to be updated to not use it.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Motivation","id":"340","title":"Motivation"},"341":{"body":"No attempt was made at convincing stakeholders.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Stakeholders","id":"341","title":"Stakeholders"},"342":{"body":"","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Explanation","id":"342","title":"Explanation"},"343":{"body":"This section contains a list of new host functions to introduce. (func $ext_storage_read_version_2 (param $key i64) (param $value_out i64) (param $offset i32) (result i64))\n(func $ext_default_child_storage_read_version_2 (param $child_storage_key i64) (param $key i64) (param $value_out i64) (param $offset i32) (result i64)) The signature and behaviour of ext_storage_read_version_2 and ext_default_child_storage_read_version_2 is identical to their version 1 counterparts, but the return value has a different meaning. The new functions directly return the number of bytes that were written in the value_out buffer. If the entry doesn't exist, a value of -1 is returned. Given that the host must never write more bytes than the size of the buffer in value_out, and that the size of this buffer is expressed as a 32 bits number, a 64bits value of -1 is not ambiguous. The runtime execution stops with an error if value_out is outside of the range of the memory of the virtual machine, even if the size of the buffer is 0 or if the amount of data to write would be 0 bytes. (func $ext_storage_next_key_version_2 (param $key i64) (param $out i64) (return i32))\n(func $ext_default_child_storage_next_key_version_2 (param $child_storage_key i64) (param $key i64) (param $out i64) (return i32)) The behaviour of these functions is identical to their version 1 counterparts. Instead of allocating a buffer, writing the next key to it, and returning a pointer to it, the new version of these functions accepts an out parameter containing a pointer-size to the memory location where the host writes the output. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. These functions return the size, in bytes, of the next key, or 0 if there is no next key. If the size of the next key is larger than the buffer in out, the bytes of the key that fit the buffer are written to out and any extra byte that doesn't fit is discarded. Some notes: It is never possible for the next key to be an empty buffer, because an empty key has no preceding key. For this reason, a return value of 0 can unambiguously be used to indicate the lack of next key. The ext_storage_next_key_version_2 and ext_default_child_storage_next_key_version_2 are typically used in order to enumerate keys that starts with a certain prefix. Given that storage keys are constructed by concatenating hashes, the runtime is expected to know the size of the next key and can allocate a buffer that can fit said key. When the next key doesn't belong to the desired prefix, it might not fit the buffer, but given that the start of the key is written to the buffer anyway this can be detected in order to avoid calling the function a second time with a larger buffer. (func $ext_hashing_keccak_256_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_keccak_512_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_sha2_256_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_blake2_128_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_blake2_256_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_twox_64_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_twox_128_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_twox_256_version_2 (param $data i64) (param $out i32))\n(func $ext_trie_blake2_256_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_trie_blake2_256_ordered_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_trie_keccak_256_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_trie_keccak_256_ordered_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_default_child_storage_root_version_3 (param $child_storage_key i64) (param $out i32))\n(func $ext_crypto_ed25519_generate_version_2 (param $key_type_id i32) (param $seed i64) (param $out i32))\n(func $ext_crypto_sr25519_generate_version_2 (param $key_type_id i32) (param $seed i64) (param $out i32) (return i32))\n(func $ext_crypto_ecdsa_generate_version_2 (param $key_type_id i32) (param $seed i64) (param $out i32) (return i32)) The behaviour of these functions is identical to their version 1 or version 2 counterparts. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the new version of these functions accepts an out parameter containing the memory location where the host writes the output. The output is always of a size known at compilation time. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. (func $ext_default_child_storage_root_version_3 (param $child_storage_key i64) (param $out i32))\n(func $ext_storage_root_version_3 (param $out i32)) The behaviour of these functions is identical to their version 1 and version 2 counterparts. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the new versions of these functions accepts an out parameter containing the memory location where the host writes the output. The output is always of a size known at compilation time. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. I have taken the liberty to take the version 1 of these functions as a base rather than the version 2, as a PPP deprecating the version 2 of these functions has previously been accepted: https://github.com/w3f/PPPs/pull/6 . (func $ext_storage_clear_prefix_version_3 (param $prefix i64) (param $limit i64) (param $removed_count_out i32) (return i32))\n(func $ext_default_child_storage_clear_prefix_version_3 (param $child_storage_key i64) (param $prefix i64) (param $limit i64) (param $removed_count_out i32) (return i32))\n(func $ext_default_child_storage_kill_version_4 (param $child_storage_key i64) (param $limit i64) (param $removed_count_out i32) (return i32)) The behaviour of these functions is identical to their version 2 and 3 counterparts. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the version 3 and 4 of these functions accepts a removed_count_out parameter containing the memory location to a 8 bytes buffer where the host writes the number of keys that were removed in little endian. The runtime execution stops with an error if removed_count_out is outside of the range of the memory of the virtual machine. The functions return 1 to indicate that there are keys remaining, and 0 to indicate that all keys have been removed. Note that there is an alternative proposal to add new host functions with the same names: https://github.com/w3f/PPPs/pull/7 . This alternative doesn't conflict with this one except for the version number. One proposal or the other will have to use versions 4 and 5 rather than 3 and 4. (func $ext_crypto_ed25519_sign_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i32))\n(func $ext_crypto_sr25519_sign_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i32))\nfunc $ext_crypto_ecdsa_sign_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i32))\n(func $ext_crypto_ecdsa_sign_prehashed_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i64)) The behaviour of these functions is identical to their version 1 counterparts. The new versions of these functions accept an out parameter containing the memory location where the host writes the signature. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. The signatures are always of a size known at compilation time. On success, these functions return 0. If the public key can't be found in the keystore, these functions return 1 and do not write anything to out. Note that the return value is 0 on success and 1 on failure, while the previous version of these functions write 1 on success (as it represents a SCALE-encoded Some) and 0 on failure (as it represents a SCALE-encoded None). Returning 0 on success and non-zero on failure is consistent with common practices in the C programming language and is less surprising than the opposite. (func $ext_crypto_secp256k1_ecdsa_recover_version_3 (param $sig i32) (param $msg i32) (param $out i32) (return i64))\n(func $ext_crypto_secp256k1_ecdsa_recover_compressed_version_3 (param $sig i32) (param $msg i32) (param $out i32) (return i64)) The behaviour of these functions is identical to their version 2 counterparts. The new versions of these functions accept an out parameter containing the memory location where the host writes the signature. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. The signatures are always of a size known at compilation time. On success, these functions return 0. On failure, these functions return a non-zero value and do not write anything to out. The non-zero value written on failure is: 1: incorrect value of R or S 2: incorrect value of V 3: invalid signature These values are equal to the values returned on error by the version 2 (see https://spec.polkadot.network/chap-host-api#defn-ecdsa-verify-error ), but incremented by 1 in order to reserve 0 for success. (func $ext_crypto_ed25519_num_public_keys_version_1 (param $key_type_id i32) (return i32))\n(func $ext_crypto_ed25519_public_key_version_2 (param $key_type_id i32) (param $key_index i32) (param $out i32))\n(func $ext_crypto_sr25519_num_public_keys_version_1 (param $key_type_id i32) (return i32))\n(func $ext_crypto_sr25519_public_key_version_2 (param $key_type_id i32) (param $key_index i32) (param $out i32))\n(func $ext_crypto_ecdsa_num_public_keys_version_1 (param $key_type_id i32) (return i32))\n(func $ext_crypto_ecdsa_public_key_version_2 (param $key_type_id i32) (param $key_index i32) (param $out i32)) The functions superceded the ext_crypto_ed25519_public_key_version_1, ext_crypto_sr25519_public_key_version_1, and ext_crypto_ecdsa_public_key_version_1 host functions. Instead of calling ext_crypto_ed25519_public_key_version_1 in order to obtain the list of all keys at once, the runtime should instead call ext_crypto_ed25519_num_public_keys_version_1 in order to obtain the number of public keys available, then ext_crypto_ed25519_public_key_version_2 repeatedly. The ext_crypto_ed25519_public_key_version_2 function writes the public key of the given key_index to the memory location designated by out. The key_index must be between 0 (included) and n (excluded), where n is the value returned by ext_crypto_ed25519_num_public_keys_version_1. Execution must trap if n is out of range. The same explanations apply for ext_crypto_sr25519_public_key_version_1 and ext_crypto_ecdsa_public_key_version_1. Host implementers should be aware that the list of public keys (including their ordering) must not change while the runtime is running. This is most likely done by copying the list of all available keys either at the start of the execution or the first time the list is accessed. (func $ext_offchain_http_request_start_version_2 (param $method i64) (param $uri i64) (param $meta i64) (result i32)) The behaviour of this function is identical to its version 1 counterpart. Instead of allocating a buffer, writing the request identifier in it, and returning a pointer to it, the version 2 of this function simply returns the newly-assigned identifier to the HTTP request. On failure, this function returns -1. An identifier of -1 is invalid and is reserved to indicate failure. (func $ext_offchain_http_request_write_body_version_2 (param $method i64) (param $uri i64) (param $meta i64) (result i32))\n(func $ext_offchain_http_response_read_body_version_2 (param $request_id i32) (param $buffer i64) (param $deadline i64) (result i64)) The behaviour of these functions is identical to their version 1 counterpart. Instead of allocating a buffer, writing two bytes in it, and returning a pointer to it, the new version of these functions simply indicates what happened: For ext_offchain_http_request_write_body_version_2, 0 on success. For ext_offchain_http_response_read_body_version_2, 0 or a non-zero number of bytes on success. -1 if the deadline was reached. -2 if there was an I/O error while processing the request. -3 if the identifier of the request is invalid. These values are equal to the values returned on error by the version 1 (see https://spec.polkadot.network/chap-host-api#defn-http-error ), but tweaked in order to reserve positive numbers for success. When it comes to ext_offchain_http_response_read_body_version_2, the host implementers must not read too much data at once in order to not create ambiguity in the returned value. Given that the size of the buffer is always inferior or equal to 4 GiB, this is not a problem. (func $ext_offchain_http_response_wait_version_2 (param $ids i64) (param $deadline i64) (param $out i32)) The behaviour of this function is identical to its version 1 counterpart. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the new version of this function accepts an out parameter containing the memory location where the host writes the output. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. The encoding of the response code is also modified compared to its version 1 counterpart and each response code now encodes to 4 little endian bytes as described below: 100-999: the request has finished with the given HTTP status code. -1 if the deadline was reached. -2 if there was an I/O error while processing the request. -3 if the identifier of the request is invalid. The buffer passed to out must always have a size of 4 * n where n is the number of elements in the ids. (func $ext_offchain_http_response_header_name_version_1 (param $request_id i32) (param $header_index i32) (param $out i64) (result i64))\n(func $ext_offchain_http_response_header_value_version_1 (param $request_id i32) (param $header_index i32) (param $out i64) (result i64)) These functions supercede the ext_offchain_http_response_headers_version_1 host function. Contrary to ext_offchain_http_response_headers_version_1, only one header indicated by header_index can be read at a time. Instead of calling ext_offchain_http_response_headers_version_1 once, the runtime should call ext_offchain_http_response_header_name_version_1 and ext_offchain_http_response_header_value_version_1 multiple times with an increasing header_index, until a value of -1 is returned. These functions accept an out parameter containing a pointer-size to the memory location where the header name or value should be written. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. These functions return the size, in bytes, of the header name or header value. If request doesn't exist or is in an invalid state (as documented for ext_offchain_http_response_headers_version_1) or the header_index is out of range, a value of -1 is returned. Given that the host must never write more bytes than the size of the buffer in out, and that the size of this buffer is expressed as a 32 bits number, a 64bits value of -1 is not ambiguous. If the buffer in out is too small to fit the entire header name of value, only the bytes that fit are written and the rest are discarded. (func $ext_offchain_submit_transaction_version_2 (param $data i64) (return i32))\n(func $ext_offchain_http_request_add_header_version_2 (param $request_id i32) (param $name i64) (param $value i64) (result i32)) Instead of allocating a buffer, writing 1 or 0 in it, and returning a pointer to it, the version 2 of these functions return 0 or 1, where 0 indicates success and 1 indicates failure. The runtime must interpret any non-0 value as failure, but the client must always return 1 in case of failure. (func $ext_offchain_local_storage_read_version_1 (param $kind i32) (param $key i64) (param $value_out i64) (param $offset i32) (result i64)) This function supercedes the ext_offchain_local_storage_get_version_1 host function, and uses an API and logic similar to ext_storage_read_version_2. It reads the offchain local storage key indicated by kind and key starting at the byte indicated by offset, and writes the value to the pointer-size indicated by value_out. The function returns the number of bytes that were written in the value_out buffer. If the entry doesn't exist, a value of -1 is returned. Given that the host must never write more bytes than the size of the buffer in value_out, and that the size of this buffer is expressed as a 32 bits number, a 64bits value of -1 is not ambiguous. The runtime execution stops with an error if value_out is outside of the range of the memory of the virtual machine, even if the size of the buffer is 0 or if the amount of data to write would be 0 bytes. (func $ext_offchain_network_peer_id_version_1 (param $out i64)) This function writes the PeerId of the local node to the memory location indicated by out. A PeerId is always 38 bytes long. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. (func $ext_input_size_version_1 (return i64))\n(func $ext_input_read_version_1 (param $offset i64) (param $out i64)) When a runtime function is called, the host uses the allocator to allocate memory within the runtime where to write some input data. These two new host functions provide an alternative way to access the input that doesn't make use of the allocator. The ext_input_size_version_1 host function returns the size in bytes of the input data. The ext_input_read_version_1 host function copies some data from the input data to the memory of the runtime. The offset parameter indicates the offset within the input data where to start copying, and must be inferior or equal to the value returned by ext_input_size_version_1. The out parameter is a pointer-size containing the buffer where to write to. The runtime execution stops with an error if offset is strictly superior to the size of the input data, or if out is outside of the range of the memory of the virtual machine, even if the amount of data to copy would be 0 bytes.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » New host functions","id":"343","title":"New host functions"},"344":{"body":"In addition to the new host functions, this RFC proposes two changes to the runtime-host interface: The following function signature is now also accepted for runtime entry points: (func (result i64)). Runtimes no longer need to expose a constant named __heap_base. All the host functions that are being superceded by new host functions are now considered deprecated and should no longer be used. The following other host functions are similarly also considered deprecated: ext_storage_get_version_1 ext_default_child_storage_get_version_1 ext_allocator_malloc_version_1 ext_allocator_free_version_1 ext_offchain_network_state_version_1","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Other changes","id":"344","title":"Other changes"},"345":{"body":"This RFC might be difficult to implement in Substrate due to the internal code design. It is not clear to the author of this RFC how difficult it would be.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Drawbacks","id":"345","title":"Drawbacks"},"346":{"body":"The API of these new functions was heavily inspired by API used by the C programming language.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Prior Art","id":"346","title":"Prior Art"},"347":{"body":"The changes in this RFC would need to be benchmarked. This involves implementing the RFC and measuring the speed difference. It is expected that most host functions are faster or equal speed to their deprecated counterparts, with the following exceptions: ext_input_size_version_1/ext_input_read_version_1 is inherently slower than obtaining a buffer with the entire data due to the two extra function calls and the extra copying. However, given that this only happens once per runtime call, the cost is expected to be negligible. The ext_crypto_*_public_keys, ext_offchain_network_state, and ext_offchain_http_* host functions are likely slightly slower than their deprecated counterparts, but given that they are used only in offchain workers this is acceptable. It is unclear how replacing ext_storage_get with ext_storage_read and ext_default_child_storage_get with ext_default_child_storage_read will impact performances. It is unclear how the changes to ext_storage_next_key and ext_default_child_storage_next_key will impact performances.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Unresolved Questions","id":"347","title":"Unresolved Questions"},"348":{"body":"After this RFC, we can remove from the source code of the host the allocator altogether in a future version, by removing support for all the deprecated host functions. This would remove the possibility to synchronize older blocks, which is probably controversial and requires a some preparations that are out of scope of this RFC.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Future Possibilities","id":"348","title":"Future Possibilities"},"349":{"body":"(source) Table of Contents RFC-0006: Dynamic Pricing for Bulk Coretime Sales Summary Motivation Requirements Stakeholders Explanation Overview Parameters Function Pseudo-code Properties of the Curve Example Configurations Drawbacks Prior Art and References Future Possibilities References Start Date July 09, 2023 Description A dynamic pricing model to adapt the regular price for bulk coretime sales Authors Tommi Enenkel (Alice und Bob) License MIT","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » RFC-0006: Dynamic Pricing for Bulk Coretime Sales","id":"349","title":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales"},"35":{"body":"The timeline is segmented into a sequentially ordered sequence of slots . This entire sequence of slots is then further partitioned into distinct segments known as epochs . The Sassafras protocol aims to map each slot within an epoch to the designated validators for that epoch, utilizing a ticketing system. The protocol operation can be roughly divided into five phases:","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4. Protocol Introduction","id":"35","title":"4. Protocol Introduction"},"350":{"body":"This RFC proposes a dynamic pricing model for the sale of Bulk Coretime on the Polkadot UC. The proposed model updates the regular price of cores for each sale period, by taking into account the number of cores sold in the previous sale, as well as a limit of cores and a target number of cores sold. It ensures a minimum price and limits price growth to a maximum price increase factor, while also giving govenance control over the steepness of the price change curve. It allows governance to address challenges arising from changing market conditions and should offer predictable and controlled price adjustments. Accompanying visualizations are provided at [1].","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Summary","id":"350","title":"Summary"},"351":{"body":"RFC-1 proposes periodic Bulk Coretime Sales as a mechanism to sell continouos regions of blockspace (suggested to be 4 weeks in length). A number of Blockspace Regions (compare RFC-1 & RFC-3) are provided for sale to the Broker-Chain each period and shall be sold in a way that provides value-capture for the Polkadot network. The exact pricing mechanism is out of scope for RFC-1 and shall be provided by this RFC. A dynamic pricing model is needed. A limited number of Regions are offered for sale each period. The model needs to find the price for a period based on supply and demand of the previous period. The model shall give Coretime consumers predictability about upcoming price developments and confidence that Polkadot governance can adapt the pricing model to changing market conditions.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Motivation","id":"351","title":"Motivation"},"352":{"body":"The solution SHOULD provide a dynamic pricing model that increases price with growing demand and reduces price with shrinking demand. The solution SHOULD have a slow rate of change for price if the number of Regions sold is close to a given sales target and increase the rate of change as the number of sales deviates from the target. The solution SHOULD provide the possibility to always have a minimum price per Region. The solution SHOULD provide a maximum factor of price increase should the limit of Regions sold per period be reached. The solution should allow governance to control the steepness of the price function","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Requirements","id":"352","title":"Requirements"},"353":{"body":"The primary stakeholders of this RFC are: Protocol researchers and evelopers Polkadot DOT token holders Polkadot parachains teams Brokers involved in the trade of Bulk Coretime","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Stakeholders","id":"353","title":"Stakeholders"},"354":{"body":"","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Explanation","id":"354","title":"Explanation"},"355":{"body":"The dynamic pricing model sets the new price based on supply and demand in the previous period. The model is a function of the number of Regions sold, piecewise-defined by two power functions. The left side ranges from 0 to the target. It represents situations where demand was lower than the target. The right side ranges from the target to limit. It represents situations where demand was higher than the target. The curve of the function forms a plateau around the target and then falls off to the left and rises up to the right. The shape of the plateau can be controlled via a scale factor for the left side and right side of the function respectively.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Overview","id":"355","title":"Overview"},"356":{"body":"From here on, we will also refer to Regions sold as 'cores' to stay congruent with RFC-1. Name Suggested Value Description Constraints BULK_LIMIT 45 The maximum number of cores being sold 0 < BULK_LIMIT BULK_TARGET 30 The target number of cores being sold 0 < BULK_TARGET <= BULK_LIMIT MIN_PRICE 1 The minimum price a core will always cost. 0 < MIN_PRICE MAX_PRICE_INCREASE_FACTOR 2 The maximum factor by which the price can change. 1 < MAX_PRICE_INCREASE_FACTOR SCALE_DOWN 2 The steepness of the left side of the function. 0 < SCALE_DOWN SCALE_UP 2 The steepness of the right side of the function. 0 < SCALE_UP","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Parameters","id":"356","title":"Parameters"},"357":{"body":"P(n) = \\begin{cases} (P_{\\text{old}} - P_{\\text{min}}) \\left(1 - \\left(\\frac{T - n}{T}\\right)^d\\right) + P_{\\text{min}} & \\text{if } n \\leq T \\\\ ((F - 1) \\cdot P_{\\text{old}} \\cdot \\left(\\frac{n - T}{L - T}\\right)^u) + P_{\\text{old}} & \\text{if } n > T \\end{cases} $P_{\\text{old}}$ is the old_price, the price of a core in the previous period. $P_{\\text{min}}$ is the MIN_PRICE, the minimum price a core will always cost. $F$ is the MAX_PRICE_INCREASE_FACTOR, the factor by which the price maximally can change from one period to another. $d$ is the SCALE_DOWN, the steepness of the left side of the function. $u$ is the SCALE_UP, the steepness of the right side of the function. $T$ is the BULK_TARGET, the target number of cores being sold. $L$ is the BULK_LIMIT, the maximum number of cores being sold. $n$ is cores_sold, the number of cores being sold. Left side The left side is a power function that describes an increasing concave downward curvature that approaches old_price. We realize this by using the form $y = a(1 - x^d)$, usually used as a downward sloping curve, but in our case flipped horizontally by letting the argument $x = \\frac{T-n}{T}$ decrease with $n$, doubly inversing the curve. This approach is chosen over a decaying exponential because it let's us a better control the shape of the plateau, especially allowing us to get a straight line by setting SCALE_DOWN to $1$. Ride side The right side is a power function of the form $y = a(x^u)$.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Function","id":"357","title":"Function"},"358":{"body":"NEW_PRICE := IF CORES_SOLD <= BULK_TARGET THEN (OLD_PRICE - MIN_PRICE) * (1 - ((BULK_TARGET - CORES_SOLD)^SCALE_DOWN / BULK_TARGET^SCALE_DOWN)) + MIN_PRICE\nELSE ((MAX_PRICE_INCREASE_FACTOR - 1) * OLD_PRICE * ((CORES_SOLD - BULK_TARGET)^SCALE_UP / (BULK_LIMIT - BULK_TARGET)^SCALE_UP)) + OLD_PRICE\nEND IF","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Pseudo-code","id":"358","title":"Pseudo-code"},"359":{"body":"Minimum Price We introduce MIN_PRICE to control the minimum price. The left side of the function shall be allowed to come close to 0 if cores sold approaches 0. The rationale is that if there are actually 0 cores sold, the previous sale price was too high and the price needs to adapt quickly. Price forms a plateau around the target If the number of cores is close to BULK_TARGET, less extreme price changes might be sensible. This ensures that a drop in sold cores or an increase doesn’t lead to immediate price changes, but rather slowly adapts. Only if more extreme changes in the number of sold cores occur, does the price slope increase. We introduce SCALE_DOWN and SCALE_UP to control for the steepness of the left and the right side of the function respectively. Max price increase factor We introduce MAX_PRICE_INCREASE_FACTOR as the factor that controls how much the price may increase from one period to another. Introducing this variable gives governance an additional control lever and avoids the necessity for a future runtime upgrade.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Properties of the Curve","id":"359","title":"Properties of the Curve"},"36":{"body":"Each of the validators associated to the target epoch generates and submits a set of candidate tickets to the blockchain. Every ticket is bundled with an anonymous proof of validity.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.1. Submission of Candidate Tickets","id":"36","title":"4.1. Submission of Candidate Tickets"},"360":{"body":"Baseline This example proposes the baseline parameters. If not mentioned otherwise, other examples use these values. The minimum price of a core is 1 DOT, the price can double every 4 weeks. Price change around BULK_TARGET is dampened slightly. BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 2\nSCALE_DOWN = 2\nSCALE_UP = 2\nOLD_PRICE = 1000 More aggressive pricing We might want to have a more aggressive price growth, allowing the price to triple every 4 weeks and have a linear increase in price on the right side. BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 3\nSCALE_DOWN = 2\nSCALE_UP = 1\nOLD_PRICE = 1000 Conservative pricing to ensure quick corrections in an affluent market If governance considers the risk that a sudden surge in DOT price might price chains out from bulk coretime markets, it can ensure the model quickly reacts to a quick drop in demand, by setting 0 < SCALE_DOWN < 1 and setting the max price increase factor more conservatively. BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 1.5\nSCALE_DOWN = 0.5\nSCALE_UP = 2\nOLD_PRICE = 1000 Linear pricing By setting the scaling factors to 1 and potentially adapting the max price increase, we can achieve a linear function BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 1.5\nSCALE_DOWN = 1\nSCALE_UP = 1\nOLD_PRICE = 1000","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Example Configurations","id":"360","title":"Example Configurations"},"361":{"body":"None at present.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Drawbacks","id":"361","title":"Drawbacks"},"362":{"body":"This pricing model is based on the requirements from the basic linear solution proposed in RFC-1, which is a simple dynamic pricing model and only used as proof. The present model adds additional considerations to make the model more adaptable under real conditions.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Prior Art and References","id":"362","title":"Prior Art and References"},"363":{"body":"This RFC, if accepted, shall be implemented in conjunction with RFC-1.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Future Possibilities","id":"363","title":"Future Possibilities"},"364":{"body":"[1] Polkadot forum post with visualizations: Dynamic Pricing for Bulk Coretime Sales","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » References","id":"364","title":"References"},"365":{"body":"(source) Table of Contents RFC-0009: Improved light client requests networking protocol Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-07-19 Description Modify the networking storage read requests to solve some problems with the existing one Authors Pierre Krieger","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » RFC-0009: Improved light client requests networking protocol","id":"365","title":"RFC-0009: Improved light client requests networking protocol"},"366":{"body":"Improve the networking messages that query storage items from the remote, in order to reduce the bandwidth usage and number of round trips of light clients.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Summary","id":"366","title":"Summary"},"367":{"body":"Clients on the Polkadot peer-to-peer network can be divided into two categories: full nodes and light clients. So-called full nodes are nodes that store the content of the chain locally on their disk, while light clients are nodes that don't. In order to access for example the balance of an account, a full node can do a disk read, while a light client needs to send a network message to a full node and wait for the full node to reply with the desired value. This reply is in the form of a Merkle proof, which makes it possible for the light client to verify the exactness of the value. Unfortunately, this network protocol is suffering from some issues: It is not possible for the querier to check whether a key exists in the storage of the chain except by querying the value of that key. The reply will thus include the value of the key, only for that value to be discarded by the querier that isn't interested by it. This is a waste of bandwidth. It is not possible for the querier to know whether a value in the storage of the chain has been modified between two blocks except by querying this value for both blocks and comparing them. Only a few storage values get modified in a block, and thus most of the time the comparison will be equal. This leads to a waste of bandwidth as the values have to be transferred. While it is possible to ask for multiple specific storage keys at the same time, it is not possible to ask for a list of keys that start with a certain prefix. Due to the way FRAME works, storage keys are grouped by \"prefix\", for example all account balances start with the same prefix. It is thus a common necessity for a light client to obtain the list of all keys (and possibly their values) that start with a specific prefix. This is currently not possible except by performing multiple queries serially that \"walk down\" the trie. Once Polkadot and Kusama will have transitioned to state_version = 1, which modifies the format of the trie entries, it will be possible to generate Merkle proofs that contain only the hashes of values in the storage. Thanks to this, it is already possible to prove the existence of a key without sending its entire value (only its hash), or to prove that a value has changed or not between two blocks (by sending just their hashes). Thus, the only reason why aforementioned issues exist is because the existing networking messages don't give the possibility for the querier to query this. This is what this proposal aims at fixing.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Motivation","id":"367","title":"Motivation"},"368":{"body":"This is the continuation of https://github.com/w3f/PPPs/pull/10, which itself is the continuation of https://github.com/w3f/PPPs/pull/5.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Stakeholders","id":"368","title":"Stakeholders"},"369":{"body":"The protobuf schema of the networking protocol can be found here: https://github.com/paritytech/substrate/blob/5b6519a7ff4a2d3cc424d78bc4830688f3b184c0/client/network/light/src/schema/light.v1.proto The proposal is to modify this protocol in this way: @@ -11,6 +11,7 @@ message Request { RemoteReadRequest remote_read_request = 2; RemoteReadChildRequest remote_read_child_request = 4; // Note: ids 3 and 5 were used in the past. It would be preferable to not re-use them.\n+ RemoteReadRequestV2 remote_read_request_v2 = 6; } } @@ -48,6 +49,21 @@ message RemoteReadRequest { repeated bytes keys = 3; } +message RemoteReadRequestV2 {\n+ required bytes block = 1;\n+ optional ChildTrieInfo child_trie_info = 2; // Read from the main trie if missing.\n+ repeated Key keys = 3;\n+ optional bytes onlyKeysAfter = 4;\n+ optional bool onlyKeysAfterIgnoreLastNibble = 5;\n+}\n+\n+message ChildTrieInfo {\n+ enum ChildTrieNamespace {\n+ DEFAULT = 1;\n+ }\n+\n+ required bytes hash = 1;\n+ required ChildTrieNamespace namespace = 2;\n+}\n+ // Remote read response. message RemoteReadResponse { // Read proof. If missing, indicates that the remote couldn't answer, for example because\n@@ -65,3 +81,8 @@ message RemoteReadChildRequest { // Storage keys. repeated bytes keys = 6; }\n+\n+message Key {\n+ required bytes key = 1;\n+ optional bool skipValue = 2; // Defaults to `false` if missing\n+ optional bool includeDescendants = 3; // Defaults to `false` if missing\n+} Note that the field names aren't very important as they are not sent over the wire. They can be changed at any time without any consequence. I would invite people to not discuss these field names as they are implementation details. This diff adds a new type of request (RemoteReadRequestV2). The new child_trie_info field in the request makes it possible to specify which trie is concerned by the request. The current networking protocol uses two different structs (RemoteReadRequest and RemoteReadChildRequest) for main trie and child trie queries, while this new request would make it possible to query either. This change doesn't fix any of the issues mentioned in the previous section, but is a side change that has been done for simplicity. An alternative could have been to specify the child_trie_info for each individual Key. However this would make it necessary to send the child trie hash many times over the network, which leads to a waste of bandwidth, and in my opinion makes things more complicated for no actual gain. If a querier would like to access more than one trie at the same time, it is always possible to send one query per trie. If skipValue is true for a Key, then the value associated with this key isn't important to the querier, and the replier is encouraged to replace the value with its hash provided that the storage item has a state_version equal to 1. If the storage value has a state_version equal to 0, then the optimization isn't possible and the replier should behave as if skipValue was false. If includeDescendants is true for a Key, then the replier must also include in the proof all keys that are descendant of the given key (in other words, its children, children of children, children of children of children, etc.). It must do so even if key itself doesn't have any storage value associated to it. The values of all of these descendants are replaced with their hashes if skipValue is true, similarly to key itself. The optional onlyKeysAfter and onlyKeysAfterIgnoreLastNibble fields can provide a lower bound for the keys contained in the proof. The responder must not include in its proof any node whose key is strictly inferior to the value in onlyKeysAfter. If onlyKeysAfterIgnoreLastNibble is provided, then the last 4 bits for onlyKeysAfter must be ignored. This makes it possible to represent a trie branch node that doesn't have an even number of nibbles. If no onlyKeysAfter is provided, it is equivalent to being empty, meaning that the response must start with the root node of the trie. If onlyKeysAfterIgnoreLastNibble is missing, it is equivalent to false. If onlyKeysAfterIgnoreLastNibble is true and onlyKeysAfter is missing or empty, then the request is invalid. For the purpose of this networking protocol, it should be considered as if the main trie contained an entry for each default child trie whose key is concat(\":child_storage:default:\", child_trie_hash) and whose value is equal to the trie root hash of that default child trie. This behavior is consistent with what the host functions observe when querying the storage. This behavior is present in the existing networking protocol, in other words this proposal doesn't change anything to the situation, but it is worth mentioning. Also note that child tries aren't considered as descendants of the main trie when it comes to the includeDescendants flag. In other words, if the request concerns the main trie, no content coming from child tries is ever sent back. This protocol keeps the same maximum response size limit as currently exists (16 MiB). It is not possible for the querier to know in advance whether its query will lead to a reply that exceeds the maximum size. If the reply is too large, the replier should send back only a limited number (but at least one) of requested items in the proof. The querier should then send additional requests for the rest of the items. A response containing none of the requested items is invalid. The server is allowed to silently discard some keys of the request if it judges that the number of requested keys is too high. This is in line with the fact that the server might truncate the response.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Explanation","id":"369","title":"Explanation"},"37":{"body":"Each candidate ticket undergoes a validation process for the associated validity proof and compliance with other protocol-specific constraints.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.2. Validation of Candidate Tickets","id":"37","title":"4.2. Validation of Candidate Tickets"},"370":{"body":"This proposal doesn't handle one specific situation: what if a proof containing a single specific item would exceed the response size limit? For example, if the response size limit was 1 MiB, querying the runtime code (which is typically 1.0 to 1.5 MiB) would be impossible as it's impossible to generate a proof less than 1 MiB. The response size limit is currently 16 MiB, meaning that no single storage item must exceed 16 MiB. Unfortunately, because it's impossible to verify a Merkle proof before having received it entirely, parsing the proof in a streaming way is also not possible. A way to solve this issue would be to Merkle-ize large storage items, so that a proof could include only a portion of a large storage item. Since this would require a change to the trie format, it is not realistically feasible in a short time frame.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Drawbacks","id":"370","title":"Drawbacks"},"371":{"body":"The main security consideration concerns the size of replies and the resources necessary to generate them. It is for example easily possible to ask for all keys and values of the chain, which would take a very long time to generate. Since responses to this networking protocol have a maximum size, the replier should truncate proofs that would lead to the response being too large. Note that it is already possible to send a query that would lead to a very large reply with the existing network protocol. The only thing that this proposal changes is that it would make it less complicated to perform such an attack. Implementers of the replier side should be careful to detect early on when a reply would exceed the maximum reply size, rather than inconditionally generate a reply, as this could take a very large amount of CPU, disk I/O, and memory. Existing implementations might currently be accidentally protected from such an attack thanks to the fact that requests have a maximum size, and thus that the list of keys in the query was bounded. After this proposal, this accidental protection would no longer exist. Malicious server nodes might truncate Merkle proofs even when they don't strictly need to, and it is not possible for the client to (easily) detect this situation. However, malicious server nodes can already do undesirable things such as throttle down their upload bandwidth or simply not respond. There is no need to handle unnecessarily truncated Merkle proofs any differently than a server simply not answering the request.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Testing, Security, and Privacy","id":"371","title":"Testing, Security, and Privacy"},"372":{"body":"","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Performance, Ergonomics, and Compatibility","id":"372","title":"Performance, Ergonomics, and Compatibility"},"373":{"body":"It is unclear to the author of the RFC what the performance implications are. Servers are supposed to have limits to the amount of resources they use to respond to requests, and as such the worst that can happen is that light client requests become a bit slower than they currently are.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Performance","id":"373","title":"Performance"},"374":{"body":"Irrelevant.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Ergonomics","id":"374","title":"Ergonomics"},"375":{"body":"The prior networking protocol is maintained for now. The older version of this protocol could get removed in a long time.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Compatibility","id":"375","title":"Compatibility"},"376":{"body":"None. This RFC is a clean-up of an existing mechanism.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Prior Art and References","id":"376","title":"Prior Art and References"},"377":{"body":"None","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Unresolved Questions","id":"377","title":"Unresolved Questions"},"378":{"body":"The current networking protocol could be deprecated in a long time. Additionally, the current \"state requests\" protocol (used for warp syncing) could also be deprecated in favor of this one.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Future Directions and Related Material","id":"378","title":"Future Directions and Related Material"},"379":{"body":"(source) Table of Contents RFC-0010: Burn Coretime Revenue Summary Motivation Stakeholders Explanation Start Date 19.07.2023 Description Revenue from Coretime sales should be burned Authors Jonas Gehrlein","breadcrumbs":"RFC-0010: Burn Coretime Revenue » RFC-0010: Burn Coretime Revenue","id":"379","title":"RFC-0010: Burn Coretime Revenue"},"38":{"body":"After collecting all valid candidate tickets, a deterministic method is used to uniquely associate a subset of these tickets with the slots of the target epoch.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.3. Tickets and Slots Binding","id":"38","title":"4.3. Tickets and Slots Binding"},"380":{"body":"The Polkadot UC will generate revenue from the sale of available Coretime. The question then arises: how should we handle these revenues? Broadly, there are two reasonable paths – burning the revenue and thereby removing it from total issuance or divert it to the Treasury. This Request for Comment (RFC) presents arguments favoring burning as the preferred mechanism for handling revenues from Coretime sales.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Summary","id":"380","title":"Summary"},"381":{"body":"How to handle the revenue accrued from Coretime sales is an important economic question that influences the value of DOT and should be properly discussed before deciding for either of the options. Now is the best time to start this discussion.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Motivation","id":"381","title":"Motivation"},"382":{"body":"Polkadot DOT token holders.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Stakeholders","id":"382","title":"Stakeholders"},"383":{"body":"This RFC discusses potential benefits of burning the revenue accrued from Coretime sales instead of diverting them to Treasury. Here are the following arguments for it. It's in the interest of the Polkadot community to have a consistent and predictable Treasury income, because volatility in the inflow can be damaging, especially in situations when it is insufficient. As such, this RFC operates under the presumption of a steady and sustainable Treasury income flow, which is crucial for the Polkadot community's stability. The assurance of a predictable Treasury income, as outlined in a prior discussion here , or through other equally effective measures, serves as a baseline assumption for this argument. Consequently, we need not concern ourselves with this particular issue here. This naturally begs the question - why should we introduce additional volatility to the Treasury by aligning it with the variable Coretime sales? It's worth noting that Coretime revenues often exhibit an inverse relationship with periods when Treasury spending should ideally be ramped up. During periods of low Coretime utilization (indicated by lower revenue), Treasury should spend more on projects and endeavours to increase the demand for Coretime. This pattern underscores that Coretime sales, by their very nature, are an inconsistent and unpredictable source of funding for the Treasury. Given the importance of maintaining a steady and predictable inflow, it's unnecessary to rely on another volatile mechanism. Some might argue that we could have both: a steady inflow (from inflation) and some added bonus from Coretime sales, but burning the revenue would offer further benefits as described below. Balancing Inflation: While DOT as a utility token inherently profits from a (reasonable) net inflation, it also benefits from a deflationary force that functions as a counterbalance to the overall inflation. Right now, the only mechanism on Polkadot that burns fees is the one for underutilized DOT in the Treasury. Finding other, more direct target for burns makes sense and the Coretime market is a good option. Clear incentives: By burning the revenue accrued on Coretime sales, prices paid by buyers are clearly costs. This removes distortion from the market that might arise when the paid tokens occur on some other places within the network. In that case, some actors might have secondary motives of influencing the price of Coretime sales, because they benefit down the line. For example, actors that actively participate in the Coretime sales are likely to also benefit from a higher Treasury balance, because they might frequently request funds for their projects. While those effects might appear far-fetched, they could accumulate. Burning the revenues makes sure that the prices paid are clearly costs to the actors themselves. Collective Value Accrual: Following the previous argument, burning the revenue also generates some externality, because it reduces the overall issuance of DOT and thereby increases the value of each remaining token. In contrast to the aforementioned argument, this benefits all token holders collectively and equally. Therefore, I'd consider this as the preferrable option, because burns lets all token holders participate at Polkadot's success as Coretime usage increases.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Explanation","id":"383","title":"Explanation"},"384":{"body":"(source) Table of Contents RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs Summary Motivation Stakeholders Explanation Core::initialize_block BlockBuilder::last_inherent Combined Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date July 24, 2023 Description Prepare the BlockBuilder and Core Runtime APIs for Multi-Block-Migrations. Authors Oliver Tale-Yazdi","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs","id":"384","title":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs"},"385":{"body":"Introduces breaking changes to the BlockBuilder and Core runtime APIs. A new function BlockBuilder::last_inherent is introduced and the return value of Core::initialize_block is changed to an enum. The versions of both APIs are bumped; BlockBuilder to 7 and Core to 5.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Summary","id":"385","title":"Summary"},"386":{"body":"There are three main features that motivate for this RFC: Multi-Block-Migrations: These make it possible to split a migration over multiple blocks. Pallet poll hook: Can be used to gradually replace on_initialize/on_finalize in places where the code does not need to run by a hard deadline, since it is not guaranteed to execute each block. New callback System::PostInherents: Can replace on_initialize/on_finalize where a hard deadline is required (complements poll). It is guaranteed to execute each block. These three features can be implemented when fulfilling these two requirements: The runtime can tell the block author to not include any transactions in the block. The runtime can execute logic right after all pallet-provided inherents have been applied.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Motivation","id":"386","title":"Motivation"},"387":{"body":"Substrate Maintainers: They have to implement this, including tests, audit and maintenance burden. Polkadot Runtime developers: They will have to adapt the runtime files to this breaking change. Polkadot Parachain Teams: They also have to adapt to the breaking changes but then eventually have multi-block migrations available.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Stakeholders","id":"387","title":"Stakeholders"},"388":{"body":"","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Explanation","id":"388","title":"Explanation"},"389":{"body":"This runtime API function is changed from returning () to ExtrinsicInclusionMode: enum ExtrinsicInclusionMode { /// All extrinsics are allowed in this block. AllExtrinsics, /// Only inherents are allowed in this block. OnlyInherents,\n} A block author MUST respect the ExtrinsicInclusionMode that is returned by initialize_block. The runtime MUST reject blocks that do have forbidden extrinsics in them.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Core::initialize_block","id":"389","title":"Core::initialize_block"},"39":{"body":"During the block production phase of the target epoch, validators are required to demonstrate their ownership of tickets. This step discloses the identity of the ticket owners.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.4. Claim of Ticket Ownership","id":"39","title":"4.4. Claim of Ticket Ownership"},"390":{"body":"A block author MUST always invoke last_inherent directly after applying all runtime-provided inherents. The runtime MUST reject blocks that violate this requirement.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » BlockBuilder::last_inherent","id":"390","title":"BlockBuilder::last_inherent"},"391":{"body":"Coming back to the three main features and how they can be implemented with these runtime APIs changes: 1. Multi-Block-Migrations : The runtime is being put into lock-down mode for the duration of the migration process by returning OnlyInherents from initialize_block. This ensures that no user provided transaction can interfere with the migration process. It is absolutely necessary to ensure this, since otherwise a transaction could call into un-migrated storage and violate storage invariants. The entry-point for the MBM logic is last_inherent. This is a good spot, because any data that is touched in inherents, is not MBM-migratable anyway. It could also be done before all other inherents or at the end of the block in finalize_block, but there is no downside from doing it in last_inherent and the other two features are in favour of this. 2. poll becomes possible by using last_inherent as entry-point. It would not be possible to use a pallet inherent like System::last_inherent to achieve this for two reasons. First is that pallets do not have access to AllPalletsWithSystem that is required to invoke the poll hook on all pallets. Second is that the runtime does currently not enforce an order of inherents. 3. System::PostInherents can be done in the same manner as poll.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Combined","id":"391","title":"Combined"},"392":{"body":"As noted in the review comments: this cements some assumptions about the order of inherents into the BlockBuilder traits. It was criticized for being to rigid in its assumptions.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Drawbacks","id":"392","title":"Drawbacks"},"393":{"body":"Compliance of a block author can be tested by adding specific code to the last_inherent hook and checking that it always executes. The new logic of initialize_block can be tested by checking that the block-builder will skip transactions and optional hooks when OnlyInherents is returned. Security: n/a Privacy: n/a","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Testing, Security, and Privacy","id":"393","title":"Testing, Security, and Privacy"},"394":{"body":"","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Performance, Ergonomics, and Compatibility","id":"394","title":"Performance, Ergonomics, and Compatibility"},"395":{"body":"The performance overhead is minimal in the sense that no clutter was added after fulfilling the requirements. A slight performance penalty is expected from invoking last_inherent once per block.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Performance","id":"395","title":"Performance"},"396":{"body":"The new interface allows for more extensible runtime logic. In the future, this will be utilized for multi-block-migrations which should be a huge ergonomic advantage for parachain developers.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Ergonomics","id":"396","title":"Ergonomics"},"397":{"body":"The advice here is OPTIONAL and outside of the RFC. To not degrade user experience, it is recommended to ensure that an updated node can still import historic blocks.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Compatibility","id":"397","title":"Compatibility"},"398":{"body":"The RFC is currently being implemented in polkadot-sdk#1781 . Related issues and merge requests: Simple multi block migrations Execute a hook after inherent but before transactions There is no module hook after inherents and before transactions","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Prior Art and References","id":"398","title":"Prior Art and References"},"399":{"body":"Please suggest a better name for BlockExecutiveMode. We already tried: RuntimeExecutiveMode, ExtrinsicInclusionMode. The names of the modes Normal and Minimal were also called AllExtrinsics and OnlyInherents, so if you have naming preferences; please post them. => renamed to ExtrinsicInclusionMode Is post_inherents more consistent instead of last_inherent? Then we should change it. => renamed to last_inherent","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Unresolved Questions","id":"399","title":"Unresolved Questions"},"4":{"body":"Deposit SHOULD be derived from deposit function adjusted by correspoding pricing mechansim.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Requirements","id":"4","title":"Requirements"},"40":{"body":"During block verification, the claim of ticket ownership is validated.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.5. Validation of Ticket Ownership","id":"40","title":"4.5. Validation of Ticket Ownership"},"400":{"body":"The long-term future here is to move the block building logic into the runtime. Currently there is a tight dance between the block author and the runtime; the author has to call into different runtime functions in quick succession and exact order. Any misstep causes the built block to be invalid. This can be unified and simplified by moving both parts of the logic into the runtime.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Future Directions and Related Material","id":"400","title":"Future Directions and Related Material"},"401":{"body":"(source) Table of Contents RFC-0015: Market Design Revisit Summary Motivation Stakeholders Explanation Bulk Markets Benefits of this system Further Discussion Points Drawbacks Prior Art and References Unresolved Questions Start Date 05.08.2023 Description This RFC refines the previously proposed mechanisms involving the various Coretime markets and presents an integrated framework for harmonious interaction between all markets. Authors Jonas Gehrlein","breadcrumbs":"RFC-0015: Market Design Revisit » RFC-0015: Market Design Revisit","id":"401","title":"RFC-0015: Market Design Revisit"},"402":{"body":"This document is a proposal for restructuring the bulk markets in the Polkadot UC's coretime allocation system to improve efficiency and fairness. The proposal suggests separating the BULK_PERIOD into MARKET_PERIOD and RENEWAL_PERIOD, allowing for a market-driven price discovery through a clearing price Dutch auction during the MARKET_PERIOD followed by renewal offers at the MARKET_PRICE during the RENEWAL_PERIOD. The new system ensures synchronicity between renewal and market prices, fairness among all current tenants, and efficient price discovery, while preserving price caps to provide security for current tenants. It seeks to start a discussion about the possibility of long-term leases.","breadcrumbs":"RFC-0015: Market Design Revisit » Summary","id":"402","title":"Summary"},"403":{"body":"While the initial RFC-1 has provided a robust framework for Coretime allocation within the Polkadot UC, this proposal builds upon its strengths and uses many provided building blocks to address some areas that could be further improved. In particular, this proposal introduces the following changes: It introduces a RESERVE_PRICE that anchors all markets, promoting price synchronicity within the Bulk markets (flexible + renewals). This reduces complexity. This makes sure all consumers pay a closely correlated price for coretime within a BULK_PERIOD. It reverses the order of the market and renewal phase. This allows to fine-tune the price through market forces. It exposes the renewal prices, while still being beneficial for longterm tenants, more to market forces. It removes the LeadIn period and introduces a (from the perspective of the coretime systemchain) passive Settlement Phase, that allows the secondary market to exert it's force. The premise of this proposal is to reduce complexity by introducing a common price (that develops releative to capacity consumption of Polkadot UC), while still allowing for market forces to add efficiency. Longterm lease owners still receive priority IF they can pay (close to) the market price. This prevents a situation where the renewal price significantly diverges from renewal prices which allows for core captures. While maximum price increase certainty might seem contradictory to efficient price discovery, the proposed model aims to balance these elements, utilizing market forces to determine the price and allocate cores effectively within certain bounds. It must be stated, that potential price increases remain predictable (in the worst-case) but could be higher than in the originally proposed design. The argument remains, however, that we need to allow market forces to affect all prices for an efficient Coretime pricing and allocation. Ultimately, this the framework proposed here adheres to all requirements stated in RFC-1.","breadcrumbs":"RFC-0015: Market Design Revisit » Motivation","id":"403","title":"Motivation"},"404":{"body":"Primary stakeholder sets are: Protocol researchers and developers, largely represented by the Polkadot Fellowship and Parity Technologies' Engineering division. Polkadot Parachain teams both present and future, and their users. Polkadot DOT token holders.","breadcrumbs":"RFC-0015: Market Design Revisit » Stakeholders","id":"404","title":"Stakeholders"},"405":{"body":"","breadcrumbs":"RFC-0015: Market Design Revisit » Explanation","id":"405","title":"Explanation"},"406":{"body":"The BULK_PERIOD has been restructured into two primary segments: the MARKET_PERIOD and RENEWAL_PERIOD, along with an auxiliary SETTLEMENT_PERIOD. This latter period doesn't necessitate any actions from the coretime system chain, but it facilitates a more efficient allocation of coretime in secondary markets. A significant departure from the original proposal lies in the timing of renewals, which now occur post-market phase. This adjustment aims to harmonize renewal prices with their market counterparts, ensuring a more consistent and equitable pricing model. Market Period (14 days) During the market period, core sales are conducted through a well-established clearing price Dutch auction that features a RESERVE_PRICE. The price initiates at a premium, designated as PRICE_PREMIUM (for instance, 30%) and descends linearly to the RESERVE_PRICE throughout the duration of the MARKET_PERIOD. Each bidder is expected to submit both their desired price and the quantity (that is, the amount of Coretime) they wish to purchase. To secure these acquisitions, bidders must make a deposit equivalent to their bid multiplied by the chosen quantity, in DOT. The market achieves resolution once all quantities have been sold, or the RESERVE_PRICE has been reached. This situation leads to determining the MARKET_PRICE either by the lowest bid that was successful in clearing the entire market or by the RESERVE_PRICE. This mechanism yields a uniform price, shaped by market forces (refer to the following discussion for an explanation of its benefits). In other words, all buyers pay the same price (per unit of Coretime). Further down the benefits of this variant of a Dutch auction is discussed. Note: In cases where some cores remain unsold in the market, all buyers are obligated to pay the RESERVE_PRICE. Renewal Period (7 days) As the RENEWAL_PERIOD commences, all current tenants are granted the opportunity to renew their cores at a slight discount of MARKET_PRICE * RENEWAL_DISCOUNT (for instance, 10%). This provision affords marginal benefits to existing tenants, balancing out the non-transferability aspect of renewals. At the end of the period, all available cores are allocated to the current tenants who have opted for renewal and the participants who placed bids during the market period. If the demand for cores exceeds supply, the cores left unclaimed from renewals may be awarded to bidders who placed their bids early in the auction, thereby subtly incentivizing early participation. If the supply exceeds the demand, all unsold cores are transferred to the Instantanous Market. Reserve Price Adjustment After all cores are allocated, the RESERVE_PRICE is adjusted following the process described in RFC-1 and serves as baseline price in the next BULK_PERIOD. Note: The particular price curve is outside the scope of the proposal. The MARKET_PRICE (as a function of RESERVE_PRICE), however, is able to capture higher demand very well while being capped downwards. That means, the curve that adjusts the RESERVE_PRICE should be more sensitive to undercapacity. Price Predictability Tasks that are in the \"renewal-pipeline\" can determine the upper bound for the price they will pay in any future period. The main driver of any price increase over time is the adjustment of the RESERVE_PRICE, that occurs at the end of each BULK_PERIOD after determining the capacity fillment of Polkadot UC. To calculate the maximum price in some future period, a task could assume maximum capacity in all upcoming periods and track the resulting price increase of RESERVE_PRICE. In the final period, that price can get a maximum premium of PRICE_PREMIUM and after deducting a potential RENEWAL_DISCOUNT, the maximum price can be determined. Settlement Period (7 days) During the settlement period, participants have ample time to trade Coretime on secondary markets before the onset of the next BULK_PERIOD. This allows for trading with full Coretime availability. Trading transferrable Coretime naturally continues during each BULK_PERIOD, albeit with cores already in use.","breadcrumbs":"RFC-0015: Market Design Revisit » Bulk Markets","id":"406","title":"Bulk Markets"},"407":{"body":"The introduction of a single price, the RESERVE_PRICE, provides an anchor for all Coretime markets. This is a preventative measure against the possible divergence and mismatch of prices, which could inadvertently lead to a situation where existing tenants secure cores at significantly below-market rates. With a more market-responsive pricing system, we can achieve a more efficient price discovery process. Any price increases will be less arbitrary and more dynamic. The ideal strategy for existing tenants is to maintain passivity, i.e., refrain from active market participation and simply accept the offer presented to them during the renewal phase. This approach lessens the organizational overhead for long-term projects. In the two-week market phase, the maximum price increase is known well in advance, providing ample time for tenants to secure necessary funds to meet the potential price escalation. All existing tenants pay an equal amount for Coretime, reflecting our intent to price the Coretime itself and not the relative timing of individual projects. Discussion: Clearing Price Dutch Auctions Having all bidders pay the market clearing price offers some benefits and disadvantages. Advantages: Fairness : All bidders pay the same price. Active participation : Because bidders are protected from overbidding (winner's curse), they are more likely to engage and reveal their true valuations. Simplicity : A single price is easier to work with for pricing renewals later. Truthfulness : There is no need to try to game the market by waiting with bidding. Bidders can just bid their valuations. Disadvantages: (Potentially) Lower Revenue : While the theory predicts revenue-equivalence between a uniform price and pay-as-bid type of auction, slightly lower revenue for the former type is observed empirically. Arguably, revenue maximization (i.e., squeezing out the maximum willingness to pay from bidders) is not the priority for Polkadot UC. Instead, it is interested in efficient allocation and the other benefits illustrated above. (Technical) Complexity : Instead of making a final purchase within the auction, the bid is only a deposit. Some refunds might happen after the auction is finished. This might pose additional challenges from the technical side (e.g., storage requirements).","breadcrumbs":"RFC-0015: Market Design Revisit » Benefits of this system","id":"407","title":"Benefits of this system"},"408":{"body":"Long-term Coretime : The Polkadot UC is undergoing a transition from two-year leases without an instantaneous market to a model encompassing instantaneous and one-month leases. This shift seems to pivot from one extreme to another. While the introduction of short-term leases, both instantaneous and for one month, is a constructive move to lower barriers to entry and promote experimentation, it seems to be the case that established projects might benefit from more extended lease options. We could consider offering another product, such as a six-month Coretime lease, using the same mechanism described herein. Although the majority of leases would still be sold on a one-month basis, the addition of this option would enhance market efficiency as it would strengthen the impact of a secondary market .","breadcrumbs":"RFC-0015: Market Design Revisit » Further Discussion Points","id":"408","title":"Further Discussion Points"},"409":{"body":"There are trade-offs that arise from this proposal, compared to the initial model. The most notable one is that here, I prioritize requirement 6 over requirement 2. The price, in the very \"worst-case\" (meaning a huge explosion in demand for coretime) could lead to a much larger increase of prices in Coretime. From an economic perspective, this (rare edgecase) would also mean that we'd vastly underprice Coretime in the original model, leading to highly inefficient allocations.","breadcrumbs":"RFC-0015: Market Design Revisit » Drawbacks","id":"409","title":"Drawbacks"},"41":{"body":"This chapter provides a high-level overview of the Bandersnatch VRF primitive as it relates to the Sassafras protocol. It's important to note that this section is not intended to serve as an exhaustive exploration of the mathematically intensive foundations of the cryptographic primitive. Rather, its primary aim is to offer a concise and accessible explanation of the primitive's role and usage which is relevant within the scope of this RFC. For an in-depth explanation, refer to the Ring-VRF paper authored by the Web3 foundation research team.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5. Bandersnatch VRFs Cryptographic Primitives","id":"41","title":"5. Bandersnatch VRFs Cryptographic Primitives"},"410":{"body":"This RFC builds extensively on the available ideas put forward in RFC-1 . Additionally, I want to express a special thanks to Samuel Haefner and Shahar Dobzinski for fruitful discussions and helping me structure my thoughts.","breadcrumbs":"RFC-0015: Market Design Revisit » Prior Art and References","id":"410","title":"Prior Art and References"},"411":{"body":"The technical feasability needs to be assessed.","breadcrumbs":"RFC-0015: Market Design Revisit » Unresolved Questions","id":"411","title":"Unresolved Questions"},"412":{"body":"(source) Table of Contents RFC-0020: Treasurer Track Confirmation Period Duration Modification Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics & Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date August 10, 2023 Description Treasurer Track Confirmation Period Duration Modification Authors ChaosDAO","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » RFC-0020: Treasurer Track Confirmation Period Duration Modification","id":"412","title":"RFC-0020: Treasurer Track Confirmation Period Duration Modification"},"413":{"body":"This RFC proposes a change to the duration of the confirmation period for the treasurer track from 3 hours to at least 48 hours.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Summary","id":"413","title":"Summary"},"414":{"body":"Track parameters for Polkadot OpenGov should be configured in a way that their \"difficulty\" increases relative to the power associated with their respective origin. When we look at the confirmation periods for treasury based tracks, we can see that this is clearly the case - with the one notable exception to the trend being the treasurer track: Track Description Confirmation Period Duration Small Tipper 10 Min Big Tipper 1 Hour Small Spender 12 Hours Medium Spender 24 Hours Big Spender 48 Hours Treasurer 3 Hours The confirmation period is one of the last lines of defence for the collective Polkadot stakeholders to react to a potentially bad referendum and vote NAY in order for its confirmation period to be aborted. Since the power / privilege level of the treasurer track is greater than that of the the big spender track – their confirmation period should be either equal, or the treasurer track's should be higher (note: currently the big spender track has a longer confirmation period than even the root track).","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Motivation","id":"414","title":"Motivation"},"415":{"body":"The primary stakeholders of this RFC are: DOT token holders – as this affects the protocol's treasury Entities wishing to submit a referendum via the treasurer track - as this affects the referendum timeline Projects with governance app integrations - see Performance, Ergonomics, and Compatibility section below. lolmcshizz - expressed interest to change this parameter Leemo - expressed interest to change this parameter Paradox - expressed interest to change this parameter","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Stakeholders","id":"415","title":"Stakeholders"},"416":{"body":"This RFC proposes to change the duration of the confirmation period for the treasurer track. In order to achieve that, the confirm_period parameter for the treasurer track in runtime/polkadot/src/governance/tracks.rs must be changed. Currently it is set to confirm_period: 3 * HOURS It should be changed to confirm_period: 48 * HOURS as a minimum. It may make sense for it to be changed to a value greater than 48 hours since the treasurer track has more power than the big spender track (48 hour confirmation period); however, the root track's confirmation period is 24 hours. 48 hours may be on the upper bounds of a trade-off between security and flexibility.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Explanation","id":"416","title":"Explanation"},"417":{"body":"The drawback of changing the treasurer track's confirmation period would be that the lifecycle of a referendum submitted on the treasurer track would ultimately be longer. However, the security of the protocol and its treasury should take priority here.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Drawbacks","id":"417","title":"Drawbacks"},"418":{"body":"This change will enhance / improve the security of the protocol as it relates to its treasury. The confirmation period is one of the last lines of defence for the collective Polkadot stakeholders to react to a potentially bad referendum and vote NAY in order for its confirmation period to be aborted. It makes sense for the treasurer track's confirmation period duration to be either equal to, or higher than, the big spender track confirmation period.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Testing, Security, and Privacy","id":"418","title":"Testing, Security, and Privacy"},"419":{"body":"","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Performance, Ergonomics, and Compatibility","id":"419","title":"Performance, Ergonomics, and Compatibility"},"42":{"body":"The VRF Input, denoted as VrfInput, is constructed by combining a domain identifier with arbitrary data through the vrf_input function: fn vrf_input(domain: OCTET_STRING, data: OCTET_STRING) -> VrfInput; The specific implementation details of this function are intentionally omitted. A reference implementation is provided by the bandersnatch_vrfs project. The above link points to some temporary code (Transcript label set to \"TemporaryDoNotDeploy\").\nAlso replace with docs.rs link once published to crates.io. Helper function to construct a VrfInput from a sequence of data items: fn vrf_input_from_items(domain: OCTET_STRING, items: SEQUENCE_OF OCTET_STRING) -> VrfInput { let data = OCTET_STRING(SIZE = 0); // empty octet string for item in items { data.append(item); data.append(LENGTH(item) as U8); } return vrf_input(domain, data); } Note that each item length is safely casted to an U8 as: In the context of this protocol all items lengths are less than 256. The function is internal and not designed for generic use.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.1. VRF Input","id":"42","title":"5.1. VRF Input"},"420":{"body":"This is a simple change (code wise) which should not affect the performance of the Polkadot protocol, outside of increasing the duration of the confirmation period on the treasurer track.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Performance","id":"420","title":"Performance"},"421":{"body":"If the proposal alters exposed interfaces to developers or end-users, which types of usage patterns have been optimized for? I have confirmed with the following projects that this is not a breaking change for their governance apps: Nova Wallet - directly uses on-chain data, and change will be automatically reflected. Polkassembly - directly uses on-chain data via rpc to fetch trackInfo so the change will be automatically reflected. SubSquare - scan script will update their app to the latest parameters and it will be automatically reflected in their app.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Ergonomics & Compatibility","id":"421","title":"Ergonomics & Compatibility"},"422":{"body":"N/A","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Prior Art and References","id":"422","title":"Prior Art and References"},"423":{"body":"The proposed change to the confirmation period duration for the treasurer track is to set it to 48 hours. This is equal to the current confirmation period for the big spender track. Typically it seems that track parameters increase in difficulty (duration, etc.) based on the power level of their associated origin. The longest confirmation period is that of the big spender, at 48 hours. There may be value in discussing whether or not the treasurer track confirmation period should be longer than 48 hours – a discussion of the trade-offs between security vs flexibility/agility. As a side note, the root track confirmation period is 24 hours.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Unresolved Questions","id":"423","title":"Unresolved Questions"},"424":{"body":"This RFC hopefully reminds the greater Polkadot community that it is possible to submit changes to the parameters of Polkadot OpenGov, and the greater protocol as a whole through the RFC process.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Future Directions and Related Material","id":"424","title":"Future Directions and Related Material"},"425":{"body":"(source) Table of Contents RFC-0035: Conviction Voting Delegation Modifications Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics & Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material October 10, 2023 Conviction Voting Delegation Modifications ChaosDAO","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » RFC-0035: Conviction Voting Delegation Modifications","id":"425","title":"RFC-0035: Conviction Voting Delegation Modifications"},"426":{"body":"This RFC proposes to make modifications to voting power delegations as part of the Conviction Voting pallet. The changes being proposed include: Allow a Delegator to vote independently of their Delegate if they so desire. Allow nested delegations – for example Charlie delegates to Bob who delegates to Alice – when Alice votes then both Bob and Charlie vote alongside Alice (in the current implementation Charlie will not vote when Alice votes). Make a change so that when a delegate votes abstain their delegated votes also vote abstain. Allow a Delegator to delegate/ undelegate their votes for all tracks with a single call.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Summary","id":"426","title":"Summary"},"427":{"body":"It has become clear since the launch of OpenGov that there are a few common tropes which pop up time and time again: The frequency of referenda is often too high for network participants to have sufficient time to review, comprehend, and ultimately vote on each individual referendum. This means that these network participants end up being inactive in on-chain governance. There are active network participants who are reviewing every referendum and are providing feedback in an attempt to help make the network thrive – but often time these participants do not control enough voting power to influence the network with their positive efforts. Delegating votes for all tracks currently requires long batched calls which result in high fees for the Delegator - resulting in a reluctance from many to delegate their votes. We believe (based on feedback from token holders with a larger stake in the network) that if there were some changes made to delegation mechanics, these larger stake holders would be more likely to delegate their voting power to active network participants – thus greatly increasing the support turnout.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Motivation","id":"427","title":"Motivation"},"428":{"body":"The primary stakeholders of this RFC are: The Polkadot Technical Fellowship who will have to research and implement the technical aspects of this RFC DOT token holders in general","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Stakeholders","id":"428","title":"Stakeholders"},"429":{"body":"This RFC proposes to make 4 changes to the convictionVoting pallet logic in order to improve the user experience of those delegating their voting power to another account. Allow a Delegator to vote independently of their Delegate if they so desire – this would empower network participants to more actively delegate their voting power to active voters, removing the tedious steps of having to undelegate across an entire track every time they do not agree with their delegate's voting direction for a particular referendum. Allow nested delegations – for example Charlie delegates to Bob who delegates to Alice – when Alice votes then both Bob and Charlie vote alongside Alice (in the current runtime Charlie will not vote when Alice votes) – This would allow network participants who control multiple (possibly derived) accounts to be able to delegate all of their voting power to a single account under their control, which would in turn delegate to a more active voting participant. Then if the delegator wishes to vote independently of their delegate they can control all of their voting power from a single account, which again removes the pain point of having to issue multiple undelegate extrinsics in the event that they disagree with their delegate. Have delegated votes follow their delegates abstain votes – there are times where delegates may vote abstain on a particular referendum and adding this functionality will increase the support of a particular referendum. It has a secondary benefit of meaning that Validators who are delegating their voting power do not lose points in the 1KV program in the event that their delegate votes abstain (another pain point which may be preventing those network participants from delegating). Allow a Delegator to delegate/ undelegate their votes for all tracks with a single call - in order to delegate votes across all tracks, a user must batch 15 calls - resulting in high costs for delegation. A single call for delegate_all/ undelegate_all would reduce the complexity and therefore costs of delegations considerably for prospective Delegators.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Explanation","id":"429","title":"Explanation"},"43":{"body":"Functionally, the VrfPreOutput can be considered as a seed for a PRNG to produce an arbitrary number of output bytes. It is computed as function of a VrfInput and a BandersnatchSecretKey. Two different approaches can be used to generate it: as a standalone object or as part of a signature. While the resulting VrfPreOutput is identical in both cases, the legitimacy of the latter can be confirmed by verifying the signature using the BandersnatchPublicKey of the expected signer. When constructed as a standalone object, VrfPreOutput is primarily employed in situations where the secret key owner needs to check if the generated output bytes fulfill some context specific criteria before applying the signature. To facilitate the construction, the following helper function is provided: fn vrf_pre_output(secret: BandernatchSecretKey, input: VrfInput) -> VrfPreOutput; An additional helper function is provided for producing an arbitrary number of output bytes from VrfInput and VrfPreOutput: fn vrf_bytes(len: U32, input: VrfInput, pre_output: VrfPreOuput) -> OCTET_STRING; Similar to the vrf_input function, the details about the implementation of these functions is omitted. Reference implementations are provided by the dleq_vrfs project vrf_pre_output vrf_bytes","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.2. VRF PreOutput","id":"43","title":"5.2. VRF PreOutput"},"430":{"body":"We do not foresee any drawbacks by implementing these changes. If anything we believe that this should help to increase overall voter turnout (via the means of delegation) which we see as a net positive.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Drawbacks","id":"430","title":"Drawbacks"},"431":{"body":"We feel that the Polkadot Technical Fellowship would be the most competent collective to identify the testing requirements for the ideas presented in this RFC.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Testing, Security, and Privacy","id":"431","title":"Testing, Security, and Privacy"},"432":{"body":"","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Performance, Ergonomics, and Compatibility","id":"432","title":"Performance, Ergonomics, and Compatibility"},"433":{"body":"This change may add extra chain storage requirements on Polkadot, especially with respect to nested delegations.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Performance","id":"433","title":"Performance"},"434":{"body":"The change to add nested delegations may affect governance interfaces such as Nova Wallet who will have to apply changes to their indexers to support nested delegations. It may also affect the Polkadot Delegation Dashboard as well as Polkassembly & SubSquare. We want to highlight the importance for ecosystem builders to create a mechanism for indexers and wallets to be able to understand that changes have occurred such as increasing the pallet version, etc.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Ergonomics & Compatibility","id":"434","title":"Ergonomics & Compatibility"},"435":{"body":"N/A","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Prior Art and References","id":"435","title":"Prior Art and References"},"436":{"body":"N/A","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Unresolved Questions","id":"436","title":"Unresolved Questions"},"437":{"body":"Additionally we would like to re-open the conversation about the potential for there to be free delegations. This was discussed by Dr Gavin Wood at Sub0 2022 and we feel like this would go a great way towards increasing the amount of network participants that are delegating: https://youtu.be/hSoSA6laK3Q?t=526 Overall, we strongly feel that delegations are a great way to increase voter turnout, and the ideas presented in this RFC would hopefully help in that aspect.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Future Directions and Related Material","id":"437","title":"Future Directions and Related Material"},"438":{"body":"(source) Table of Contents RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization Summary Motivation Stakeholders Explanation Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Start Date 30 October 2023 Description Host function to provide the storage proof size to runtimes. Authors Sebastian Kunert","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization","id":"438","title":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization"},"439":{"body":"This RFC proposes a new host function for parachains, storage_proof_size. It shall provide the size of the currently recorded storage proof to the runtime. Runtime authors can use the proof size to improve block utilization by retroactively reclaiming unused storage weight.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Summary","id":"439","title":"Summary"},"44":{"body":"This section outlines the data to be signed utilizing the VRF primitive: VrfSignatureData ::= SEQUENCE { transcript: Transcript, inputs: SEQUENCE_OF VrfInput } Where: transcript: a Transcript instance. In practice, this is a special hash of some protocol-specific data to sign which doesn't influence the VrfPreOutput. inputs: sequence of VrfInputs to be signed. To simplify the construction of VrfSignatureData objects, a helper function is defined: fn vrf_signature_data( transcript_label: OCTET_STRING, transcript_data: SEQUENCE_OF OCTET_STRING, inputs: SEQUENCE_OF VrfInput ) -> VrfSignatureData { let mut transcript = Transcript::new_labeled(transcript_label); for data in transcript_data { transcript.append(data); } VrfSignatureData { transcript, inputs } }","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.3. VRF Signature Data","id":"44","title":"5.3. VRF Signature Data"},"440":{"body":"The number of extrinsics that are included in a parachain block is limited by two constraints: execution time and proof size. FRAME weights cover both concepts, and block-builders use them to decide how many extrinsics to include in a block. However, these weights are calculated ahead of time by benchmarking on a machine with reference hardware. The execution-time properties of the state-trie and its storage items are unknown at benchmarking time. Therefore, we make some assumptions about the state-trie: Trie Depth: We assume a trie depth to account for intermediary nodes. Storage Item Size: We make a pessimistic assumption based on the MaxEncodedLen trait. These pessimistic assumptions lead to an overestimation of storage weight, negatively impacting block utilization on parachains. In addition, the current model does not account for multiple accesses to the same storage items. While these repetitive accesses will not increase storage-proof size, the runtime-side weight monitoring will account for them multiple times. Since the proof size is completely opaque to the runtime, we can not implement retroactive storage weight correction. A solution must provide a way for the runtime to track the exact storage-proof size consumed on a per-extrinsic basis.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Motivation","id":"440","title":"Motivation"},"441":{"body":"Parachain Teams: They MUST include this host function in their runtime and node. Light-client Implementors: They SHOULD include this host function in their runtime and node.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Stakeholders","id":"441","title":"Stakeholders"},"442":{"body":"This RFC proposes a new host function that exposes the storage-proof size to the runtime. As a result, runtimes can implement storage weight reclaiming mechanisms that improve block utilization. This RFC proposes the following host function signature: fn ext_storage_proof_size_version_1() -> u64; The host function MUST return an unsigned 64-bit integer value representing the current proof size. In block-execution and block-import contexts, this function MUST return the current size of the proof. To achieve this, parachain node implementors need to enable proof recording for block imports. In other contexts, this function MUST return 18446744073709551615 (u64::MAX), which represents disabled proof recording.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Explanation","id":"442","title":"Explanation"},"443":{"body":"","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Performance, Ergonomics, and Compatibility","id":"443","title":"Performance, Ergonomics, and Compatibility"},"444":{"body":"Parachain nodes need to enable proof recording during block import to correctly implement the proposed host function. Benchmarking conducted with balance transfers has shown a performance reduction of around 0.6% when proof recording is enabled.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Performance","id":"444","title":"Performance"},"445":{"body":"The host function proposed in this RFC allows parachain runtime developers to keep track of the proof size. Typical usage patterns would be to keep track of the overall proof size or the difference between subsequent calls to the host function.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Ergonomics","id":"445","title":"Ergonomics"},"446":{"body":"Parachain teams will need to include this host function to upgrade.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Compatibility","id":"446","title":"Compatibility"},"447":{"body":"Pull Request including proposed host function: PoV Reclaim (Clawback) Node Side . Issue with discussion: [FRAME core] Clawback PoV Weights For Dispatchables","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Prior Art and References","id":"447","title":"Prior Art and References"},"448":{"body":"(source) Table of Contents RFC-0044: Rent based registration model Summary Motivation Requirements Stakeholders Explanation Registering an on-demand parachain On-demand parachain pruning Ensuring rent is paid On-demand para re-registration Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 6 November 2023 Description A new rent based parachain registration model Authors Sergej Sakac","breadcrumbs":"RFC-0044: Rent based registration model » RFC-0044: Rent based registration model","id":"448","title":"RFC-0044: Rent based registration model"},"449":{"body":"This RFC proposes a new model for a sustainable on-demand parachain registration, involving a smaller initial deposit and periodic rent payments. The new model considers that on-demand chains may be unregistered and later re-registered. The proposed solution also ensures a quick startup for on-demand chains on Polkadot in such cases.","breadcrumbs":"RFC-0044: Rent based registration model » Summary","id":"449","title":"Summary"},"45":{"body":"Bandersnatch VRF offers two signature flavors: plain signature: much like a traditional Schnorr signature, ring signature: leverages a zk-SNARK to allows for anonymous signatures using a key from a predefined set of enabled keys, known as the ring. 5.4.1. Plain VRF Signature This section describes the signature process for VrfSignatureData using the plain signature flavor. PlainSignature ::= OCTET_STRING; VrfSignature ::= SEQUENCE { signature: PlainSignature, pre_outputs: SEQUENCE-OF VrfPreOutput } Where: signature: the actual plain signature. pre_outputs: sequence of VrfPreOutputs corresponding to the VrfInputs found within the VrfSignatureData. Helper function to construct VrfPlainSignature from VrfSignatureData: BandersnatchSecretKey ::= OCTET_STRING; fn vrf_sign( secret: BandernatchSecretKey, signature_data: VrfSignatureData ) -> VrfSignature Helper function for signature verification returning a BOOLEAN value indicating the validity of the signature (true on success): BandersnatchPublicKey ::= OCTET_STRING; fn vrf_verify( public: BandersnatchPublicKey, signature: VrfSignature ) -> BOOLEAN; In this document, the types BandersnatchSecretKey, BandersnatchPublicKey and PlainSignature are intentionally left undefined. Their definitions can be found in the bandersnatch_vrfs reference implementation. 5.4.2. Ring VRF Signature This section describes the signature process for VrfSignatureData using the ring signature flavor. RingSignature ::= OCTET_STRING; RingVrfSignature ::= SEQUENCE { signature: RingSignature, pre_outputs: SEQUENCE_OF VrfPreOutput } signature: the actual ring signature. pre_outputs: sequence of VrfPreOutputs corresponding to the VrfInputs found within the VrfSignatureData. Helper function to construct RingVrfSignature from VrfSignatureData: BandersnatchRingProverKey ::= OCTET_STRING; fn ring_vrf_sign( secret: BandersnatchRingProverKey, signature_data: VrfSignatureData, ) -> RingVrfSignature; Helper function for signature verification returning a BOOLEAN value indicating the validity of the signature (true on success). BandersnatchRingVerifierKey ::= OCTET_STRING; fn ring_vrf_verify( verifier: BandersnatchRingVerifierKey, signature: RingVrfSignature, ) -> BOOLEAN; Note that this function doesn't require the signer's public key. In this document, the types BandersnatchRingProverKey, BandersnatchRingVerifierKey, and RingSignature are intentionally left undefined. Their definitions can be found in the bandersnatch_vrfs reference implementation.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.4. VRF Signature","id":"45","title":"5.4. VRF Signature"},"450":{"body":"With the support of on-demand parachains on Polkadot, there is a need to explore a new, more cost-effective model for registering validation code. In the current model, the parachain manager is responsible for reserving a unique ParaId and covering the cost of storing the validation code of the parachain. These costs can escalate, particularly if the validation code is large. We need a better, sustainable model for registering on-demand parachains on Polkadot to help smaller teams deploy more easily. This RFC suggests a new payment model to create a more financially viable approach to on-demand parachain registration. In this model, a lower initial deposit is required, followed by recurring payments upon parachain registration. This new model will coexist with the existing one-time deposit payment model, offering teams seeking to deploy on-demand parachains on Polkadot a more cost-effective alternative.","breadcrumbs":"RFC-0044: Rent based registration model » Motivation","id":"450","title":"Motivation"},"451":{"body":"The solution SHOULD NOT affect the current model for registering validation code. The solution SHOULD offer an easily configurable way for governance to adjust the initial deposit and recurring rent cost. The solution SHOULD provide an incentive to prune validation code for which rent is not paid. The solution SHOULD allow anyone to re-register validation code under the same ParaId without the need for redundant pre-checking if it was already verified before. The solution MUST be compatible with the Agile Coretime model, as described in RFC#0001 The solution MUST allow anyone to pay the rent. The solution MUST prevent the removal of validation code if it could still be required for disputes or approval checking.","breadcrumbs":"RFC-0044: Rent based registration model » Requirements","id":"451","title":"Requirements"},"452":{"body":"Future Polkadot on-demand Parachains","breadcrumbs":"RFC-0044: Rent based registration model » Stakeholders","id":"452","title":"Stakeholders"},"453":{"body":"This RFC proposes a set of changes that will enable the new rent based approach to registering and storing validation code on-chain. The new model, compared to the current one, will require periodic rent payments. The parachain won't be pruned automatically if the rent is not paid, but by permitting anyone to prune the parachain and rewarding the caller, there will be an incentive for the removal of the validation code. On-demand parachains should still be able to utilize the current one-time payment model. However, given the size of the deposit required, it's highly likely that most on-demand parachains will opt for the new rent-based model. Importantly, this solution doesn't require any storage migrations in the current system nor does it introduce any breaking changes. The following provides a detailed description of this solution.","breadcrumbs":"RFC-0044: Rent based registration model » Explanation","id":"453","title":"Explanation"},"454":{"body":"In the current implementation of the registrar pallet, there are two constants that specify the necessary deposit for parachains to register and store their validation code: trait Config { // -- snip -- /// The deposit required for reserving a `ParaId`. #[pallet::constant] type ParaDeposit: Get>; /// The deposit to be paid per byte stored on chain. #[pallet::constant] type DataDepositPerByte: Get>;\n} This RFC proposes the addition of three new constants that will determine the payment amount and the frequency of the recurring rent payment: trait Config { // -- snip -- /// Defines how frequently the rent needs to be paid. /// /// The duration is set in sessions instead of block numbers. #[pallet::constant] type RentDuration: Get; /// The initial deposit amount for registering validation code. /// /// This is defined as a proportion of the deposit that would be required in the regular /// model. #[pallet::constant] type RentalDepositProportion: Get; /// The recurring rental cost defined as a proportion of the initial rental registration deposit. #[pallet::constant] type RentalRecurringProportion: Get;\n} Users will be able to reserve a ParaId and register their validation code for a proportion of the regular deposit required. However, they must also make additional rent payments at intervals of T::RentDuration. For registering using the new rental system we will have to make modifications to the paras-registrar pallet. We should expose two new extrinsics for this: mod pallet { // -- snip -- pub fn register_rental( origin: OriginFor, id: ParaId, genesis_head: HeadData, validation_code: ValidationCode, ) -> DispatchResult { /* ... */ } pub fn pay_rent(origin: OriginFor, id: ParaId) -> DispatchResult { /* ... */ }\n} A call to register_rental will require the reservation of only a percentage of the deposit that would otherwise be required to register the validation code when using the regular model. As described later in the Quick para re-registering section below, we will also store the code hash of each parachain to enable faster re-registration after a parachain has been pruned. For this reason the total initial deposit amount is increased to account for that. // The logic for calculating the initial deposit for parachain registered with the // new rent-based model: let validation_code_deposit = per_byte_fee.saturating_mul((validation_code.0.len() as u32).into()); let head_deposit = per_byte_fee.saturating_mul((genesis_head.0.len() as u32).into())\nlet hash_deposit = per_byte_fee.saturating_mul(HASH_SIZE); let deposit = T::RentalDepositProportion::get().mul_ceil(validation_code_deposit) .saturating_add(T::ParaDeposit::get()) .saturating_add(head_deposit) .saturating_add(hash_deposit) Once the ParaId is reserved and the validation code is registered the rent must be periodically paid to ensure the on-demand parachain doesn't get removed from the state. The pay_rent extrinsic should be callable by anyone, removing the need for the parachain to depend on the parachain manager for rent payments.","breadcrumbs":"RFC-0044: Rent based registration model » Registering an on-demand parachain","id":"454","title":"Registering an on-demand parachain"},"455":{"body":"If the rent is not paid, anyone has the option to prune the on-demand parachain and claim a portion of the initial deposit reserved for storing the validation code. This type of 'light' pruning only removes the validation code, while the head data and validation code hash are retained. The validation code hash is stored to allow anyone to register it again as well as to enable quicker re-registration by skipping the pre-checking process. The moment the rent is no longer paid, the parachain won't be able to purchase on-demand access, meaning no new blocks are allowed. This stage is called the \"hibernation\" stage, during which all the parachain-related data is still stored on-chain, but new blocks are not permitted. The reason for this is to ensure that the validation code is available in case it is needed in the dispute or approval checking subsystems. Waiting for one entire session will be enough to ensure it is safe to deregister the parachain. This means that anyone can prune the parachain only once the \"hibernation\" stage is over, which lasts for an entire session after the moment that the rent is not paid. The pruning described here is a light form of pruning, since it only removes the validation code. As with all parachains, the parachain or para manager can use the deregister extrinsic to remove all associated state.","breadcrumbs":"RFC-0044: Rent based registration model » On-demand parachain pruning","id":"455","title":"On-demand parachain pruning"},"456":{"body":"The paras pallet will be loosely coupled with the para-registrar pallet. This approach enables all the pallets tightly coupled with the paras pallet to have access to the rent status information. Once the validation code is stored without having its rent paid the assigner_on_demand pallet will ensure that an order for that parachain cannot be placed. This is easily achievable given that the assigner_on_demand pallet is tightly coupled with the paras pallet.","breadcrumbs":"RFC-0044: Rent based registration model » Ensuring rent is paid","id":"456","title":"Ensuring rent is paid"},"457":{"body":"If the rent isn't paid on time, and the parachain gets pruned, the new model should provide a quick way to re-register the same validation code under the same ParaId. This can be achieved by skipping the pre-checking process, as the validation code hash will be stored on-chain, allowing us to easily verify that the uploaded code remains unchanged. /// Stores the validation code hash for parachains that successfully completed the /// pre-checking process.\n///\n/// This is stored to enable faster on-demand para re-registration in case its pvf has been earlier\n/// registered and checked.\n///\n/// NOTE: During a runtime upgrade where the pre-checking rules change this storage map should be\n/// cleared appropriately.\n#[pallet::storage]\npub(super) type CheckedCodeHash = StorageMap<_, Twox64Concat, ParaId, ValidationCodeHash>; To enable parachain re-registration, we should introduce a new extrinsic in the paras-registrar pallet that allows this. The logic of this extrinsic will be same as regular registration, with the distinction that it can be called by anyone, and the required deposit will be smaller since it only has to cover for the storage of the validation code.","breadcrumbs":"RFC-0044: Rent based registration model » On-demand para re-registration","id":"457","title":"On-demand para re-registration"},"458":{"body":"This RFC does not alter the process of reserving a ParaId, and therefore, it does not propose reducing it, even though such a reduction could be beneficial. Even though this RFC doesn't delve into the specifics of the configuration values for parachain registration but rather focuses on the mechanism, configuring it carelessly could lead to potential problems. Since the validation code hash and head data are not removed when the parachain is pruned but only when the deregister extrinsic is called, the T::DataDepositPerByte must be set to a higher value to create a strong enough incentive for removing it from the state.","breadcrumbs":"RFC-0044: Rent based registration model » Drawbacks","id":"458","title":"Drawbacks"},"459":{"body":"The implementation of this RFC will be tested on Rococo first. Proper research should be conducted on setting the configuration values of the new system since these values can have great impact on the network. An audit is required to ensure the implementation's correctness. The proposal introduces no new privacy concerns.","breadcrumbs":"RFC-0044: Rent based registration model » Testing, Security, and Privacy","id":"459","title":"Testing, Security, and Privacy"},"46":{"body":"","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6. Sassafras Protocol","id":"46","title":"6. Sassafras Protocol"},"460":{"body":"","breadcrumbs":"RFC-0044: Rent based registration model » Performance, Ergonomics, and Compatibility","id":"460","title":"Performance, Ergonomics, and Compatibility"},"461":{"body":"This RFC should not introduce any performance impact.","breadcrumbs":"RFC-0044: Rent based registration model » Performance","id":"461","title":"Performance"},"462":{"body":"This RFC does not affect the current parachains, nor the parachains that intend to use the one-time payment model for parachain registration.","breadcrumbs":"RFC-0044: Rent based registration model » Ergonomics","id":"462","title":"Ergonomics"},"463":{"body":"This RFC does not break compatibility.","breadcrumbs":"RFC-0044: Rent based registration model » Compatibility","id":"463","title":"Compatibility"},"464":{"body":"Prior discussion on this topic: https://github.com/paritytech/polkadot-sdk/issues/1796","breadcrumbs":"RFC-0044: Rent based registration model » Prior Art and References","id":"464","title":"Prior Art and References"},"465":{"body":"None at this time.","breadcrumbs":"RFC-0044: Rent based registration model » Unresolved Questions","id":"465","title":"Unresolved Questions"},"466":{"body":"As noted in this GitHub issue , we want to raise the per-byte cost of on-chain data storage. However, a substantial increase in this cost would make it highly impractical for on-demand parachains to register on Polkadot. This RFC offers an alternative solution for on-demand parachains, ensuring that the per-byte cost increase doesn't overly burden the registration process.","breadcrumbs":"RFC-0044: Rent based registration model » Future Directions and Related Material","id":"466","title":"Future Directions and Related Material"},"467":{"body":"(source) Table of Contents RFC-0048: Generate ownership proof for SessionKeys Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 13 November 2023 Description Change SessionKeys runtime api to also create a proof of ownership for on chain registration. Authors Bastian Köcher","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » RFC-0048: Generate ownership proof for SessionKeys","id":"467","title":"RFC-0048: Generate ownership proof for SessionKeys"},"468":{"body":"When rotating/generating the SessionKeys of a node, the node calls into the runtime using the SessionKeys::generate_session_keys runtime api. This runtime api function needs to be changed to add an extra parameter owner and to change the return value to also include the proof of ownership. The owner should be the account id of the account setting the SessionKeys on chain to allow the on chain logic the verification of the proof. The on chain logic is then able to proof the possession of the private keys of the SessionKeys using the proof.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Summary","id":"468","title":"Summary"},"469":{"body":"When a user sets new SessionKeys on chain the chain can currently not ensure that the user actually has control over the private keys of the SessionKeys. With the RFC applied the chain is able to ensure that the user actually is in possession of the private keys.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Motivation","id":"469","title":"Motivation"},"47":{"body":"For epoch N, the first block produced must include a descriptor for some of the subsequent epoch (N+1) parameters. This descriptor is defined as: NextEpochDescriptor ::= SEQUENCE { randomness: OCTET_STRING(SIZE(32)), authorities: SEQUENCE_OF BandersnatchPublicKey, configuration: ProtocolConfiguration OPTIONAL } Where: randomness: 32-bytes pseudo random value. authorities: list of authorities. configuration: optional protocol configuration. This descriptor must be encoded using the SCALE encoding system and embedded in the block header's digest log. The identifier for the digest element is BYTES(\"SASS\"). A special case arises for the first block for epoch 0, which each node produces independently during the genesis phase. In this case, the NextEpochDescriptor relative to epoch 1 is shared within the second block, as outlined in section 6.1.3 . 6.1.1. Epoch Randomness The randomness in the NextEpochDescriptor randomness is computed as: randomness = BLAKE2(32, CONCAT(randomness_accumulator, BYTES(next_epoch.index))); Here, randomness_accumulator refers to a 32-byte OCTET_STRING stored on-chain and computed through a process that incorporates verifiable random elements from all previously imported blocks. The exact procedure is described in section 6.7 . 6.1.2. Protocol Configuration The ProtocolConfiguration primarily influences certain checks carried out during tickets validation. It is defined as: ProtocolConfiguration ::= SEQUENCE { attempts_number: U32, redundancy_factor: U32 } Where: attempts_number: maximum number of tickets that each authority for the next epoch is allowed to submit. redundancy_factor: expected ratio between epoch's slots and the cumulative number of tickets which can be submitted by the set of epoch validators. The attempts_number influences the anonymity of block producers. As all published tickets have a public attempt number less than attempts_number, all the tickets which share the attempt number value must belong to different block producers, which reduces anonymity late as we approach the epoch tail. Bigger values guarantee more anonymity but also more computation. Details about how exactly these parameters drives the ticket validity probability can be found in section 6.2.2 . ProtocolConfiguration values can be adjusted via a dedicated on-chain call which should have origin set to Root. Any proposed changes to ProtocolConfiguration that are submitted in epoch K will be included in the NextEpochDescriptor at the start of epoch K+1 and will come into effect in epoch K+2. 6.1.3. Startup Parameters Some of the initial parameters for the first epoch, Epoch #0, are set through the genesis configuration, which is defined as: GenesisConfig ::= SEQUENCE { authorities: SEQUENCE_OF BandersnatchPublicKey, configuration: ProtocolConfiguration, } The on-chain randomness accumulator is initialized only after the genesis block is produced. It starts with the hash of the genesis block: randomness_accumulator = genesis_hash Since block #0 is generated locally by each node as part of the genesis process, the first block that a validator explicitly produces for Epoch #0 is block #1. Therefore, block #1 is required to contain the NextEpochDescriptor for the following epoch, Epoch #1. The NextEpochDescriptor for Epoch #1: randomness: computed using the randomness_accumulator established post-genesis, as mentioned above. authorities: the same as those specified in the genesis configuration. configuration: not set (i.e., None), implying the reuse of the one found in the genesis configuration.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.1. Epoch's First Block","id":"47","title":"6.1. Epoch's First Block"},"470":{"body":"Polkadot runtime implementors Polkadot node implementors Validator operators","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Stakeholders","id":"470","title":"Stakeholders"},"471":{"body":"We are first going to explain the proof format being used: type Proof = (Signature, Signature, ..); The proof being a SCALE encoded tuple over all signatures of each private session key signing the owner. The actual type of each signature depends on the corresponding session key cryptographic algorithm. The order of the signatures in the proof is the same as the order of the session keys in the SessionKeys type. The version of the SessionKeys needs to be bumped to 1 to reflect the changes to the signature of SessionKeys_generate_session_keys: pub struct OpaqueGeneratedSessionKeys { pub keys: Vec, pub proof: Vec,\n} fn SessionKeys_generate_session_keys(owner: Vec, seed: Option>) -> OpaqueGeneratedSessionKeys; The default calling convention for runtime apis is applied, meaning the parameters passed as SCALE encoded array and the length of the encoded array. The return value being the SCALE encoded return value as u64 (array_ptr | length << 32). So, the actual exported function signature looks like: fn SessionKeys_generate_session_keys(array: *const u8, len: usize) -> u64; The on chain logic for setting the SessionKeys needs to be changed as well. It already gets the proof passed as Vec. This proof needs to be decoded to the actual Proof type as explained above. The proof and the SCALE encoded account_id of the sender are used to verify the ownership of the SessionKeys.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Explanation","id":"471","title":"Explanation"},"472":{"body":"Validator operators need to pass the their account id when rotating their session keys in a node. This will require updating some high level docs and making users familiar with the slightly changed ergonomics.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Drawbacks","id":"472","title":"Drawbacks"},"473":{"body":"Testing of the new changes is quite easy as it only requires passing an appropriate owner for the current testing context. The changes to the proof generation and verification got audited to ensure they are correct.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Testing, Security, and Privacy","id":"473","title":"Testing, Security, and Privacy"},"474":{"body":"","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Performance, Ergonomics, and Compatibility","id":"474","title":"Performance, Ergonomics, and Compatibility"},"475":{"body":"Does not have any impact on the overall performance, only setting SessionKeys will require more weight.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Performance","id":"475","title":"Performance"},"476":{"body":"If the proposal alters exposed interfaces to developers or end-users, which types of usage patterns have been optimized for?","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Ergonomics","id":"476","title":"Ergonomics"},"477":{"body":"Introduces a new version of the SessionKeys runtime api. Thus, nodes should be updated before a runtime is enacted that contains these changes otherwise they will fail to generate session keys.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Compatibility","id":"477","title":"Compatibility"},"478":{"body":"None.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Prior Art and References","id":"478","title":"Prior Art and References"},"479":{"body":"None.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Unresolved Questions","id":"479","title":"Unresolved Questions"},"48":{"body":"After the beginning of a new epoch N, each validator associated to the next epoch (N+1) constructs a set of tickets which may be eligible ( 6.2.2 ) to be submitted on-chain. These tickets aim to secure ownership of one or more slots in the upcoming epoch N+1. Each validator is allowed to submit a maximum number of tickets, as specified by the attempts_number field in the ProtocolConfiguration for the next epoch. The ideal timing for a validator to start creating the tickets is subject to strategy. A recommended approach is to initiate tickets creation once the block containing the NextEpochDescriptor is either probabilistically or, preferably, deterministically finalized. This timing is suggested to prevent to waste resources on tickets that might become obsolete if a different chain branch is finally chosen as the best one by the distributed system. However, validators are also advised to avoid submitting tickets too late, as tickets submitted during the second half of the epoch must be discarded. 6.2.1. Ticket Identifier Value Each ticket has an associated 128-bit unique identifier defined as: TicketId ::= U128; The value of the TicketId is determined by the output of the Bandersnatch VRF with the following input: ticket_id_vrf_input = vrf_input_from_items( BYTES(\"sassafras-ticket-v1.0\"), [ next_epoch.randomness, BYTES(next_epoch.index), BYTES(attempt_index) ] ); ticket_id_vrf_pre_output = vrf_pre_output(AUTHORITY_SECRET_KEY, ticket_id_vrf_input); ticket_bytes = vrf_bytes(16, ticket_id_vrf_input, ticket_id_vrf_pre_output); ticket_id = U128(ticket_bytes); Where: next_epoch.randomness: randomness associated to the target epoch. next_epoch.index: index of the target epoch as a U64. attempt_index: value going from 0 to attempts_number as a U32. 6.2.2. Tickets Threshold A TicketId value is valid if its value is less than the ticket threshold: T = (r·s)/(a·v) Where: v: epoch's authorities (aka validators) number s: epoch's slots number r: redundancy factor a: attempts number T: ticket threshold value (0 ≤ T ≤ 1) 6.2.2.1 Formula Derivation In an epoch with s slots, the goal is to achieve an expected number of tickets for block production equal to r·s. It's crucial to ensure that the probability of having fewer than s winning tickets is very low, even in scenarios where up to 1/3 of the authorities might be offline. To accomplish this, we first define the winning probability of a single ticket as T = (r·s)/(a·v). Let n be the actual number of participating validators, where v·2/3 ≤ n ≤ v. These n validators each make a attempts, for a total of a·n attempts. Let X be the random variable associated to the number of winning tickets, then its expected value is: E[X] = T·a·n = (r·s·n)/v By setting r = 2, we get s·4/3 ≤ E[X] ≤ s·2 Using Bernestein's inequality we get Pr[X < s] ≤ e^(-s/21). For instance, with s = 600 this results in Pr[X < s] < 4·10⁻¹³. Consequently, this approach offers considerable tolerance for offline nodes and ensures that all slots are likely to be filled with tickets. For more details about threshold formula please refer to the probabilities and parameters paragraph in the Web3 foundation description of the protocol. 6.2.3. Ticket Body Every candidate ticket identifier has an associated body, defined as: TicketBody ::= SEQUENCE { attempt_index: U32, erased_pub: Ed25519PublicKey, revealed_pub: Ed25519PublicKey } Where: attempt_index: attempt index used to generate the associated TicketId. erased_pub: Ed25519 ephemeral public key which gets erased as soon as the ticket is claimed. This key can be used to encrypt data for the validator. revealed_pub: Ed25519 ephemeral public key which gets exposed as soon as the ticket is claimed. The process of generating an erased key pair is intentionally left undefined, allowing the implementor the freedom to choose the most suitable strategy. Revealed key pair is generated using the bytes produced by the VRF with input parameters equal to those employed in TicketId generation, only the label is different. revealed_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-revealed-v1.0\"), data: [ next_epoch.randomness, BYTES(next_epoch.index), BYTES(attempt_index) ] ); revealed_vrf_pre_output = vrf_pre_output(AUTHORITY_SECRET_KEY, revealed_vrf_input); revealed_seed = vrf_bytes(32, revealed_vrf_input, revealed_vrf_pre_output); revealed_pub = ed25519_secret_from_seed(revealed_seed).public(); Where: next_epoch.randomness: randomness associated to the target epoch. next_epoch.index: index of the target epoch as a U64. attempt_index: value going from 0 to attempts_number as a U32. The ephemeral public keys are also used for claiming the tickets on block production. Refer to section 6.5 for details. 6.2.4. Ring Signature Production TicketBody must be signed using the Bandersnatch ring VRF flavor ( 5.4.2 ). sign_data = vrf_signature_data( transcript_label: BYTES(\"sassafras-ticket-body-v1.0\"), transcript_data: [ SCALE(ticket_body) ], inputs: [ ticket_id_vrf_input ] ) ring_signature = ring_vrf_sign(AUTHORITY_SECRET_KEY, RING_PROVER_KEY, sign_data) RING_PROVER_KEY object is constructed using the set of public keys which belong to the target epoch's authorities and the zk-SNARK context parameters (for more details refer to the bandersnatch_vrfs reference implementation). The body and the ring signature are combined in the TicketEnvelope structure: TicketEnvelope ::= SEQUENCE { ticket_body: TicketBody, ring_signature: RingVrfSignature } All the envelopes corresponding to valid tickets can be submitted on-chain via a dedicated on-chain call (extrinsic).","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.2. Creation and Submission of Candidate Tickets","id":"48","title":"6.2. Creation and Submission of Candidate Tickets"},"480":{"body":"Substrate implementation of the RFC .","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Future Directions and Related Material","id":"480","title":"Future Directions and Related Material"},"481":{"body":"(source) Table of Contents RFC-0054: Remove the concept of \"heap pages\" from the client Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-11-24 Description Remove the concept of heap pages from the client and move it to the runtime. Authors Pierre Krieger","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » RFC-0054: Remove the concept of \"heap pages\" from the client","id":"481","title":"RFC-0054: Remove the concept of \"heap pages\" from the client"},"482":{"body":"Rather than enforce a limit to the total memory consumption on the client side by loading the value at :heappages, enforce that limit on the runtime side.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Summary","id":"482","title":"Summary"},"483":{"body":"From the early days of Substrate up until recently, the runtime was present in two forms: the wasm runtime (wasm bytecode passed through an interpreter) and the native runtime (native code directly run by the client). Since the wasm runtime has a lower amount of available memory (4 GiB maximum) compared to the native runtime, and in order to ensure sure that the wasm and native runtimes always produce the same outcome, it was necessary to clamp the amount of memory available to both runtimes to the same value. In order to achieve this, a special storage key (a \"well-known\" key) :heappages was introduced and represents the number of \"wasm pages\" (one page equals 64kiB) of memory that are available to the memory allocator of the runtimes. If this storage key is absent, it defaults to 2048, which is 128 MiB. The native runtime has since then been disappeared, but the concept of \"heap pages\" still exists. This RFC proposes a simplification to the design of Polkadot by removing the concept of \"heap pages\" as is currently known, and proposes alternative ways to achieve the goal of limiting the amount of memory available.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Motivation","id":"483","title":"Motivation"},"484":{"body":"Client implementers and low-level runtime developers.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Stakeholders","id":"484","title":"Stakeholders"},"485":{"body":"This RFC proposes the following changes to the client: The client no longer considers :heappages as special. The memory allocator of the runtime is no longer bounded by the value of :heappages. With these changes, the memory available to the runtime is now only bounded by the available memory space (4 GiB), and optionally by the maximum amount of memory specified in the Wasm binary (see https://webassembly.github.io/spec/core/bikeshed/#memories%E2%91%A0). In Rust, the latter can be controlled during compilation with the flag -Clink-arg=--max-memory=.... Since the client-side change is strictly more tolerant than before, we can perform the change immediately after the runtime has been updated, and without having to worry about backwards compatibility. This RFC proposes three alternative paths (different chains might choose to follow different paths): Path A: add back the same memory limit to the runtime, like so: At initialization, the runtime loads the value of :heappages from the storage (using ext_storage_get or similar), and sets a global variable to the decoded value. The runtime tracks the total amount of memory that it has allocated using its instance of #[global_allocator] (https://github.com/paritytech/polkadot-sdk/blob/e3242d2c1e2018395c218357046cc88caaed78f3/substrate/primitives/io/src/lib.rs#L1748-L1762). This tracking should also be added around the host functions that perform allocations. If an allocation is attempted that would go over the value in the global variable, the memory allocation fails. Path B: define the memory limit using the -Clink-arg=--max-memory=... flag. Path C: don't add anything to the runtime. This is effectively the same as setting the memory limit to ~4 GiB (compared to the current default limit of 128 MiB). This solution is viable only because we're compiling for 32bits wasm rather than for example 64bits wasm. If we ever compile for 64bits wasm, this would need to be revisited. Each parachain can choose the option that they prefer, but the author of this RFC strongly suggests either option C or B.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Explanation","id":"485","title":"Explanation"},"486":{"body":"In case of path A, there is one situation where the behaviour pre-RFC is not equivalent to the one post-RFC: when a host function that performs an allocation (for example ext_storage_get) is called, without this RFC this allocation might fail due to reaching the maximum heap pages, while after this RFC this will always succeed. This is most likely not a problem, as storage values aren't supposed to be larger than a few megabytes at the very maximum. In the unfortunate event where the runtime runs out of memory, path B would make it more difficult to relax the memory limit, as we would need to re-upload the entire Wasm, compared to updating only :heappages in path A or before this RFC. In the case where the runtime runs out of memory only in the specific event where the Wasm runtime is modified, this could brick the chain. However, this situation is no different than the thousands of other ways that a bug in the runtime can brick a chain, and there's no reason to be particularily worried about this situation in particular.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Drawbacks","id":"486","title":"Drawbacks"},"487":{"body":"This RFC would reduce the chance of a consensus issue between clients. The :heappages are a rather obscure feature, and it is not clear what happens in some corner cases such as the value being too large (error? clamp?) or malformed. This RFC would completely erase these questions.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Testing, Security, and Privacy","id":"487","title":"Testing, Security, and Privacy"},"488":{"body":"","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Performance, Ergonomics, and Compatibility","id":"488","title":"Performance, Ergonomics, and Compatibility"},"489":{"body":"In case of path A, it is unclear how performances would be affected. Path A consists in moving client-side operations to the runtime without changing these operations, and as such performance differences are expected to be minimal. Overall, we're talking about one addition/subtraction per malloc and per free, so this is more than likely completely negligible. In case of path B and C, the performance gain would be a net positive, as this RFC strictly removes things.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Performance","id":"489","title":"Performance"},"49":{"body":"All the actions in the steps described by this paragraph are executed by on-chain code. Validation rules: Tickets submissions must occur within a block part of the first half of the epoch. Ring signature is verified using the on-chain RING_VERIFIER_KEY. Ticket identifier is locally (re)computed from the VrfPreOutput contained in the RingVrfSignature and its value is checked to be less than the tickets' threshold. Valid tickets bodies are all persisted on-chain.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.3. Validation of candidate tickets","id":"49","title":"6.3. Validation of candidate tickets"},"490":{"body":"This RFC would isolate the client and runtime more from each other, making it a bit easier to reason about the client or the runtime in isolation.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Ergonomics","id":"490","title":"Ergonomics"},"491":{"body":"Not a breaking change. The runtime-side changes can be applied immediately (without even having to wait for changes in the client), then as soon as the runtime is updated, the client can be updated without any transition period. One can even consider updating the client before the runtime, as it corresponds to path C.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Compatibility","id":"491","title":"Compatibility"},"492":{"body":"None.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Prior Art and References","id":"492","title":"Prior Art and References"},"493":{"body":"None.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Unresolved Questions","id":"493","title":"Unresolved Questions"},"494":{"body":"This RFC follows the same path as https://github.com/polkadot-fellows/RFCs/pull/4 by scoping everything related to memory allocations to the runtime.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Future Directions and Related Material","id":"494","title":"Future Directions and Related Material"},"495":{"body":"(source) Table of Contents RFC-0059: Add a discovery mechanism for nodes based on their capabilities Summary Motivation Stakeholders Explanation Capabilities DHT provider registration Secondary DHTs Head of the chain providers Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-12-18 Description Nodes having certain capabilities register themselves in the DHT to be discoverable Authors Pierre Krieger","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » RFC-0059: Add a discovery mechanism for nodes based on their capabilities","id":"495","title":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities"},"496":{"body":"This RFC proposes to make the mechanism of RFC #8 more generic by introducing the concept of \"capabilities\". Implementations can implement certain \"capabilities\", such as serving old block headers or being a parachain bootnode. The discovery mechanism of RFC #8 is extended to be able to discover nodes of specific capabilities.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Summary","id":"496","title":"Summary"},"497":{"body":"The Polkadot peer-to-peer network is made of nodes. Not all these nodes are equal. Some nodes store only the headers of recently blocks, some nodes store all the block headers and bodies since the genesis, some nodes store the storage of all blocks since the genesis, and so on. It is currently not possible to know ahead of time (without connecting to it and asking) which nodes have which data available, and it is not easily possible to build a list of nodes that have a specific piece of data available. If you want to download for example the header of block 500, you have to connect to a randomly-chosen node, ask it for block 500, and if it says that it doesn't have the block, disconnect and try another randomly-chosen node. In certain situations such as downloading the storage of old blocks, nodes that have the information are relatively rare, and finding through trial and error a node that has the data can take a long time. This RFC attempts to solve this problem by giving the possibility to build a list of nodes that are capable of serving specific data.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Motivation","id":"497","title":"Motivation"},"498":{"body":"Low-level client developers. People interested in accessing the archive of the chain.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Stakeholders","id":"498","title":"Stakeholders"},"499":{"body":"Reading RFC #8 first might help with comprehension, as this RFC is very similar. Please keep in mind while reading that everything below applies for both relay chains and parachains, except mentioned otherwise.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Explanation","id":"499","title":"Explanation"},"5":{"body":"NFT Creators : Primary beneficiaries of the proposed change, particularly those who found the current deposit requirements prohibitive. NFT Platforms : As the facilitator of artists' relations, NFT Marketplaces has a vested interest in onboarding new users and making the platform more accessible. dApp Developers : Making the blockspace more accessible will encourage developers to create and build unique dApps in the Polkadot ecosystem. Polkadot Community : Stands to benefit from an influx of artists, creators and diverse NFT collections, enhancing the overall ecosystem. Previous discussions have been held within the Polkadot Forum community and with artists expressing their concerns about the deposit amounts. Link .","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Stakeholders","id":"5","title":"Stakeholders"},"50":{"body":"Before the beginning of the next epoch, the on-chain list of tickets must be associated with the next epoch's slots such that there must be at most one ticket per slot. The assignment process happens in the second half of the submission epoch and follows these steps: Sorting: The complete list of tickets is sorted based on their TicketId value, with smaller values coming first. Trimming: In scenarios where there are more tickets than available slots, the list is trimmed to fit the epoch's slots by removing the larger value. Assignment: Tickets are assigned to the epoch's slots following an outside-in strategy. 6.4.1. Outside-In Assignment Given an ordered sequence of tickets [t0, t1, t2, ..., tk] to be assigned to n slots, where n ≥ k, the tickets are allocated according to the following strategy: slot-index : [ 0, 1, 2, ............ , n ] tickets : [ t1, t3, t5, ... , t4, t2, t0 ] Here slot-index is a relative value computed as: slot-index = absolute_slot - epoch_start_slot The association between each ticket and a slot is recorded on-chain and thus is public. What remains confidential is the identity of the ticket's author, and consequently, who possesses the authority to claim the corresponding slot. This information is known only to the author of the ticket. In case the number of available tickets is less than the number of epoch slots, some orphan slots in the middle of the epoch will remain unbounded to any ticket. For claiming strategy refer to 6.5.2 .","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.4. Ticket-Slot Binding","id":"50","title":"6.4. Ticket-Slot Binding"},"500":{"body":"This RFC defines a list of so-called capabilities : Head of chain provider . An implementation with this capability must be able to serve to other nodes block headers, block bodies, justifications, calls proofs, and storage proofs of \"recent\" (see below) blocks, and, for relay chains, to serve to other nodes warp sync proofs where the starting block is a session change block and must participate in Grandpa and Beefy gossip. History provider . An implementation with this capability must be able to serve to other nodes block headers and block bodies of any block since the genesis, and must be able to serve to other nodes justifications of any session change block since the genesis up until and including their currently finalized block. Archive provider . This capability is a superset of History provider . In addition to the requirements of History provider , an implementation with this capability must be able to serve call proofs and storage proof requests of any block since the genesis up until and including their currently finalized block. Parachain bootnode (only for relay chains). An implementation with this capability must be able to serve the network request described in RFC 8. In the context of the head of chain provider , the word \"recent\" means: any not-finalized-yet block that is equal to or an ancestor of a block that it has announced through a block announce, and any finalized block whose height is superior to its current finalized block minus 16 . This does not include blocks that have been pruned because they're not a descendant of its current finalized block. In other words, blocks that aren't a descendant of the current finalized block can be thrown away. A gap of blocks is required due to race conditions: when a node finalizes a block, it takes some time for its peers to be made aware of this, during which they might send requests concerning older blocks. The exact gap is arbitrary. Substrate is currently by default a head of chain provider provider. After it has finished warp syncing, it downloads the list of old blocks, after which it becomes a history provider . If Substrate is instead configured as an archive node, then it downloads the state of all blocks since the genesis, after which it becomes an archive provider , history provider , and head of chain provider . If blocks pruning is enabled and the chain is a relay chain, then Substrate unfortunately doesn't implement any of these capabilities, not even head of chain provider . This is considered as a bug that should be fixed, see https://github.com/paritytech/polkadot-sdk/issues/2733 .","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Capabilities","id":"500","title":"Capabilities"},"501":{"body":"This RFC heavily relies on the functionalities of the Kademlia DHT already in use by Polkadot. You can find a link to the specification here . Implementations that have the history provider capability should register themselves as providers under the key sha256(concat(\"history\", randomness)). Implementations that have the archive provider capability should register themselves as providers under the key sha256(concat(\"archive\", randomness)). Implementations that have the parachain bootnode capability should register themselves as provider under the key sha256(concat(scale_compact(para_id), randomness)), as described in RFC 8. \"Register themselves as providers\" consists in sending ADD_PROVIDER requests to nodes close to the key, as described in the Content provider advertisement section of the specification. The value of randomness can be found in the randomness field when calling the BabeApi_currentEpoch function. In order to avoid downtimes when the key changes, nodes should also register themselves as a secondary key that uses a value of randomness equal to the randomness field when calling BabeApi_nextEpoch. Implementers should be aware that their implementation of Kademlia might already hash the key before XOR'ing it. The key is not meant to be hashed twice. Implementations must not register themselves if they don't fulfill the capability yet . For example, a node configured to be an archive node but that is still building its archive state in the background must register itself only after it has finished building its archive.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » DHT provider registration","id":"501","title":"DHT provider registration"},"502":{"body":"Implementations that have the history provider capability must also participate in a secondary DHT that comprises only of nodes with that capability. The protocol name of that secondary DHT must be //kad/history. Similarly, implementations that have the archive provider capability must also participate in a secondary DHT that comprises only of nodes with that capability and whose protocol name is //kad/archive. Just like implementations must not register themselves if they don't fulfill their capability yet, they must also not participate in the secondary DHT if they don't fulfill their capability yet.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Secondary DHTs","id":"502","title":"Secondary DHTs"},"503":{"body":"Implementations that have the head of the chain provider capability do not register themselves as providers, but instead are the nodes that participate in the main DHT. In other words, they are the nodes that serve requests of the //kad protocol. Any implementation that isn't a head of the chain provider (read: light clients) must not participate in the main DHT. This is already presently the case. Implementations must not participate in the main DHT if they don't fulfill the capability yet. For example, a node that is still in the process of warp syncing must not participate in the main DHT. However, assuming that warp syncing doesn't last more than a few seconds, it is acceptable to ignore this requirement in order to avoid complicating implementations too much.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Head of the chain providers","id":"503","title":"Head of the chain providers"},"504":{"body":"None that I can see.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Drawbacks","id":"504","title":"Drawbacks"},"505":{"body":"The content of this section is basically the same as the one in RFC 8. This mechanism doesn't add or remove any security by itself, as it relies on existing mechanisms. Due to the way Kademlia works, it would become the responsibility of the 20 Polkadot nodes whose sha256(peer_id) is closest to the key (described in the explanations section) to store the list of nodes that have specific capabilities. Furthermore, when a large number of providers are registered, only the providers closest to the key are kept, up to a certain implementation-defined limit. For this reason, an attacker can abuse this mechanism by randomly generating libp2p PeerIds until they find the 20 entries closest to the key representing the target capability. They are then in control of the list of nodes with that capability. While doing this can in no way be actually harmful, it could lead to eclipse attacks. Because the key changes periodically and isn't predictable, and assuming that the Polkadot DHT is sufficiently large, it is not realistic for an attack like this to be maintained in the long term.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Testing, Security, and Privacy","id":"505","title":"Testing, Security, and Privacy"},"506":{"body":"","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Performance, Ergonomics, and Compatibility","id":"506","title":"Performance, Ergonomics, and Compatibility"},"507":{"body":"The DHT mechanism generally has a low overhead, especially given that publishing providers is done only every 24 hours. Doing a Kademlia iterative query then sending a provider record shouldn't take more than around 50 kiB in total of bandwidth for the parachain bootnode. Assuming 1000 nodes with a specific capability, the 20 Polkadot full nodes corresponding to that capability will each receive a sudden spike of a few megabytes of networking traffic when the key rotates. Again, this is relatively negligible. If this becomes a problem, one can add a random delay before a node registers itself to be the provider of the key corresponding to BabeApi_next_epoch. Maybe the biggest uncertainty is the traffic that the 20 Polkadot full nodes will receive from light clients that desire knowing the nodes with a capability. If this every becomes a problem, this value of 20 is an arbitrary constant that can be increased for more redundancy.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Performance","id":"507","title":"Performance"},"508":{"body":"Irrelevant.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Ergonomics","id":"508","title":"Ergonomics"},"509":{"body":"Irrelevant.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Compatibility","id":"509","title":"Compatibility"},"51":{"body":"With tickets bound to epoch slots, every validator acquires information about the slots for which they are supposed to produce a block. The procedure for slot claiming depends on whether a given slot has an associated ticket according to the on-chain state. If a slot is associated with a ticket, the primary authoring method is used. Conversely, the protocol resorts to the secondary method as a fallback. 6.5.1. Primary Method Let ticket_body be the TicketBody that has been committed to the on-chain state, curr_epoch denote an object containing information about the current epoch, and slot represent the slot number (absolute). Follows the construction of VrfSignatureData: randomness_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-randomness-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(slot) ] ); revealed_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-revealed-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(ticket_body.attempt_index) ] ); sign_data = vrf_signature_data( transcript_label: BYTES(\"sassafras-claim-v1.0\"), transcript_data: [ SCALE(ticket_body) ], inputs: [ randomness_vrf_input, revealed_vrf_input ] ); 6.5.1.1. Ephemeral Key Claim Fiat-Shamir transform is used to obtain a 32-byte challenge associated with the VrfSignData transcript. Validators employ the secret key associated with erased_pub, which has been committed in the TicketBody, to sign the challenge. challenge = sign_data.transcript.challenge(); erased_signature = ed25519_sign(ERASED_SECRET_KEY, challenge); As ticket's ownership can be claimed by reconstructing the revealed_pub entry of the committed TicketBody, this step is considered optional. Is this step really necessary?\n- Isn't better to keep it simple if this step doesn't offer any extra security?\n- We already have a strong method to claim ticket ownership using the vrf output\n- What if a validator provides both the proofs? More weight for the branch (i.e. used to decide what is the best branch by validators)? E.g. - primary method + ed25519 erased signature => score 2 - primary method => score 1 - fallback method => score 0 6.5.2. Secondary Method By noting that the authorities registered on-chain are kept in an ordered list, the index of the authority which has the privilege to claim an orphan slot is: index_bytes = BLAKE2(4, CONCAT(epoch_randomness, BYTES(slot))); index = U32(index_bytes) mod authorities_number; Given randomness_vrf_input constructed as shown for the primary method ( 6.5.1 ), the VrfSignatureData is constructed as: sign_data = vrf_signature_data( transcript_label: BYTES(\"sassafras-claim-v1.0\"), transcript_data: [ ], inputs: [ randomness_vrf_input ] ) 6.5.3. Slot Claim Object The SlotClaim structure is used to contain all the necessary information to assess ownership of a slot. SlotClaim ::= SEQUENCE { authority_index: U32, slot: U64, signature: VrfSignature, erased_signature: Ed25519Signature OPTIONAL } The claim is constructed as follows: signature = vrf_sign(AUTHORITY_SECRET_KEY, sign_data); claim = SlotClaim { authority_index, slot, signature, erased_signature } Where: authority_index: index of the block author in the on-chain authorities list. slot: slot number (absolute, not relative to the epoch start) signature: signature relative to the sign_data constructed via the primary 6.5.1 or secondary ( 6.5.2 ) method. erased_signature: optional signature providing an additional proof of ticket ownership ( 6.5.1.1 ). The signature includes one or two VrfPreOutputs. The first is always present and is used to generate per-block randomness to feed the randomness accumulator ( 6.7 ). The second is included if the slot is bound to a ticket. This is relevant to claim ticket ownership ( 6.6.1 ). The claim object is SCALE encoded and sent in the block's header digest log.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.5. Slot Claim Production","id":"51","title":"6.5. Slot Claim Production"},"510":{"body":"Unknown.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Prior Art and References","id":"510","title":"Prior Art and References"},"511":{"body":"While it fundamentally doesn't change much to this RFC, using BabeApi_currentEpoch and BabeApi_nextEpoch might be inappropriate. I'm not familiar enough with good practices within the runtime to have an opinion here. Should it be an entirely new pallet?","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Unresolved Questions","id":"511","title":"Unresolved Questions"},"512":{"body":"This RFC would make it possible to reliably discover archive nodes, which would make it possible to reliably send archive node requests, something that isn't currently possible. This could solve the problem of finding archive RPC node providers by migrating archive-related request to using the native peer-to-peer protocol rather than JSON-RPC. If we ever decide to break backwards compatibility, we could divide the \"history\" and \"archive\" capabilities in two, between nodes capable of serving older blocks and nodes capable of serving newer blocks. We could even add to the peer-to-peer network nodes that are only capable of serving older blocks (by reading from a database) but do not participate in the head of the chain, and that just exist for historical purposes.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Future Directions and Related Material","id":"512","title":"Future Directions and Related Material"},"52":{"body":"The signature within the SlotClaim is verified using a VrfSignData constructed as specified in 6.5 . public_key = authorities[claim.authority_index]; result = vrf_verify(public_key, sign_data, claim.signature); assert(result == true); With: authorities: list of authorities for the epoch, as recorded on-chain. sign_data: data that has been signed, constructed as specified in 6.5 . If signature verification is successful, the validation process then diverges based on whether the slot is associated with a ticket according to the on-chain state. For slots tied to a ticket, the primary verification method is employed. Otherwise, the secondary method is utilized.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.6. Slot Claim Verification","id":"52","title":"6.6. Slot Claim Verification"},"53":{"body":"This method verifies ticket ownership using the second VrfPreOutput from the SlotClaim signature The process involves comparing the revealed_pub key from the committed TicketBody with a reconstructed key using the VrfPreOutput and the expected VrfInput. A mismatch indicates an illegitimate claim. revealed_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-revealed-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(ticket_body.attempt_index) ] ); reveled_vrf_pre_output = claim.signature.pre_outputs[1]; revealed_seed = vrf_bytes(32, revealed_vrf_input, revealed_vrf_pre_output); revealed_pub = ed25519_secret_from_seed(revealed_seed).public(); assert(revealed_pub == ticket_body.revealed_pub); 6.6.1.1. Ephemeral Key Signature Check If the erased_signature is present in SlotClaim, the erased_pub within the committed TicketBody key is used to verify it. The signed challenge is generated as outlined in section 6.5.1.1 . challenge = sign_data.transcript.challenge(); result = ed25519_verify(ticket_body.erased_pub, challenge, claim.erased_signature); assert(result == true); 6.6.2. Secondary Method If the slot doesn't have any associated ticket then the validator index contained in the claim should match the one given by the rule outlined in section 6.5.2 .","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.6.1. Primary Method","id":"53","title":"6.6.1. Primary Method"},"54":{"body":"The first VrfPreOutput which ships within the block's SlotClaim signature is mandatory and must be used as entropy source for the randomness which gets accumulated on-chain after block transactions execution. Given claim the instance of SlotClaim found within the block header, and randomness_accumulator the current value for the randomness accumulator, the randomness_accumulator value is updated as follows: randomness_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-randomness-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(slot) ] ); randomness_vrf_pre_output = claim.signature.pre_outputs[0]; randomness = vrf_bytes(32, randomness_vrf_input, randomness_vrf_pre_output); randomness_accumulator = BLAKE2(32, CONCAT(randomness_accumulator, randomness)); The randomness_accumulator never resets and is a continuously evolving value. It primarily serves as a basis for calculating the randomness associated to the epochs as outlined on section 6.1 , but custom usages from the user are not excluded.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.7. Randomness Accumulator","id":"54","title":"6.7. Randomness Accumulator"},"55":{"body":"None","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 7. Drawbacks","id":"55","title":"7. Drawbacks"},"56":{"body":"It is critical that implementations of this RFC undergo thorough testing on test networks. A security audit may be desirable to ensure the implementation does not introduce unwanted side effects.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 8. Testing, Security, and Privacy","id":"56","title":"8. Testing, Security, and Privacy"},"57":{"body":"","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9. Performance, Ergonomics, and Compatibility","id":"57","title":"9. Performance, Ergonomics, and Compatibility"},"58":{"body":"Adopting Sassafras consensus marks a significant improvement in reducing the frequency of short-lived forks. Forks are eliminated by design. Forks may only result from network disruptions or protocol attacks. In such cases, the choice of which fork to follow upon recovery is clear-cut, with only one valid option.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9.1. Performance","id":"58","title":"9.1. Performance"},"59":{"body":"No specific considerations.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9.2. Ergonomics","id":"59","title":"9.2. Ergonomics"},"6":{"body":"This RFC proposes a revision of the deposit constants in the nfts pallet on the Polkadot Asset Hub. The new deposit amounts would be determined by a standard deposit formula. This RFC suggests modifying deposit constants defined in the nfts pallet on the Polkadot Asset Hub to require a lower deposit. The reduced deposit amount should be determined by the deposit adjusted by the pricing mechanism (arbitrary number/another pricing function).","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Explanation","id":"6","title":"Explanation"},"60":{"body":"The adoption of Sassafras affects the native client and thus can't be introduced just via a runtime upgrade. A deployment strategy should be carefully engineered for live networks. This subject is left open for a dedicated RFC.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9.3. Compatibility","id":"60","title":"9.3. Compatibility"},"61":{"body":"Web3 Foundation research page Sassafras research paper Ring-VRF research paper Sassafras reference implementation tracking issue Sassafras reference implementation main PR Bandersnatch VRFS reference implementation","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 10. Prior Art and References","id":"61","title":"10. Prior Art and References"},"62":{"body":"None","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 11. Unresolved Questions","id":"62","title":"11. Unresolved Questions"},"63":{"body":"While this RFC lays the groundwork and outlines the core aspects of the protocol, several crucial topics remain to be addressed in future RFCs. These include:","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12. Future Directions and Related Material","id":"63","title":"12. Future Directions and Related Material"},"64":{"body":"Outbound Interfaces : Interfaces that the host environment provides to the on-chain code, typically known as Host Functions . Unrecorded Inbound Interfaces . Interfaces that the on-chain code provides to the host code, typically known as Runtime APIs . Transactional Inbound Interfaces . Interfaces that the on-chain code provides to the world to alter the chain state, typically known as Transactions (or extrinsics in the Polkadot ecosystem)","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.1. Interactions with On-Chain Code","id":"64","title":"12.1. Interactions with On-Chain Code"},"65":{"body":"Protocol Migration . Exploring how this protocol can seamlessly replace an already operational instance of another protocol. Future RFCs should focus on deployment strategies to facilitate a smooth transition.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.2. Deployment Strategies","id":"65","title":"12.2. Deployment Strategies"},"66":{"body":"Procedure : Determining the procedure for the zk-SNARK SRS (Structured Reference String) initialization. Future RFCs should provide insights into whether this process should include an ad-hoc initialization ceremony or if we can reuse an SRS from another ecosystem (e.g. Zcash or Ethereum). Sharing with Para-chains : Considering the complexity of the process, we must understand whether the SRS is shared with system para-chains or maintained independently.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.3. ZK-SNARK SRS Initialization","id":"66","title":"12.3. ZK-SNARK SRS Initialization"},"67":{"body":"Mixnet Integration : Submitting tickets directly can pose a risk of potential deanonymization through traffic analysis. Subsequent RFCs should investigate the potential for incorporating Mixnet protocol or other privacy-enhancing mechanisms to address this concern.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.4. Anonymous Submission of Tickets.","id":"67","title":"12.4. Anonymous Submission of Tickets."},"68":{"body":"(source) Table of Contents RFC-34: XCM Absolute Location Account Derivation Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Start Date 05 October 2023 Description XCM Absolute Location Account Derivation Authors Gabriel Facco de Arruda","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » RFC-34: XCM Absolute Location Account Derivation","id":"68","title":"RFC-34: XCM Absolute Location Account Derivation"},"69":{"body":"This RFC proposes changes that enable the use of absolute locations in AccountId derivations, which allows protocols built using XCM to have static account derivations in any runtime, regardless of its position in the family hierarchy.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Summary","id":"69","title":"Summary"},"7":{"body":"Current deposit requirements are as follows Looking at the current code structure the currently implemented we can find that the pricing re-uses the logic of how Uniques are defined: parameter_types! { // re-use the Uniques deposits pub const NftsCollectionDeposit: Balance = UniquesCollectionDeposit::get(); pub const NftsItemDeposit: Balance = UniquesItemDeposit::get(); pub const NftsMetadataDepositBase: Balance = UniquesMetadataDepositBase::get(); pub const NftsAttributeDepositBase: Balance = UniquesAttributeDepositBase::get(); pub const NftsDepositPerByte: Balance = UniquesDepositPerByte::get();\n} In the existing setup, the Uniques are defined with specific deposit values for different elements: parameter_types! { pub const UniquesCollectionDeposit: Balance = UNITS / 10; // 1 / 10 UNIT deposit to create a collection pub const UniquesItemDeposit: Balance = UNITS / 1_000; // 1 / 1000 UNIT deposit to mint an item pub const UniquesMetadataDepositBase: Balance = deposit(1, 129); pub const UniquesAttributeDepositBase: Balance = deposit(1, 0); pub const UniquesDepositPerByte: Balance = deposit(0, 1);\n} As we can see in the code definition above the current code does not use the deposit funtion when the collection in the following instances: UniquesCollectionDeposit and UniquesItemDeposit.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Current code structure","id":"7","title":"Current code structure"},"70":{"body":"These changes would allow protocol builders to leverage absolute locations to maintain the exact same derived account address across all networks in the ecosystem, thus enhancing user experience. One such protocol, that is the original motivation for this proposal, is InvArch's Saturn Multisig, which gives users a unifying multisig and DAO experience across all XCM connected chains.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Motivation","id":"70","title":"Motivation"},"71":{"body":"Ecosystem developers","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Stakeholders","id":"71","title":"Stakeholders"},"72":{"body":"This proposal aims to make it possible to derive accounts for absolute locations, enabling protocols that require the ability to maintain the same derived account in any runtime. This is done by deriving accounts from the hash of described absolute locations, which are static across different destinations. The same location can be represented in relative form and absolute form like so: // Relative location (from own perspective)\n{ parents: 0, interior: Here\n} // Relative location (from perspective of parent)\n{ parents: 0, interior: [Parachain(1000)]\n} // Relative location (from perspective of sibling)\n{ parents: 1, interior: [Parachain(1000)]\n} // Absolute location\n[GlobalConsensus(Kusama), Parachain(1000)] Using DescribeFamily, the above relative locations would be described like so: // Relative location (from own perspective)\n// Not possible. // Relative location (from perspective of parent)\n(b\"ChildChain\", Compact::::from(*index)).encode() // Relative location (from perspective of sibling)\n(b\"SiblingChain\", Compact::::from(*index)).encode() The proposed description for absolute location would follow the same pattern, like so: ( b\"GlobalConsensus\", network_id, b\"Parachain\", Compact::::from(para_id), tail\n).encode() This proposal requires the modification of two XCM types defined in the xcm-builder crate: The WithComputedOrigin barrier and the DescribeFamily MultiLocation descriptor. WithComputedOrigin The WtihComputedOrigin barrier serves as a wrapper around other barriers, consuming origin modification instructions and applying them to the message origin before passing to the inner barriers. One of the origin modifying instructions is UniversalOrigin, which serves the purpose of signaling that the origin should be a Universal Origin that represents the location as an absolute path prefixed by the GlobalConsensus junction. In it's current state the barrier transforms locations with the UniversalOrigin instruction into relative locations, so the proposed changes aim to make it return absolute locations instead. DescribeFamily The DescribeFamily location descriptor is part of the HashedDescription MultiLocation hashing system and exists to describe locations in an easy format for encoding and hashing, so that an AccountId can be derived from this MultiLocation. This implementation contains a match statement that does not match against absolute locations, so changes to it involve matching against absolute locations and providing appropriate descriptions for hashing.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Explanation","id":"72","title":"Explanation"},"73":{"body":"No drawbacks have been identified with this proposal.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Drawbacks","id":"73","title":"Drawbacks"},"74":{"body":"Tests can be done using simple unit tests, as this is not a change to XCM itself but rather to types defined in xcm-builder. Security considerations should be taken with the implementation to make sure no unwanted behavior is introduced. This proposal does not introduce any privacy considerations.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Testing, Security, and Privacy","id":"74","title":"Testing, Security, and Privacy"},"75":{"body":"","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Performance, Ergonomics, and Compatibility","id":"75","title":"Performance, Ergonomics, and Compatibility"},"76":{"body":"Depending on the final implementation, this proposal should not introduce much overhead to performance.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Performance","id":"76","title":"Performance"},"77":{"body":"The ergonomics of this proposal depend on the final implementation details.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Ergonomics","id":"77","title":"Ergonomics"},"78":{"body":"Backwards compatibility should remain unchanged, although that depend on the final implementation.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Compatibility","id":"78","title":"Compatibility"},"79":{"body":"DescirbeFamily type: https://github.com/paritytech/polkadot-sdk/blob/master/polkadot/xcm/xcm-builder/src/location_conversion.rs#L122 WithComputedOrigin type: https://github.com/paritytech/polkadot-sdk/blob/master/polkadot/xcm/xcm-builder/src/barriers.rs#L153","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Prior Art and References","id":"79","title":"Prior Art and References"},"8":{"body":"This proposed modification adjusts the deposits to use the deposit function instead of using an arbitrary number. parameter_types! { pub const NftsCollectionDeposit: Balance = deposit(1, 130); pub const NftsItemDeposit: Balance = deposit(1, 164); pub const NftsMetadataDepositBase: Balance = deposit(1, 129); pub const NftsAttributeDepositBase: Balance = deposit(1, 0); pub const NftsDepositPerByte: Balance = deposit(0, 1);\n} Calculations viewed bellow were calculated by using the following repository rfc-pricing . Polkadot | Name | Current price implementation | Proposed Modified by using the new deposit function | |---------------------------|----------------------------------|-------------------------| | collectionDeposit | 10 DOT | 0.20064 DOT | | itemDeposit | 0.01 DOT | 0.20081 DOT | | metadataDepositBase | 0.20129 DOT | 0.20076 DOT | | attributeDepositBase | 0.2 DOT | 0.2 DOT | Similarly the prices for Kusama ecosystem were calculated as: Kusama: | Name | Current price implementation | Proposed Price in KSM | |---------------------------|----------------------------------|---------------------------| | collectionDeposit | 0.1 KSM | 0.006688 KSM | | itemDeposit | 0.001 KSM | 0.000167 KSM | | metadataDepositBase | 0.006709666617 KSM | 0.0006709666617 KSM | | attributeDepositBase | 0.00666666666 KSM | 0.000666666666 KSM |","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Proposed Modification Using the Deposit Function","id":"8","title":"Proposed Modification Using the Deposit Function"},"80":{"body":"Implementation details and overall code is still up to discussion.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Unresolved Questions","id":"80","title":"Unresolved Questions"},"81":{"body":"(source) Table of Contents RFC-0042: Add System version that replaces StateVersion on RuntimeVersion Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 25th October 2023 Description Add System Version and remove State Version Authors Vedhavyas Singareddi","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » RFC-0042: Add System version that replaces StateVersion on RuntimeVersion","id":"81","title":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion"},"82":{"body":"At the moment, we have system_version field on RuntimeVersion that derives which state version is used for the Storage. We have a use case where we want extrinsics root is derived using StateVersion::V1. Without defining a new field under RuntimeVersion, we would like to propose adding system_version that can be used to derive both storage and extrinsic state version.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Summary","id":"82","title":"Summary"},"83":{"body":"Since the extrinsic state version is always StateVersion::V0, deriving extrinsic root requires full extrinsic data. This would be problematic when we need to verify the extrinsics root if the extrinsic sizes are bigger. This problem is further explored in https://github.com/polkadot-fellows/RFCs/issues/19 For Subspace project, we have an enshrined rollups called Domain with optimistic verification and Fraud proofs are used to detect malicious behavior. One of the Fraud proof variant is to derive Domain block extrinsic root on Subspace's consensus chain. Since StateVersion::V0 requires full extrinsic data, we are forced to pass all the extrinsics through the Fraud proof. One of the main challenge here is some extrinsics could be big enough that this variant of Fraud proof may not be included in the Consensus block due to Block's weight restriction. If the extrinsic root is derived using StateVersion::V1, then we do not need to pass the full extrinsic data but rather at maximum, 32 byte of extrinsic data.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Motivation","id":"83","title":"Motivation"},"84":{"body":"Technical Fellowship, in its role of maintaining system runtimes.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Stakeholders","id":"84","title":"Stakeholders"},"85":{"body":"In order to use project specific StateVersion for extrinsic roots, we proposed an implementation that introduced parameter to frame_system::Config but that unfortunately did not feel correct. So we would like to propose adding this change to the RuntimeVersion object. The system version, if introduced, will be used to derive both storage and extrinsic state version. If system version is 0, then both Storage and Extrinsic State version would use V0. If system version is 1, then Storage State version would use V1 and Extrinsic State version would use V0. If system version is 2, then both Storage and Extrinsic State version would use V1. If implemented, the new RuntimeVersion definition would look something similar to /// Runtime version (Rococo).\n#[sp_version::runtime_version]\npub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!(\"rococo\"), impl_name: create_runtime_str!(\"parity-rococo-v2.0\"), authoring_version: 0, spec_version: 10020, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 22, system_version: 1, };","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Explanation","id":"85","title":"Explanation"},"86":{"body":"There should be no drawbacks as it would replace state_version with same behavior but documentation should be updated so that chains know which system_version to use.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Drawbacks","id":"86","title":"Drawbacks"},"87":{"body":"AFAIK, should not have any impact on the security or privacy.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Testing, Security, and Privacy","id":"87","title":"Testing, Security, and Privacy"},"88":{"body":"These changes should be compatible for existing chains if they use state_version value for system_verision.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Performance, Ergonomics, and Compatibility","id":"88","title":"Performance, Ergonomics, and Compatibility"},"89":{"body":"I do not believe there is any performance hit with this change.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Performance","id":"89","title":"Performance"},"9":{"body":"In an effort to further lower barriers to entry and foster greater inclusivity, we propose additional modifications to the pricing structure. These proposed reductions are based on a collaborative and calculated approach, involving the consensus of leading NFT creators within the Polkadot and Kusama Asset Hub communities. The adjustments to deposit amounts are not made arbitrarily. Instead, they are the result of detailed discussions and analyses conducted with prominent NFT creators. Proposed Code Adjustments parameter_types! { pub const NftsCollectionDeposit: Balance = deposit(1, 130); pub const NftsItemDeposit: Balance = deposit(1, 164) / 40; pub const NftsMetadataDepositBase: Balance = deposit(1, 129) / 10; pub const NftsAttributeDepositBase: Balance = deposit(1, 0) / 10; pub const NftsDepositPerByte: Balance = deposit(0, 1);\n} Prices and Proposed Prices on Polkadot Asset Hub: Polkadot | Name | Current price implementation | Proposed Prices | |---------------------------|----------------------------------|---------------------| | collectionDeposit | 10 DOT | 0.20064 DOT | | itemDeposit | 0.01 DOT | 0.005 DOT | | metadataDepositBase | 0.20129 DOT | 0.002 DOT | | attributeDepositBase | 0.2 DOT | 0.002 DOT | Kusama | Name | Current price implementation | Proposed Price in KSM | |---------------------------|----------------------------------|---------------------------| | collectionDeposit | 0.1 KSM | 0.006688 KSM | | itemDeposit | 0.001 KSM | 0.000167 KSM | | metadataDepositBase | 0.006709666617 KSM | 0.0006709666617 KSM | | attributeDepositBase | 0.00666666666 KSM | 0.000666666666 KSM |","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Enhanced Approach to Further Lower Barriers for Entry","id":"9","title":"Enhanced Approach to Further Lower Barriers for Entry"},"90":{"body":"This does not break any exposed Apis.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Ergonomics","id":"90","title":"Ergonomics"},"91":{"body":"This change should not break any compatibility.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Compatibility","id":"91","title":"Compatibility"},"92":{"body":"We proposed introducing a similar change by introducing a parameter to frame_system::Config but did not feel that is the correct way of introducing this change.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Prior Art and References","id":"92","title":"Prior Art and References"},"93":{"body":"I do not have any specific questions about this change at the moment.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Unresolved Questions","id":"93","title":"Unresolved Questions"},"94":{"body":"IMO, this change is pretty self-contained and there won't be any future work necessary.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Future Directions and Related Material","id":"94","title":"Future Directions and Related Material"},"95":{"body":"(source) Table of Contents RFC-0000: Metadata for offline signers Summary Motivation Background Solution requirements Stakeholders Explanation Definitions General flow Metadata modularization Merging protocol Complete Binary Merkle Tree construction protocol Digest Shortening Transmission Offline verification Chain verification Drawbacks Increased transaction size Transition overhead Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-10-31 Description Add SignedExtension to check Metadata Root Hash Authors Alzymologist Oy, Zondax LLC, Parity Technologies","breadcrumbs":"RFC-0000: Metadata for offline signers » RFC-0000: Metadata for offline signers","id":"95","title":"RFC-0000: Metadata for offline signers"},"96":{"body":"Add a metadata digest value (33-byte constant within fixed spec_version) to Signed Extensions to supplement signer party with proof of correct extrinsic interpretation. The digest value is generated once before release and is well-known and deterministic. The digest mechanism is designed to be modular and flexible. It also supports partial metadata transfer as needed by the signing party's extrinsic decoding mechanism. This considers signing devices potentially limited communication bandwidth and/or memory capacity.","breadcrumbs":"RFC-0000: Metadata for offline signers » Summary","id":"96","title":"Summary"},"97":{"body":"","breadcrumbs":"RFC-0000: Metadata for offline signers » Motivation","id":"97","title":"Motivation"},"98":{"body":"While all blockchain systems support (at least in some sense) offline signing used in air-gapped wallets and lightweight embedded devices, only few allow simultaneously complex upgradeable logic and full message decoding on the cold off-line signer side; Substrate is one of these heartening few, and therefore - we should build on this feature to greatly improve transaction security, and thus in general, network resilience. As a starting point, it is important to recognise that prudence and due care are naturally required. As we build further reliance on this feature we should be very careful to make sure it works correctly every time so as not to create false sense of security. In order to enable decoding that is small and optimized for chain storage transactions, a metadata entity is used, which is not at all small in itself (on the order of half-MB for most networks). This is a dynamic data chunk which completely describes chain interfaces and properties that could be made into a portable scale-encoded string for any given network version and passed along into an off-chain device to familiarize it with latest network updates. Of course, compromising this metadata anywhere in the path could result in differences between what user sees and signs, thus it is essential that we protect it. Therefore, we have 2 problems to be solved: Metadata is large, takes long time to be passed into a cold storage device with memory insufficient for its storage; metadata SHOULD be shortened and transmission SHOULD be optimized. Metadata authenticity SHOULD be ensured. As of now, there is no working solution for (1), as the whole metadata has to be passed to the device. On top of this, the solution for (2) heavily relies on a trusted party managing keys and ensuring metadata is indeed authentic: creating poorly decentralized points of potential failure.","breadcrumbs":"RFC-0000: Metadata for offline signers » Background","id":"98","title":"Background"},"99":{"body":"Include metadata digest into signature Some cryptographically strong digest of metadata MAY be included into signable blob. There SHALL NOT be storage overhead for this blob, nor computational overhead; thus MUST be a constant within a given runtime, deterministically defined by metadata. Metadata information that could be used in signable extrinsic decoding MAY be included in digest, its inclusion MUST be indicated in signed extensions; Digest MUST be deterministic with respect to metadata; Digest MUST be cryptographically strong against pre-image, both first and second; Extra-metadata information necessary for extrinsic decoding and constant within runtime version MUST be included in digest; It SHOULD be possible to quickly withdraw offline signing mechanism without access to cold signing devices; Digest format SHOULD be versioned. Work necessary for proving metadata authenticity MAY be omitted at discretion of signer device design (to support automation tools). Reduce metadata size Metadata should be stripped from parts that are not necessary to parse a signable extrinsic, then it should be separated into a finite set of self-descriptive chunks. Thus, a subset of chunks necessary for signable extrinsic decoding and rendering could be sent, possibly in small portions (ultimately - one at a time), to cold device together with proof. Single chunk with proof payload size SHOULD fit within few kB; Chunks handling mechanism SHOULD support chunks being sent in any order without memory utilization overhead; Unused enum variants MUST be stripped (this has great impact on transmitted metadata size; examples: era enum, enum with all calls for call batching).","breadcrumbs":"RFC-0000: Metadata for offline signers » Solution requirements","id":"99","title":"Solution requirements"}},"length":513,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"0":{"0":{"1":{"6":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"9":{"tf":1.0}}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":6,"docs":{"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"7":{"5":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"5":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"177":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"0":{"0":{"6":{"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"9":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"312":{"tf":1.0}}},"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"5":{"df":1,"docs":{"360":{"tf":1.0}}},"6":{"df":1,"docs":{"444":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"159":{"tf":1.0},"338":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"379":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"249":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"260":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"401":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"412":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"277":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"425":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"438":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"467":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"308":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"481":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"495":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"123":{"tf":1.0}}},"4":{"df":1,"docs":{"338":{"tf":1.0}}},"5":{".":{"0":{"8":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"401":{"tf":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":{"68":{"tf":1.0}}},"6":{"df":2,"docs":{"201":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":4,"docs":{"215":{"tf":1.0},"233":{"tf":1.0},"338":{"tf":1.0},"365":{"tf":1.0}}},"9":{":":{"1":{"3":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}},"b":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":3.3166247903554}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"130":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":3.872983346207417},"208":{"tf":1.0},"314":{"tf":1.7320508075688772},"343":{"tf":4.58257569495584},"355":{"tf":1.0},"356":{"tf":2.23606797749979},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"9":{"tf":1.0}},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":4.795831523312719}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"x":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"1":{"df":1,"docs":{"111":{"tf":1.0}}},"2":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"3":{"d":{"d":{"8":{"0":{"8":{"4":{"d":{"5":{"0":{"d":{"b":{"b":{"b":{"c":{"9":{"6":{"2":{"0":{"6":{"7":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"c":{"3":{"7":{"b":{"6":{"2":{"7":{"8":{"3":{"1":{"d":{"9":{"3":{"3":{"9":{"df":0,"docs":{},"f":{"5":{"a":{"6":{"df":0,"docs":{},"e":{"4":{"2":{"6":{"a":{"3":{"2":{"df":0,"docs":{},"e":{"3":{"0":{"7":{"6":{"3":{"1":{"3":{"d":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"111":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"164":{"tf":1.0},"173":{"tf":1.0},"370":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"27":{"tf":1.0}}},"5":{"df":3,"docs":{"312":{"tf":1.0},"360":{"tf":1.4142135623730951},"370":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"297":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"8":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"209":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":8,"docs":{"174":{"tf":1.0},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"360":{"tf":2.0},"507":{"tf":1.0},"7":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"156":{"tf":1.0},"168":{"tf":1.0},"194":{"tf":3.872983346207417},"209":{"tf":1.0},"343":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"168":{"tf":1.0},"194":{"tf":2.23606797749979},"209":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"1":{",":{"6":{"df":1,"docs":{"369":{"tf":1.0}}},"7":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"194":{"tf":2.0}},"u":{"3":{"2":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"314":{"tf":1.0},"324":{"tf":1.0},"481":{"tf":1.0},"62":{"tf":1.0}}},"2":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"66":{"tf":1.0}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.0}}},"8":{"df":6,"docs":{"129":{"tf":1.4142135623730951},"190":{"tf":1.0},"194":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0}}},"9":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":5,"docs":{"173":{"tf":1.0},"23":{"tf":1.0},"414":{"tf":1.0},"495":{"tf":1.0},"63":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":1,"docs":{"467":{"tf":1.0}}},"4":{"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"160":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"406":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"238":{"tf":1.0}}}}},"5":{"0":{"0":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":1,"docs":{"194":{"tf":3.4641016151377544}},"u":{"3":{"2":{"df":1,"docs":{"194":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"2":{"df":1,"docs":{"194":{"tf":1.0}}},"df":5,"docs":{"194":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"308":{"tf":1.0},"429":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":4,"docs":{"194":{"tf":3.4641016151377544},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"500":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}}},"8":{",":{"3":{"3":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"173":{"tf":1.0},"495":{"tf":1.0}}},"9":{".":{"0":{"7":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"379":{"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":1,"docs":{"14":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"365":{"tf":1.0}}},":":{"1":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":52,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"156":{"tf":1.0},"161":{"tf":1.0},"181":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"25":{"tf":1.0},"262":{"tf":1.0},"292":{"tf":1.0},"312":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":2.23606797749979},"343":{"tf":5.656854249492381},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"360":{"tf":3.1622776601683795},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":1.4142135623730951},"391":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"47":{"tf":2.23606797749979},"471":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":0,"docs":{},"v":{"df":1,"docs":{"429":{"tf":1.0}}}}},"2":{",":{"8":{"9":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"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":2,"docs":{"162":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"df":5,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"312":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"29":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"30":{"tf":1.0}}},"5":{"df":1,"docs":{"312":{"tf":2.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":2.0},"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.7320508075688772}},"u":{"3":{"2":{"df":1,"docs":{"194":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"2":{"df":2,"docs":{"278":{"tf":1.0},"437":{"tf":1.0}}},"3":{"df":30,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"384":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":3,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"483":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":2.0},"288":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772}}},"2":{",":{"5":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{",":{"8":{"3":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"184":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"384":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"481":{"tf":1.0},"507":{"tf":1.0}}},"5":{"6":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":1,"docs":{"260":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"7":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"144":{"tf":1.0},"314":{"tf":1.0}}},"8":{"df":1,"docs":{"193":{"tf":1.0}}},"9":{"6":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"128":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"23":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"343":{"tf":3.4641016151377544},"356":{"tf":1.7320508075688772},"360":{"tf":2.23606797749979},"369":{"tf":2.0},"391":{"tf":1.0},"409":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"3":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"32":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"33":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"34":{"tf":1.0}}},"a":{"df":1,"docs":{"143":{"tf":1.0}}},"b":{"df":1,"docs":{"143":{"tf":1.0}}},"c":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"181":{"tf":1.0},"193":{"tf":1.0},"324":{"tf":1.0},"356":{"tf":1.0},"360":{"tf":2.0},"406":{"tf":1.0},"438":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"485":{"tf":1.0}}}}},"df":10,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"162":{"tf":1.0},"194":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}},"3":{"3":{"8":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}}},"4":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"194":{"tf":1.0}}},"8":{"df":1,"docs":{"343":{"tf":1.0}}},"df":25,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.0},"125":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"276":{"tf":1.0},"31":{"tf":1.0},"314":{"tf":1.4142135623730951},"343":{"tf":2.449489742783178},"351":{"tf":1.0},"360":{"tf":1.0},"369":{"tf":2.0},"391":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0}}},"4":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"36":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"37":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.0}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.0}}},"5":{"df":2,"docs":{"23":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"14":{"tf":1.0}}},"5":{"df":3,"docs":{"193":{"tf":1.0},"356":{"tf":1.0},"360":{"tf":2.0}}},"8":{",":{"6":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":2.0},"423":{"tf":1.7320508075688772}}},"9":{",":{"2":{"1":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"191":{"tf":1.0},"194":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"276":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":2.449489742783178},"35":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"429":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.4142135623730951}},"·":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"42":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"45":{"tf":1.0}}},"2":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"497":{"tf":1.4142135623730951}}},"df":6,"docs":{"129":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"194":{"tf":2.0},"243":{"tf":1.0},"507":{"tf":1.0}}},"3":{",":{"3":{"3":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{",":{"6":{"0":{"0":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"207":{"tf":1.0},"23":{"tf":1.0},"266":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.4142135623730951},"385":{"tf":1.0},"41":{"tf":1.0}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"48":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"49":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"50":{"tf":1.0}}},"5":{".":{"1":{".":{"1":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"3":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}},"2":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"52":{"tf":1.0}}},"7":{"df":4,"docs":{"23":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"343":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"33":{"tf":1.0},"442":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"483":{"tf":1.0}}},"df":0,"docs":{}}}},"5":{",":{"3":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{",":{"6":{"6":{"7":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"191":{"tf":1.0},"23":{"tf":1.0},"369":{"tf":1.4142135623730951},"409":{"tf":1.0},"448":{"tf":1.0},"46":{"tf":1.0}}},"7":{"7":{",":{"0":{"0":{"0":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"164":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"23":{"tf":1.0},"385":{"tf":1.0},"406":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"8":{"0":{",":{"0":{"0":{"0":{"df":3,"docs":{"194":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":1.0},"190":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"1":{",":{"8":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"102":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"207":{"tf":1.0},"23":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0}}},"9":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"59":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"168":{"tf":1.0}}},"1":{"b":{"1":{"7":{"1":{"b":{"b":{"1":{"5":{"8":{"df":0,"docs":{},"e":{"2":{"d":{"3":{"8":{"4":{"8":{"df":0,"docs":{},"f":{"a":{"2":{"3":{"a":{"9":{"df":0,"docs":{},"f":{"1":{"c":{"2":{"5":{"1":{"8":{"2":{"df":0,"docs":{},"f":{"b":{"8":{"df":0,"docs":{},"e":{"2":{"0":{"3":{"1":{"3":{"b":{"2":{"c":{"1":{"df":0,"docs":{},"e":{"b":{"4":{"9":{"2":{"1":{"9":{"d":{"a":{"7":{"a":{"7":{"0":{"c":{"df":0,"docs":{},"e":{"9":{"0":{"c":{"3":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"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":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"9":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"57":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}},"_":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"149":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"(":{"1":{"df":1,"docs":{"357":{"tf":1.0}}},"df":0,"docs":{},"x":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{".":{"a":{"df":1,"docs":{"290":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"109":{"tf":1.0},"185":{"tf":1.7320508075688772},"189":{"tf":1.0},"297":{"tf":1.0},"316":{"tf":1.0},"72":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}}},"v":{"df":12,"docs":{"107":{"tf":1.0},"139":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"407":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"483":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"391":{"tf":1.0},"51":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":3.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"426":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"164":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"505":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"134":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.4142135623730951},"343":{"tf":3.0},"344":{"tf":1.0},"347":{"tf":1.0},"363":{"tf":1.0},"407":{"tf":1.0},"503":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":2.0},"161":{"tf":1.0},"164":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"241":{"tf":1.0},"294":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.0},"41":{"tf":1.0},"440":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"350":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"r":{"d":{"df":10,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"146":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"220":{"tf":1.0},"254":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"182":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":2.8284271247461903},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.4142135623730951},"429":{"tf":2.0},"440":{"tf":1.7320508075688772},"454":{"tf":1.0},"468":{"tf":1.4142135623730951},"472":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772}},"i":{"d":{"df":6,"docs":{"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":2,"docs":{"381":{"tf":1.0},"383":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"208":{"tf":1.0},"23":{"tf":1.0},"383":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.7320508075688772}}}}},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":14,"docs":{"194":{"tf":1.0},"221":{"tf":1.0},"239":{"tf":1.0},"261":{"tf":1.0},"360":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"442":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"217":{"tf":1.0},"316":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"254":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"196":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"266":{"tf":1.0},"406":{"tf":1.0},"49":{"tf":1.0}}}},"v":{"df":8,"docs":{"163":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":1.0},"24":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"383":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"12":{"tf":1.0},"146":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"239":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.4142135623730951},"3":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.0},"45":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"48":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"387":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"207":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"403":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"468":{"tf":1.0},"485":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.0},"81":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"162":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"220":{"tf":1.0},"344":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.4142135623730951},"500":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"111":{"tf":1.0}}}}}}}},"df":6,"docs":{"133":{"tf":1.0},"14":{"tf":1.0},"190":{"tf":1.4142135623730951},"378":{"tf":1.0},"410":{"tf":1.0},"437":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.0},"262":{"tf":1.0},"350":{"tf":1.0},"403":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":18,"docs":{"114":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"191":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"429":{"tf":1.0},"485":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"176":{"tf":1.0},"196":{"tf":1.0},"281":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"403":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"189":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"350":{"tf":1.0},"4":{"tf":1.0},"406":{"tf":2.23606797749979},"451":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"31":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"369":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"13":{"tf":1.0},"33":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"135":{"tf":1.0},"14":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.0},"291":{"tf":1.0},"403":{"tf":1.0},"415":{"tf":1.4142135623730951},"420":{"tf":1.0},"434":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.0},"489":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1":{"tf":1.0},"406":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"367":{"tf":1.0},"383":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"243":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"455":{"tf":1.0},"507":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"407":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"181":{"tf":1.7320508075688772},"196":{"tf":1.0},"202":{"tf":1.0},"296":{"tf":1.0},"34":{"tf":1.0},"451":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"254":{"tf":1.0},"312":{"tf":1.0},"429":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"440":{"tf":1.0},"497":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":17,"docs":{"162":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"22":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"367":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"a":{"df":2,"docs":{"190":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{}},"l":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":6,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"128":{"tf":2.0},"146":{"tf":1.0},"199":{"tf":1.4142135623730951},"471":{"tf":1.0}}}}}}}}},"i":{"c":{"df":4,"docs":{"194":{"tf":4.242640687119285},"349":{"tf":1.0},"426":{"tf":2.0},"429":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"383":{"tf":1.0}}}},"n":{"df":1,"docs":{"123":{"tf":1.0}}},"v":{"df":1,"docs":{"269":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"389":{"tf":1.0},"399":{"tf":1.0}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":46,"docs":{"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":2.8284271247461903},"149":{"tf":2.449489742783178},"150":{"tf":3.1622776601683795},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"168":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":2.0},"194":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.449489742783178},"206":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"288":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"302":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"340":{"tf":3.7416573867739413},"343":{"tf":3.4641016151377544},"348":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.7320508075688772},"406":{"tf":1.7320508075688772},"407":{"tf":1.0},"409":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":2.23606797749979},"486":{"tf":1.4142135623730951},"494":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":54,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"146":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"204":{"tf":2.23606797749979},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"328":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"369":{"tf":1.0},"389":{"tf":1.4142135623730951},"396":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":2.23606797749979},"406":{"tf":1.0},"426":{"tf":1.7320508075688772},"429":{"tf":2.0},"445":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"3":{"tf":1.0},"406":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"426":{"tf":1.0},"429":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":23,"docs":{"128":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"196":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"326":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"399":{"tf":1.0},"406":{"tf":1.0},"451":{"tf":1.0},"471":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"191":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"207":{"tf":1.0},"303":{"tf":1.0},"421":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":12,"docs":{"181":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":1.7320508075688772},"369":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"163":{"tf":1.0},"27":{"tf":1.0},"298":{"tf":1.0},"313":{"tf":1.0},"408":{"tf":1.0},"78":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":25,"docs":{"104":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"217":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"343":{"tf":2.8284271247461903},"352":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"26":{"tf":1.0},"343":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"165":{"tf":1.0},"325":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"14":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"343":{"tf":1.7320508075688772},"371":{"tf":1.0},"373":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"406":{"tf":1.0},"407":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}},"u":{"df":1,"docs":{"182":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}},"i":{"df":2,"docs":{"3":{"tf":1.0},"67":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"403":{"tf":1.0},"407":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"134":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"304":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"195":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"235":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"12":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"168":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"217":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"296":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.0},"408":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"497":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"369":{"tf":1.0},"371":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"164":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.7320508075688772},"457":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"122":{"tf":1.0},"185":{"tf":1.7320508075688772},"194":{"tf":1.0},"266":{"tf":1.0},"343":{"tf":2.449489742783178},"369":{"tf":1.0},"430":{"tf":1.0},"485":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"343":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"#":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":20,"docs":{"143":{"tf":1.4142135623730951},"191":{"tf":1.0},"198":{"tf":1.0},"220":{"tf":1.0},"294":{"tf":1.4142135623730951},"304":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.4142135623730951},"384":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"389":{"tf":1.0},"391":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"471":{"tf":1.0},"477":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":2,"docs":{"185":{"tf":1.0},"220":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"173":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"121":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}},"r":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":11,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.23606797749979},"168":{"tf":2.0},"173":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0}}},"df":14,"docs":{"211":{"tf":1.0},"237":{"tf":1.0},"268":{"tf":1.0},"300":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"34":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"407":{"tf":1.0},"43":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"457":{"tf":1.0},"473":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":4,"docs":{"143":{"tf":1.7320508075688772},"253":{"tf":1.0},"451":{"tf":1.0},"455":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"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":12,"docs":{"109":{"tf":1.0},"194":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"3":{"tf":1.0},"407":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"162":{"tf":2.0},"164":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"288":{"tf":1.0},"295":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"498":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.0},"502":{"tf":1.0},"512":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"403":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":1,"docs":{"485":{"tf":1.4142135623730951}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"407":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"383":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"208":{"tf":1.0},"357":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":2.0},"403":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"297":{"tf":1.0},"350":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"409":{"tf":1.0},"47":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"14":{"tf":1.0},"192":{"tf":1.0},"202":{"tf":1.0},"243":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"444":{"tf":1.0},"485":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":3,"docs":{"125":{"tf":1.0},"33":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}},"u":{"d":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":56,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"492":{"tf":1.0},"495":{"tf":1.0},"510":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":4,"docs":{"240":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"497":{"tf":1.4142135623730951}}},"n":{".":{"1":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"195":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"406":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"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":2,"docs":{"128":{"tf":1.0},"152":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"411":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"163":{"tf":1.0},"168":{"tf":1.0}}}}}}}}},"df":24,"docs":{"1":{"tf":1.7320508075688772},"14":{"tf":2.0},"160":{"tf":2.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"169":{"tf":2.6457513110645907},"180":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"295":{"tf":2.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.0},"3":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"'":{"df":2,"docs":{"164":{"tf":1.0},"168":{"tf":1.0}}},"df":15,"docs":{"12":{"tf":1.0},"160":{"tf":2.6457513110645907},"161":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":2.449489742783178},"165":{"tf":2.0},"166":{"tf":2.23606797749979},"168":{"tf":2.23606797749979},"169":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"169":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"194":{"tf":1.7320508075688772},"207":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":16,"docs":{"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"131":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.0},"190":{"tf":2.449489742783178},"191":{"tf":3.1622776601683795},"194":{"tf":3.1622776601683795},"202":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178},"24":{"tf":1.0},"343":{"tf":1.0},"50":{"tf":2.23606797749979}},"e":{"d":{"(":{"a":{"df":1,"docs":{"194":{"tf":2.0}}},"b":{"df":1,"docs":{"194":{"tf":2.449489742783178}}},"c":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"456":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":23,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"48":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":14,"docs":{"134":{"tf":1.0},"143":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"406":{"tf":1.0},"440":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"217":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772}}}}},"r":{"df":2,"docs":{"269":{"tf":1.0},"383":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"169":{"tf":2.6457513110645907},"173":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"216":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"217":{"tf":1.0},"341":{"tf":1.0},"427":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"485":{"tf":1.0},"497":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"47":{"tf":2.0},"48":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.0},"172":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"2":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"184":{"tf":2.0},"189":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}}},"df":11,"docs":{"110":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"387":{"tf":1.0},"459":{"tf":1.0},"473":{"tf":1.0},"56":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"277":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"412":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":48,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"30":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.7320508075688772},"481":{"tf":1.0},"485":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"26":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"194":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"421":{"tf":1.7320508075688772},"453":{"tf":1.0}}}},"df":4,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"135":{"tf":1.0},"99":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":35,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"168":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"294":{"tf":1.0},"343":{"tf":1.4142135623730951},"380":{"tf":1.0},"387":{"tf":1.0},"406":{"tf":1.4142135623730951},"410":{"tf":1.0},"455":{"tf":1.0},"483":{"tf":2.0},"485":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"238":{"tf":1.4142135623730951},"343":{"tf":1.0},"359":{"tf":1.0},"48":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":8,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"343":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}},"y":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"143":{"tf":2.0},"189":{"tf":1.0},"207":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"391":{"tf":1.0},"485":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"203":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"325":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"340":{"tf":1.0},"485":{"tf":1.0},"512":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":2,"docs":{"220":{"tf":1.4142135623730951},"292":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"185":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"162":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":2.23606797749979},"207":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":3.0},"306":{"tf":1.0},"307":{"tf":1.0},"367":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.0},"444":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"9":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":5,"docs":{"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"61":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"243":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"507":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"408":{"tf":1.0},"72":{"tf":2.23606797749979},"9":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"5":{"8":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":43,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"24":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"3":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"495":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"360":{"tf":1.4142135623730951},"383":{"tf":1.0},"406":{"tf":1.0}}}}}},"i":{"c":{"df":6,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772},"362":{"tf":1.0},"505":{"tf":1.0}}},"df":6,"docs":{"189":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"408":{"tf":1.0},"440":{"tf":1.0},"54":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"142":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"129":{"tf":1.4142135623730951},"169":{"tf":1.0},"194":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"298":{"tf":1.0},"307":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"427":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.4142135623730951}}}}},"df":36,"docs":{"104":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.0},"194":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"220":{"tf":1.0},"240":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"295":{"tf":1.0},"344":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"369":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"398":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"471":{"tf":1.7320508075688772},"487":{"tf":1.0},"496":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"500":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":31,"docs":{"115":{"tf":1.0},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.0},"370":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"43":{"tf":1.0},"451":{"tf":1.0},"477":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":1,"docs":{"383":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"133":{"tf":1.4142135623730951},"143":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"193":{"tf":1.0},"194":{"tf":5.5677643628300215},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"293":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"369":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"369":{"tf":1.4142135623730951},"74":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":3.1622776601683795},"486":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"150":{"tf":1.0},"184":{"tf":1.0},"235":{"tf":1.0},"326":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":11,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.4142135623730951},"178":{"tf":1.0},"237":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"132":{"tf":1.4142135623730951},"343":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}},"w":{"df":13,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.0},"190":{"tf":1.4142135623730951},"314":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"415":{"tf":1.0},"454":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"195":{"tf":1.0},"225":{"tf":1.0},"340":{"tf":1.0},"347":{"tf":1.0},"440":{"tf":1.4142135623730951},"444":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}},"df":5,"docs":{"146":{"tf":1.0},"235":{"tf":1.0},"281":{"tf":1.4142135623730951},"403":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":14,"docs":{"14":{"tf":1.0},"146":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"253":{"tf":1.0},"268":{"tf":1.0},"29":{"tf":1.0},"383":{"tf":2.449489742783178},"401":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":1.7320508075688772},"408":{"tf":1.0},"429":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"165":{"tf":1.0},"298":{"tf":1.0},"340":{"tf":1.0},"381":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"122":{"tf":1.0},"164":{"tf":1.0},"235":{"tf":1.4142135623730951},"357":{"tf":1.0},"399":{"tf":1.0},"450":{"tf":1.0},"51":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"123":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"26":{"tf":1.0},"312":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.4142135623730951},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"512":{"tf":1.0},"98":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"168":{"tf":1.0},"185":{"tf":1.4142135623730951},"200":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"184":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.23606797749979}}}}},"df":3,"docs":{"184":{"tf":1.4142135623730951},"406":{"tf":2.0},"407":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":5,"docs":{"414":{"tf":2.0},"416":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"83":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"151":{"tf":1.0},"47":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"485":{"tf":1.0},"95":{"tf":1.0}}}}},"d":{"df":4,"docs":{"193":{"tf":1.0},"23":{"tf":1.4142135623730951},"38":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"102":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"194":{"tf":3.0},"32":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.7320508075688772},"369":{"tf":1.0},"373":{"tf":1.0},"442":{"tf":1.0},"48":{"tf":1.0},"490":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"190":{"tf":1.4142135623730951},"194":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"(":{"3":{"2":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}},"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":2,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"122":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"176":{"tf":1.0},"18":{"tf":1.4142135623730951}}}},"b":{"df":8,"docs":{"161":{"tf":1.0},"164":{"tf":2.6457513110645907},"166":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"99":{"tf":1.4142135623730951}},"s":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"'":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"384":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"392":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"384":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"14":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":66,"docs":{"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"146":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"182":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":3.1622776601683795},"193":{"tf":2.23606797749979},"194":{"tf":3.1622776601683795},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"348":{"tf":1.0},"367":{"tf":2.0},"369":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":2.449489742783178},"387":{"tf":1.0},"389":{"tf":2.0},"39":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.7320508075688772},"403":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":2.0},"442":{"tf":2.0},"444":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"47":{"tf":3.7416573867739413},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":2.6457513110645907},"500":{"tf":5.196152422706632},"51":{"tf":1.7320508075688772},"512":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"399":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":6,"docs":{"168":{"tf":1.0},"200":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"296":{"tf":1.0},"351":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"b":{"df":4,"docs":{"194":{"tf":3.0},"349":{"tf":1.0},"426":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"239":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"217":{"tf":1.4142135623730951},"220":{"tf":2.6457513110645907},"221":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"369":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"233":{"tf":1.7320508075688772},"235":{"tf":2.6457513110645907},"241":{"tf":2.23606797749979},"243":{"tf":1.4142135623730951},"496":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"122":{"tf":1.0}},"h":{"df":29,"docs":{"111":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"204":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"51":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"296":{"tf":1.0},"340":{"tf":1.0}}}}},"df":8,"docs":{"194":{"tf":1.7320508075688772},"369":{"tf":1.0},"371":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"485":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"132":{"tf":1.4142135623730951},"369":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":13,"docs":{"114":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"296":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.4142135623730951},"421":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"491":{"tf":1.0},"512":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"486":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"297":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"253":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"380":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"205":{"tf":1.0}}}},"df":2,"docs":{"351":{"tf":1.0},"353":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"340":{"tf":2.449489742783178},"343":{"tf":5.5677643628300215},"347":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"486":{"tf":1.0},"500":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"182":{"tf":1.4142135623730951},"200":{"tf":1.0},"220":{"tf":1.4142135623730951},"262":{"tf":1.0},"400":{"tf":1.0},"403":{"tf":1.4142135623730951},"410":{"tf":1.0},"497":{"tf":1.4142135623730951},"5":{"tf":1.0},"501":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"5":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"2":{"2":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"179":{"tf":1.0},"393":{"tf":1.0},"434":{"tf":1.0},"440":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"400":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"193":{"tf":3.1622776601683795},"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}},"df":18,"docs":{"189":{"tf":3.0},"190":{"tf":3.4641016151377544},"191":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.23606797749979},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"132":{"tf":1.0},"281":{"tf":1.0},"385":{"tf":1.0},"471":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"387":{"tf":1.0},"466":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"379":{"tf":1.7320508075688772},"380":{"tf":1.4142135623730951},"383":{"tf":2.8284271247461903}}}},"y":{"df":2,"docs":{"171":{"tf":1.0},"185":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"383":{"tf":1.0},"406":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"483":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"238":{"tf":1.0},"239":{"tf":2.0},"328":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"340":{"tf":1.0},"343":{"tf":4.47213595499958},"369":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"454":{"tf":1.0},"466":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"s":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"51":{"tf":1.0},"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":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"241":{"tf":1.0},"243":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"110":{"tf":1.4142135623730951},"294":{"tf":1.0},"406":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":46,"docs":{"102":{"tf":1.7320508075688772},"131":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"194":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.7320508075688772},"266":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"325":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":2.449489742783178},"347":{"tf":1.4142135623730951},"367":{"tf":1.0},"391":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"445":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":2,"docs":{"191":{"tf":1.0},"453":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"191":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"132":{"tf":1.0},"343":{"tf":1.0},"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"298":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":3.7416573867739413},"220":{"tf":2.6457513110645907},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"23":{"tf":2.0},"292":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":17,"docs":{"109":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.4142135623730951},"185":{"tf":1.0},"495":{"tf":2.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"500":{"tf":2.8284271247461903},"501":{"tf":2.0},"502":{"tf":2.449489742783178},"503":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"512":{"tf":2.0}}}},"c":{"df":6,"docs":{"251":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"164":{"tf":1.0},"189":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"182":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"182":{"tf":1.0},"186":{"tf":1.0},"351":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"115":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0},"371":{"tf":1.0},"98":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"101":{"tf":1.0},"156":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"281":{"tf":1.0},"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":45,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"43":{"tf":1.0},"449":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"47":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"50":{"tf":1.0},"503":{"tf":1.0},"58":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"168":{"tf":1.4142135623730951},"367":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"400":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0},"485":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"133":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"392":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"217":{"tf":2.0},"218":{"tf":1.0},"220":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"269":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"168":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"190":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"403":{"tf":1.0},"47":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"505":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"403":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"179":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"18":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0}}},"df":129,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":2.23606797749979},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":2.0},"186":{"tf":1.0},"189":{"tf":4.47213595499958},"190":{"tf":2.6457513110645907},"191":{"tf":2.449489742783178},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"200":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":3.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"235":{"tf":3.1622776601683795},"237":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":2.0},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":2.0},"294":{"tf":2.0},"295":{"tf":2.8284271247461903},"296":{"tf":2.449489742783178},"297":{"tf":3.1622776601683795},"298":{"tf":2.0},"299":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"351":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":1.7320508075688772},"371":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.4142135623730951},"427":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.7320508075688772},"469":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"471":{"tf":1.0},"48":{"tf":2.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"495":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":3.0},"503":{"tf":1.7320508075688772},"51":{"tf":2.0},"512":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":2.23606797749979},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0},"350":{"tf":1.0},"407":{"tf":1.0},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"83":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"190":{"tf":1.0},"487":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":106,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"161":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"326":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":1.0},"371":{"tf":1.0},"385":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"389":{"tf":1.0},"391":{"tf":1.0},"399":{"tf":1.0},"403":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"416":{"tf":2.0},"417":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"457":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"477":{"tf":1.0},"485":{"tf":2.0},"489":{"tf":1.0},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"220":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"205":{"tf":1.0},"207":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"412":{"tf":1.0},"425":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"194":{"tf":1.7320508075688772},"426":{"tf":1.7320508075688772},"429":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":16,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":2.23606797749979},"367":{"tf":1.0},"393":{"tf":1.4142135623730951},"43":{"tf":1.0},"451":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"457":{"tf":2.0},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"260":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"343":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"369":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"369":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"369":{"tf":2.449489742783178}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"12":{"tf":1.0},"207":{"tf":1.0},"316":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"149":{"tf":1.0},"179":{"tf":1.0},"314":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"238":{"tf":1.0},"295":{"tf":1.0},"357":{"tf":1.0},"406":{"tf":1.0},"48":{"tf":1.0},"497":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"132":{"tf":2.0}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":19,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"131":{"tf":2.0},"132":{"tf":4.47213595499958},"133":{"tf":2.0},"142":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.7320508075688772}}}}}}}}}}}}},"i":{"df":1,"docs":{"280":{"tf":1.0}},"r":{"c":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{},"s":{"[":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"164":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"455":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":3.605551275463989},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"483":{"tf":1.0},"487":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"31":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"164":{"tf":1.0},"172":{"tf":1.0}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"146":{"tf":1.0},"376":{"tf":1.0}}},"r":{"df":12,"docs":{"178":{"tf":1.0},"196":{"tf":1.0},"251":{"tf":1.0},"345":{"tf":1.0},"383":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"427":{"tf":1.0},"457":{"tf":1.0},"487":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"414":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":33,"docs":{"133":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"156":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"248":{"tf":1.0},"303":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"371":{"tf":1.0},"373":{"tf":1.0},"441":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.7320508075688772},"487":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"498":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"60":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"485":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"132":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"169":{"tf":1.0},"312":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.4142135623730951},"403":{"tf":1.4142135623730951},"501":{"tf":1.0}},"r":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"241":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"395":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"32":{"tf":1.0}}},"df":41,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":2.23606797749979},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"23":{"tf":1.4142135623730951},"255":{"tf":1.0},"282":{"tf":1.0},"326":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"345":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"370":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"450":{"tf":1.7320508075688772},"451":{"tf":2.0},"453":{"tf":1.4142135623730951},"454":{"tf":2.449489742783178},"455":{"tf":2.449489742783178},"456":{"tf":1.0},"457":{"tf":2.23606797749979},"458":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":2.23606797749979},"7":{"tf":2.0},"80":{"tf":1.0},"9":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"293":{"tf":1.4142135623730951},"450":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"l":{"d":{"df":10,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":19,"docs":{"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"217":{"tf":3.872983346207417},"218":{"tf":2.0},"220":{"tf":3.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":27,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":2.449489742783178},"251":{"tf":2.449489742783178},"253":{"tf":2.0},"254":{"tf":2.6457513110645907},"255":{"tf":1.0},"257":{"tf":2.449489742783178},"269":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"3":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"262":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"254":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.4142135623730951},"391":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"133":{"tf":1.0},"406":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"t":{"df":6,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"189":{"tf":1.0},"253":{"tf":1.4142135623730951},"310":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"168":{"tf":1.0},"290":{"tf":1.4142135623730951},"343":{"tf":1.0},"367":{"tf":1.0},"403":{"tf":1.0},"427":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":13,"docs":{"109":{"tf":1.4142135623730951},"164":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"253":{"tf":1.0},"3":{"tf":1.0},"383":{"tf":1.0},"424":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":3,"docs":{"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"<":{"df":0,"docs":{},"u":{"3":{"2":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"*":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{")":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"328":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":12,"docs":{"173":{"tf":1.0},"190":{"tf":1.0},"280":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"409":{"tf":1.0},"453":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"168":{"tf":1.0},"367":{"tf":1.0}}}}}}},"t":{"df":85,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"136":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":2.0},"181":{"tf":1.0},"196":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"242":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"273":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.4142135623730951},"301":{"tf":1.0},"304":{"tf":1.0},"308":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.4142135623730951},"340":{"tf":1.0},"365":{"tf":1.4142135623730951},"372":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.4142135623730951},"394":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.4142135623730951},"432":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"443":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.4142135623730951},"451":{"tf":1.0},"460":{"tf":1.0},"463":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"474":{"tf":1.0},"477":{"tf":1.0},"481":{"tf":1.4142135623730951},"485":{"tf":1.0},"488":{"tf":1.0},"491":{"tf":1.0},"495":{"tf":1.4142135623730951},"506":{"tf":1.0},"509":{"tf":1.0},"512":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}},"t":{"df":3,"docs":{"217":{"tf":1.4142135623730951},"226":{"tf":1.0},"431":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"146":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.4142135623730951},"172":{"tf":1.0},"343":{"tf":2.0},"485":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":2,"docs":{"290":{"tf":1.0},"386":{"tf":1.0}}}}}},"t":{"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"130":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"326":{"tf":1.0},"440":{"tf":1.0},"457":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"x":{"df":12,"docs":{"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"297":{"tf":1.4142135623730951},"34":{"tf":1.0},"403":{"tf":1.4142135623730951},"407":{"tf":1.0},"429":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"393":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"134":{"tf":1.0},"297":{"tf":1.7320508075688772},"329":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"503":{"tf":1.0}}},"df":1,"docs":{"237":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"168":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.0},"295":{"tf":1.4142135623730951}}},"s":{"df":3,"docs":{"162":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"25":{"tf":1.0},"499":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"502":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"131":{"tf":1.0},"165":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":2.0},"50":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"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":{"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":1,"docs":{"328":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"128":{"tf":1.7320508075688772},"191":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0}}}}},"v":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"440":{"tf":1.0},"481":{"tf":1.7320508075688772},"483":{"tf":1.4142135623730951},"496":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"237":{"tf":1.0},"270":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"383":{"tf":1.0},"459":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"11":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"362":{"tf":1.0},"500":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"135":{"tf":1.0},"197":{"tf":1.4142135623730951},"406":{"tf":1.0},"444":{"tf":1.0},"459":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}},"i":{"d":{"df":2,"docs":{"298":{"tf":1.0},"351":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"169":{"tf":1.0},"454":{"tf":1.4142135623730951},"457":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":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":15,"docs":{"133":{"tf":1.0},"194":{"tf":1.0},"208":{"tf":1.0},"251":{"tf":1.4142135623730951},"295":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":1.0},"360":{"tf":1.0},"414":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"47":{"tf":3.0},"500":{"tf":1.0},"501":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"416":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":1.0},"414":{"tf":2.449489742783178},"416":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":2.0},"420":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":2.23606797749979},"43":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"235":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"325":{"tf":1.0},"497":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"133":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"487":{"tf":1.0},"58":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"235":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"225":{"tf":1.0},"360":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":24,"docs":{"10":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"143":{"tf":1.0},"159":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"310":{"tf":1.0},"344":{"tf":1.4142135623730951},"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"383":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"449":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"429":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"239":{"tf":1.4142135623730951},"279":{"tf":1.0},"296":{"tf":1.0},"31":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"243":{"tf":1.0},"3":{"tf":1.0},"344":{"tf":1.0},"454":{"tf":1.4142135623730951},"507":{"tf":1.0},"6":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"471":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"298":{"tf":1.0}},"t":{"df":4,"docs":{"299":{"tf":1.0},"356":{"tf":1.0},"37":{"tf":1.0},"440":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"163":{"tf":1.0},"254":{"tf":1.0},"343":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":12,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"280":{"tf":1.0},"351":{"tf":1.0},"403":{"tf":1.0},"440":{"tf":1.0},"72":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"403":{"tf":1.0},"482":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"209":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":3.1622776601683795},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"47":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":12,"docs":{"124":{"tf":1.0},"146":{"tf":1.0},"164":{"tf":1.4142135623730951},"189":{"tf":1.0},"282":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":1,"docs":{"351":{"tf":1.0}}}}},"u":{"df":8,"docs":{"22":{"tf":1.0},"222":{"tf":1.0},"280":{"tf":1.0},"310":{"tf":1.0},"340":{"tf":1.0},"368":{"tf":1.4142135623730951},"406":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"160":{"tf":3.1622776601683795},"161":{"tf":1.7320508075688772},"162":{"tf":2.449489742783178},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":2.23606797749979},"166":{"tf":2.0},"168":{"tf":3.4641016151377544},"169":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":2.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"403":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"204":{"tf":1.0},"30":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"194":{"tf":1.7320508075688772},"23":{"tf":1.0},"30":{"tf":1.0},"312":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"241":{"tf":1.0},"279":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":2.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"469":{"tf":1.0},"485":{"tf":1.0},"505":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"237":{"tf":1.0},"348":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}},"t":{"df":4,"docs":{"23":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"471":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"437":{"tf":1.0},"51":{"tf":1.0}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"146":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"292":{"tf":1.0},"425":{"tf":1.7320508075688772},"426":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"429":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}}}}},"n":{"c":{"df":2,"docs":{"147":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"343":{"tf":2.0},"347":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"189":{"tf":1.0},"194":{"tf":1.4142135623730951}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"384":{"tf":1.0},"385":{"tf":1.0},"389":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"131":{"tf":2.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}},"df":41,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":2.6457513110645907},"164":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":2.0},"189":{"tf":3.3166247903554},"190":{"tf":3.1622776601683795},"191":{"tf":4.123105625617661},"192":{"tf":1.7320508075688772},"193":{"tf":3.0},"194":{"tf":5.656854249492381},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"296":{"tf":2.449489742783178},"299":{"tf":1.0},"350":{"tf":2.0},"356":{"tf":2.0},"357":{"tf":2.23606797749979},"359":{"tf":2.23606797749979},"360":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"403":{"tf":1.4142135623730951},"406":{"tf":3.0},"407":{"tf":1.0},"447":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"131":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":2.0},"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"134":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"191":{"tf":1.0},"194":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"165":{"tf":1.0}}},"df":8,"docs":{"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"173":{"tf":1.0},"180":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"193":{"tf":2.449489742783178},"357":{"tf":1.0},"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":40,"docs":{"181":{"tf":2.23606797749979},"182":{"tf":1.0},"189":{"tf":6.244997998398398},"190":{"tf":4.58257569495584},"191":{"tf":4.0},"192":{"tf":3.3166247903554},"193":{"tf":3.1622776601683795},"194":{"tf":2.8284271247461903},"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":2.6457513110645907},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"212":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"379":{"tf":1.7320508075688772},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"383":{"tf":3.4641016151377544},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":2.0},"406":{"tf":2.6457513110645907},"407":{"tf":1.7320508075688772},"408":{"tf":1.4142135623730951},"409":{"tf":1.7320508075688772},"451":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"487":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"115":{"tf":1.0},"360":{"tf":1.0},"440":{"tf":1.0},"459":{"tf":1.0},"473":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"152":{"tf":1.0},"294":{"tf":1.0},"444":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"403":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"132":{"tf":1.0},"191":{"tf":1.4142135623730951},"217":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"12":{"tf":1.0},"173":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"314":{"tf":1.0},"329":{"tf":1.0},"347":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"450":{"tf":2.0},"451":{"tf":1.0},"454":{"tf":1.0},"466":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"343":{"tf":3.3166247903554},"347":{"tf":1.4142135623730951},"406":{"tf":1.0}},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"309":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"456":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"190":{"tf":1.0},"223":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"371":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"281":{"tf":1.0},"72":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"281":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"129":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"29":{"tf":1.0},"343":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"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":{}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"189":{"tf":2.6457513110645907},"191":{"tf":1.7320508075688772},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"217":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":8,"docs":{"133":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"174":{"tf":1.0},"25":{"tf":1.0},"392":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.6457513110645907},"292":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"192":{"tf":1.4142135623730951},"383":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"471":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}},"u":{"df":2,"docs":{"189":{"tf":1.0},"240":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"102":{"tf":1.0},"13":{"tf":1.7320508075688772},"22":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":67,"docs":{"1":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"194":{"tf":2.0},"2":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"280":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.4142135623730951},"391":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":2.449489742783178},"51":{"tf":1.0},"512":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":2.23606797749979},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"s":{"df":1,"docs":{"407":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":7,"docs":{"190":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"406":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"154":{"tf":1.0},"164":{"tf":1.0},"54":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"133":{"tf":1.0},"58":{"tf":1.0}}}}},"d":{"a":{"df":4,"docs":{"164":{"tf":1.7320508075688772},"166":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"400":{"tf":1.0}}},"df":4,"docs":{"310":{"tf":1.0},"312":{"tf":2.449489742783178},"313":{"tf":1.7320508075688772},"314":{"tf":1.0}}},"o":{"df":1,"docs":{"70":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"434":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"512":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":31,"docs":{"124":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":2.0},"132":{"tf":1.7320508075688772},"137":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"18":{"tf":1.0},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"239":{"tf":1.0},"266":{"tf":1.0},"297":{"tf":1.0},"32":{"tf":1.4142135623730951},"343":{"tf":4.795831523312719},"347":{"tf":1.0},"391":{"tf":1.0},"42":{"tf":2.23606797749979},"421":{"tf":1.4142135623730951},"44":{"tf":2.0},"455":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.4142135623730951},"497":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":2.0},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"190":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":6,"docs":{"164":{"tf":1.4142135623730951},"184":{"tf":1.0},"193":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"483":{"tf":1.0}}}},"df":2,"docs":{"194":{"tf":1.4142135623730951},"357":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"194":{"tf":1.0},"343":{"tf":2.0},"386":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"269":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"d":{"df":8,"docs":{"131":{"tf":1.0},"151":{"tf":1.0},"251":{"tf":1.0},"269":{"tf":1.4142135623730951},"381":{"tf":1.0},"440":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"122":{"tf":1.0},"150":{"tf":1.0}}}},"o":{"d":{"df":14,"docs":{"102":{"tf":2.0},"108":{"tf":1.7320508075688772},"122":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"187":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"471":{"tf":1.0},"485":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"137":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":2.0},"199":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"340":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"162":{"tf":1.0},"189":{"tf":1.4142135623730951},"194":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.4142135623730951},"310":{"tf":1.0},"325":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"156":{"tf":1.4142135623730951},"241":{"tf":1.0},"262":{"tf":1.0},"369":{"tf":2.23606797749979},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"+":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"163":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"163":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0}}}}}},"df":2,"docs":{"163":{"tf":2.0},"168":{"tf":1.0}},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"193":{"tf":1.7320508075688772},"208":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"32":{"tf":1.4142135623730951},"325":{"tf":1.0},"355":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"485":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"7":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"11":{"tf":1.0},"243":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"429":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"429":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":8,"docs":{"425":{"tf":1.7320508075688772},"426":{"tf":3.1622776601683795},"427":{"tf":2.23606797749979},"429":{"tf":4.898979485566356},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"437":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"186":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"458":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"170":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"360":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"450":{"tf":2.0},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772},"457":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"297":{"tf":1.0},"39":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772}}}}},"t":{"df":4,"docs":{"190":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"131":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"27":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"450":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"0":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"1":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":2.0}}},"df":0,"docs":{}},"df":33,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"164":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"266":{"tf":1.0},"297":{"tf":1.7320508075688772},"3":{"tf":2.6457513110645907},"4":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.3166247903554},"455":{"tf":1.0},"457":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":2.6457513110645907},"7":{"tf":2.449489742783178},"8":{"tf":2.0},"9":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":7,"docs":{"133":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"378":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"192":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"440":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"266":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"458":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":10,"docs":{"4":{"tf":1.0},"429":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":2.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"85":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"190":{"tf":1.0},"369":{"tf":1.7320508075688772},"406":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":26,"docs":{"107":{"tf":1.0},"131":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.7320508075688772},"292":{"tf":1.0},"301":{"tf":1.0},"343":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"505":{"tf":1.0},"72":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"467":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":2.0},"103":{"tf":1.0},"107":{"tf":1.0},"47":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":24,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"24":{"tf":1.0},"269":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"35":{"tf":1.0},"401":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"483":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":16,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"223":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"406":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"208":{"tf":1.0},"72":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.4142135623730951},"181":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.4142135623730951},"281":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"164":{"tf":1.0},"262":{"tf":1.0},"343":{"tf":1.0},"371":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"185":{"tf":1.0},"212":{"tf":1.0},"239":{"tf":1.4142135623730951},"269":{"tf":1.0},"340":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":2.0},"454":{"tf":1.0},"48":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":2,"docs":{"152":{"tf":1.0},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":44,"docs":{"120":{"tf":1.4142135623730951},"126":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"177":{"tf":1.7320508075688772},"187":{"tf":1.0},"205":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"251":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"30":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"327":{"tf":1.0},"351":{"tf":1.0},"387":{"tf":1.0},"396":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"421":{"tf":1.0},"445":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"352":{"tf":1.0}}}},"c":{"df":6,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"t":{"df":13,"docs":{"233":{"tf":2.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"241":{"tf":1.0},"243":{"tf":1.0},"495":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"502":{"tf":2.23606797749979},"503":{"tf":2.0},"505":{"tf":1.0},"507":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"369":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"104":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"164":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"297":{"tf":1.0},"345":{"tf":1.4142135623730951},"486":{"tf":1.0}},"i":{"df":3,"docs":{"262":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"111":{"tf":2.449489742783178},"113":{"tf":1.0},"47":{"tf":1.4142135623730951},"51":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":2.6457513110645907}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"m":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":50,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.0},"337":{"tf":1.0},"365":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"400":{"tf":1.0},"412":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"512":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"171":{"tf":1.0},"280":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.0},"390":{"tf":1.0},"421":{"tf":1.4142135623730951},"483":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"149":{"tf":1.0},"156":{"tf":1.4142135623730951},"241":{"tf":1.0},"442":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"407":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"429":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"483":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"106":{"tf":1.0},"190":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"369":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}},"v":{"df":5,"docs":{"234":{"tf":1.0},"240":{"tf":1.0},"262":{"tf":1.0},"496":{"tf":1.0},"512":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"495":{"tf":1.0}},"i":{"df":6,"docs":{"234":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"403":{"tf":1.0},"407":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"134":{"tf":1.0},"159":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"369":{"tf":1.0},"381":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"423":{"tf":1.4142135623730951},"437":{"tf":1.0},"447":{"tf":1.0},"464":{"tf":1.0},"5":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"241":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"191":{"tf":3.0},"262":{"tf":1.0},"266":{"tf":1.0},"294":{"tf":1.0},"447":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"132":{"tf":1.0},"134":{"tf":1.7320508075688772},"143":{"tf":2.6457513110645907},"451":{"tf":1.0},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"290":{"tf":1.0},"35":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"191":{"tf":1.0},"234":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"403":{"tf":1.0},"407":{"tf":1.0},"52":{"tf":1.0}}},"s":{"df":2,"docs":{"3":{"tf":1.0},"5":{"tf":1.0}}},"t":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"190":{"tf":1.0},"35":{"tf":1.0},"367":{"tf":1.0},"512":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"187":{"tf":1.0},"404":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"189":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"410":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"472":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"34":{"tf":1.0}}},"df":12,"docs":{"109":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"253":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"343":{"tf":1.0},"402":{"tf":1.0},"45":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":9,"docs":{"162":{"tf":1.0},"191":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"262":{"tf":1.0},"340":{"tf":1.0},"391":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"135":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"343":{"tf":2.6457513110645907},"369":{"tf":2.0},"370":{"tf":1.0},"406":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"466":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"511":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"235":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"194":{"tf":1.0},"236":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"485":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"110":{"tf":1.0},"122":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"293":{"tf":1.0},"315":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.4142135623730951},"507":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":36,"docs":{"11":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.7320508075688772},"207":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"3":{"tf":1.7320508075688772},"313":{"tf":1.0},"316":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"8":{"tf":2.8284271247461903},"9":{"tf":2.8284271247461903}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"193":{"tf":1.0},"360":{"tf":1.0}},"i":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":8,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"241":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"189":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"293":{"tf":1.0},"501":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"357":{"tf":1.4142135623730951},"406":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":59,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0},"349":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.0},"392":{"tf":1.0},"401":{"tf":1.0},"409":{"tf":1.0},"412":{"tf":1.0},"417":{"tf":1.4142135623730951},"425":{"tf":1.0},"430":{"tf":1.4142135623730951},"448":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.0},"495":{"tf":1.0},"504":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"437":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"297":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}},"n":{"df":1,"docs":{"402":{"tf":1.0}}},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"132":{"tf":1.0},"298":{"tf":1.0},"307":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"113":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"241":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"367":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"190":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.4142135623730951},"454":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"296":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":2.0},"407":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":15,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"3":{"tf":1.0},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"407":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":9,"docs":{"163":{"tf":1.4142135623730951},"164":{"tf":2.0},"189":{"tf":1.0},"220":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"303":{"tf":1.0},"407":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0}}}},"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":42,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":2.6457513110645907},"207":{"tf":1.0},"217":{"tf":1.7320508075688772},"24":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"310":{"tf":1.0},"325":{"tf":1.7320508075688772},"326":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"42":{"tf":1.0},"427":{"tf":1.0},"454":{"tf":1.0},"47":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"48":{"tf":2.0},"485":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"163":{"tf":1.0},"200":{"tf":1.0},"371":{"tf":1.0},"406":{"tf":1.4142135623730951},"483":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"162":{"tf":1.0}},"i":{"df":5,"docs":{"132":{"tf":1.0},"143":{"tf":1.4142135623730951},"262":{"tf":1.0},"473":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"159":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"407":{"tf":1.0},"490":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"239":{"tf":1.0},"280":{"tf":1.0},"371":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"497":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"505":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":12,"docs":{"14":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"229":{"tf":1.0},"3":{"tf":1.0},"381":{"tf":1.0},"409":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":26,"docs":{"118":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"166":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"434":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"48":{"tf":1.0},"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":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.0}},"g":{"df":1,"docs":{"193":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"409":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"168":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":2.8284271247461903},"193":{"tf":1.0},"194":{"tf":1.0},"270":{"tf":1.0},"383":{"tf":1.4142135623730951},"403":{"tf":1.0},"450":{"tf":1.4142135623730951},"47":{"tf":1.0},"485":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"193":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":15,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"296":{"tf":1.0},"340":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"427":{"tf":1.0},"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"164":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"217":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"343":{"tf":1.0},"403":{"tf":1.0},"47":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"58":{"tf":1.0}}}}}}},"m":{"b":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"47":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"297":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"163":{"tf":1.0},"407":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":4,"docs":{"43":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"429":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"194":{"tf":2.0},"343":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"122":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"139":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"161":{"tf":1.0},"164":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"179":{"tf":1.0},"189":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.4142135623730951},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"500":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"133":{"tf":1.4142135623730951},"190":{"tf":1.0},"202":{"tf":1.0},"477":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":19,"docs":{"102":{"tf":2.0},"104":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"32":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":2.0},"33":{"tf":1.7320508075688772},"343":{"tf":2.0},"47":{"tf":1.4142135623730951},"471":{"tf":2.23606797749979},"51":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"277":{"tf":2.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.7320508075688772},"280":{"tf":2.0},"281":{"tf":2.449489742783178},"282":{"tf":1.7320508075688772},"285":{"tf":1.0},"287":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"281":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"24":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"3":{"tf":1.0},"369":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"106":{"tf":1.4142135623730951},"128":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":2.6457513110645907},"193":{"tf":2.449489742783178},"194":{"tf":4.898979485566356},"326":{"tf":1.0},"358":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"427":{"tf":1.0},"476":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"296":{"tf":1.0},"383":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"238":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"110":{"tf":1.0},"269":{"tf":1.0},"324":{"tf":1.4142135623730951},"334":{"tf":1.0},"391":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"407":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"173":{"tf":1.0},"187":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.0},"404":{"tf":1.0},"60":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"19":{"tf":1.0},"22":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"129":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"218":{"tf":1.0},"247":{"tf":1.0},"427":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"511":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":48,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.7320508075688772},"223":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"397":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"459":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":15,"docs":{"125":{"tf":1.0},"191":{"tf":2.0},"241":{"tf":1.0},"247":{"tf":1.0},"298":{"tf":1.4142135623730951},"343":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"406":{"tf":1.0},"429":{"tf":1.0},"455":{"tf":1.4142135623730951},"486":{"tf":1.0},"511":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"415":{"tf":1.0},"98":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.4142135623730951},"2":{"tf":1.0},"241":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.4142135623730951},"408":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"102":{"tf":1.0},"104":{"tf":2.6457513110645907},"132":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":1.0},"369":{"tf":1.0},"385":{"tf":1.0},"389":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"149":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":3,"docs":{"164":{"tf":1.0},"189":{"tf":1.0},"202":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"'":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":4.123105625617661},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":23,"docs":{"132":{"tf":1.0},"191":{"tf":3.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"240":{"tf":1.0},"325":{"tf":1.0},"343":{"tf":2.0},"347":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"407":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"191":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"369":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"486":{"tf":1.0}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"294":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":2,"docs":{"297":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"51":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"51":{"tf":2.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"123":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"137":{"tf":1.0}}}}}},"c":{"2":{"0":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"7":{"2":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":78,"docs":{"1":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.4142135623730951},"153":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"242":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.4142135623730951},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"318":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.0},"365":{"tf":1.4142135623730951},"372":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.4142135623730951},"394":{"tf":1.0},"396":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.4142135623730951},"432":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"443":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.4142135623730951},"460":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.4142135623730951},"472":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.4142135623730951},"488":{"tf":1.0},"490":{"tf":1.0},"495":{"tf":1.4142135623730951},"506":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"133":{"tf":1.0},"150":{"tf":1.0},"343":{"tf":4.242640687119285},"487":{"tf":1.0},"497":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"407":{"tf":1.0},"450":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"243":{"tf":1.0},"294":{"tf":1.0},"34":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.0},"433":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"169":{"tf":1.0},"18":{"tf":1.0},"293":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"406":{"tf":1.0},"408":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"t":{"c":{"df":5,"docs":{"235":{"tf":1.0},"298":{"tf":1.0},"369":{"tf":1.0},"423":{"tf":1.0},"434":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"164":{"tf":1.0}}},"df":5,"docs":{"164":{"tf":1.4142135623730951},"166":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"66":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"353":{"tf":1.0}}}}},"n":{"df":14,"docs":{"130":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"307":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.6457513110645907},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.4142135623730951},"48":{"tf":1.0},"491":{"tf":1.4142135623730951},"500":{"tf":1.0},"512":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"125":{"tf":1.0}}}},"t":{"df":4,"docs":{"143":{"tf":1.0},"296":{"tf":1.0},"429":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951}},"u":{"df":5,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"217":{"tf":1.4142135623730951},"387":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"494":{"tf":1.0},"499":{"tf":1.0}}}}}}},"m":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":2.23606797749979},"169":{"tf":2.23606797749979},"171":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"295":{"tf":1.0},"54":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"351":{"tf":1.0},"367":{"tf":1.0},"400":{"tf":1.0},"440":{"tf":1.0},"47":{"tf":1.0},"500":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":36,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"220":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"269":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.4142135623730951},"349":{"tf":1.0},"360":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"406":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"163":{"tf":1.0},"191":{"tf":1.0},"32":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"367":{"tf":1.7320508075688772},"414":{"tf":1.0},"499":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"343":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"290":{"tf":1.4142135623730951},"343":{"tf":3.7416573867739413},"386":{"tf":1.7320508075688772},"393":{"tf":1.0},"398":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"156":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"403":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":47,"docs":{"150":{"tf":1.7320508075688772},"164":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"227":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"365":{"tf":1.0},"367":{"tf":2.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"376":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.7320508075688772},"450":{"tf":1.0},"483":{"tf":1.0},"505":{"tf":1.0},"512":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"328":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"395":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"489":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"182":{"tf":1.0},"186":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"192":{"tf":1.0},"217":{"tf":1.0},"262":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"114":{"tf":1.0},"163":{"tf":1.0},"19":{"tf":1.0},"272":{"tf":1.0},"293":{"tf":1.0},"397":{"tf":1.0},"429":{"tf":1.0},"70":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"408":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"189":{"tf":1.0},"191":{"tf":1.0},"268":{"tf":1.0}},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"190":{"tf":1.0},"310":{"tf":1.0},"328":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"n":{"df":67,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.4142135623730951},"160":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"188":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"288":{"tf":1.0},"292":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.0},"365":{"tf":1.0},"369":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"495":{"tf":1.0},"499":{"tf":1.0},"505":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"133":{"tf":1.0},"208":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"32":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"21":{"tf":1.0},"291":{"tf":1.0},"41":{"tf":1.0},"450":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":1,"docs":{"409":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"12":{"tf":1.0},"357":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"146":{"tf":1.0},"149":{"tf":3.0},"150":{"tf":1.4142135623730951},"471":{"tf":1.0}}}},"s":{"df":13,"docs":{"164":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"301":{"tf":1.0},"344":{"tf":1.0},"403":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"454":{"tf":1.0},"476":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"343":{"tf":1.7320508075688772},"410":{"tf":1.0},"415":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"340":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"*":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"4":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"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":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"340":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"347":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"347":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"164":{"tf":1.0},"234":{"tf":1.0},"408":{"tf":1.0},"496":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"107":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":1.0},"169":{"tf":1.0},"274":{"tf":1.0},"396":{"tf":1.0},"410":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"131":{"tf":1.0},"146":{"tf":1.0},"197":{"tf":1.0},"281":{"tf":1.0},"383":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"328":{"tf":1.0}}}},"df":8,"docs":{"122":{"tf":1.0},"235":{"tf":1.4142135623730951},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"433":{"tf":1.0},"468":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"164":{"tf":1.0},"168":{"tf":1.0},"359":{"tf":1.4142135623730951},"408":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.7320508075688772},"133":{"tf":1.0},"166":{"tf":1.0},"389":{"tf":1.4142135623730951},"429":{"tf":1.0},"440":{"tf":1.7320508075688772},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.4641016151377544},"85":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":2.0}},"i":{"c":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"389":{"tf":1.7320508075688772},"399":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"f":{"+":{"1":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"217":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"186":{"tf":1.4142135623730951},"191":{"tf":1.0},"27":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"217":{"tf":1.0},"297":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":12,"docs":{"193":{"tf":2.6457513110645907},"207":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"477":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":3.1622776601683795},"98":{"tf":1.0}}}}},"r":{"df":4,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"402":{"tf":1.4142135623730951},"407":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"129":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.4142135623730951},"193":{"tf":1.0},"355":{"tf":1.0}}},"s":{"df":3,"docs":{"104":{"tf":1.0},"369":{"tf":2.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"163":{"tf":1.0},"247":{"tf":1.0},"472":{"tf":1.0},"511":{"tf":1.0},"98":{"tf":1.0}}}},"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":4,"docs":{"164":{"tf":1.0},"185":{"tf":1.0},"296":{"tf":1.0},"383":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"186":{"tf":1.0},"296":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"292":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"347":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"125":{"tf":1.0},"391":{"tf":1.0}}}}}}},"df":1,"docs":{"357":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"411":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"240":{"tf":1.0},"370":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":2.0},"139":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"196":{"tf":1.0},"298":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"406":{"tf":1.0},"487":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"192":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"253":{"tf":1.0},"427":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}},"df":2,"docs":{"383":{"tf":1.0},"427":{"tf":1.0}},"l":{"df":4,"docs":{"431":{"tf":1.0},"437":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"162":{"tf":1.0},"164":{"tf":1.0},"205":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"0":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"9":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"4":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"df":1,"docs":{"251":{"tf":1.0}}},"df":27,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":2.0},"254":{"tf":2.0},"258":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"314":{"tf":1.0},"322":{"tf":1.0},"404":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"84":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"132":{"tf":1.0},"383":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"14":{"tf":1.0},"243":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"427":{"tf":1.0},"486":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"104":{"tf":1.4142135623730951},"119":{"tf":1.0},"132":{"tf":1.0},"191":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951},"207":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"32":{"tf":1.0},"369":{"tf":2.0},"48":{"tf":1.0},"501":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"387":{"tf":1.0}}},"l":{"df":4,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.4142135623730951},"48":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"190":{"tf":2.0},"191":{"tf":3.605551275463989},"197":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"48":{"tf":1.4142135623730951},"500":{"tf":2.8284271247461903},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"282":{"tf":1.0}},"i":{"df":3,"docs":{"13":{"tf":1.0},"3":{"tf":1.0},"450":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":16,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"512":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"133":{"tf":1.0},"403":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"343":{"tf":1.0},"407":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}},"t":{"df":2,"docs":{"185":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":28,"docs":{"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"194":{"tf":2.23606797749979},"208":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"297":{"tf":1.4142135623730951},"343":{"tf":1.0},"391":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":2.23606797749979},"471":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"156":{"tf":1.0},"190":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"343":{"tf":2.449489742783178},"50":{"tf":1.0},"99":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"221":{"tf":1.0},"35":{"tf":1.0}}}},"x":{"df":10,"docs":{"131":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"220":{"tf":2.0},"32":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"500":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"369":{"tf":1.0},"485":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"328":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"193":{"tf":1.0},"295":{"tf":1.0},"403":{"tf":1.0},"416":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"296":{"tf":1.0}},"p":{"df":1,"docs":{"357":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"103":{"tf":1.0},"383":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":10,"docs":{"131":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"442":{"tf":1.0},"45":{"tf":2.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"312":{"tf":1.0},"65":{"tf":1.0}},"s":{"df":2,"docs":{"26":{"tf":1.0},"458":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":40,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"162":{"tf":1.0},"169":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"253":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"33":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.0},"383":{"tf":1.4142135623730951},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951},"494":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"389":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"185":{"tf":1.0},"328":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":2.449489742783178},"406":{"tf":1.0},"83":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"430":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"239":{"tf":1.4142135623730951},"240":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"143":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"58":{"tf":2.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}},"t":{"df":14,"docs":{"109":{"tf":1.0},"189":{"tf":1.0},"239":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}}}},"df":16,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"367":{"tf":1.0},"455":{"tf":1.0},"483":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"407":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"193":{"tf":1.0},"48":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"14":{"tf":1.0},"229":{"tf":1.0},"258":{"tf":1.0},"364":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"326":{"tf":1.0},"410":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"197":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0},"61":{"tf":1.0}}}},"df":10,"docs":{"238":{"tf":1.0},"240":{"tf":1.0},"32":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"45":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"501":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"207":{"tf":1.4142135623730951}}}}}},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"164":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"189":{"tf":1.4142135623730951},"401":{"tf":1.0},"403":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":4,"docs":{"164":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"83":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":7,"docs":{"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"266":{"tf":1.0},"297":{"tf":1.0},"340":{"tf":1.7320508075688772},"437":{"tf":1.0},"489":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"427":{"tf":1.0},"454":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"383":{"tf":1.0},"454":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"190":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"146":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"269":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0}}}}},"l":{"df":15,"docs":{"104":{"tf":1.0},"191":{"tf":1.7320508075688772},"204":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"243":{"tf":2.23606797749979},"310":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"33":{"tf":1.0},"367":{"tf":2.23606797749979},"406":{"tf":1.0},"507":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":5,"docs":{"122":{"tf":1.0},"146":{"tf":1.0},"190":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"149":{"tf":3.0},"343":{"tf":7.0},"344":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},"df":74,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":2.23606797749979},"123":{"tf":1.0},"131":{"tf":2.6457513110645907},"133":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"149":{"tf":2.23606797749979},"150":{"tf":1.7320508075688772},"164":{"tf":2.0},"181":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.4142135623730951},"257":{"tf":1.0},"288":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":2.23606797749979},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"3":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":2.0},"343":{"tf":7.280109889280518},"344":{"tf":2.23606797749979},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":2.0},"356":{"tf":1.4142135623730951},"357":{"tf":2.23606797749979},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"389":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":2.0},"429":{"tf":1.0},"43":{"tf":2.449489742783178},"438":{"tf":1.7320508075688772},"439":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":2.23606797749979},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"45":{"tf":2.23606797749979},"468":{"tf":1.0},"471":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.4142135623730951},"6":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"247":{"tf":1.0},"511":{"tf":1.0}}}}}}},"df":9,"docs":{"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"407":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"189":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.0},"383":{"tf":1.0},"401":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.4142135623730951},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"186":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"340":{"tf":1.0},"505":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":70,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"240":{"tf":1.0},"248":{"tf":1.4142135623730951},"260":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.0},"396":{"tf":1.0},"400":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"412":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"452":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"512":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"g":{"a":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":2,"docs":{"165":{"tf":1.0},"168":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"369":{"tf":1.0},"489":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"216":{"tf":1.0},"407":{"tf":1.0}}}},"p":{"df":2,"docs":{"500":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"181":{"tf":1.0},"201":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"437":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"379":{"tf":1.0},"401":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":43,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.4142135623730951},"253":{"tf":1.0},"257":{"tf":1.7320508075688772},"262":{"tf":1.0},"276":{"tf":1.0},"290":{"tf":1.0},"30":{"tf":1.0},"312":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"380":{"tf":1.0},"383":{"tf":1.0},"42":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"47":{"tf":1.0},"473":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":2.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":10,"docs":{"235":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"269":{"tf":1.7320508075688772},"293":{"tf":1.4142135623730951},"297":{"tf":1.0},"47":{"tf":2.8284271247461903},"497":{"tf":1.4142135623730951},"500":{"tf":2.0},"502":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"239":{"tf":1.0},"240":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"454":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"134":{"tf":1.0},"143":{"tf":2.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"457":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"b":{"df":3,"docs":{"343":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"235":{"tf":1.0},"253":{"tf":1.0},"466":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"298":{"tf":1.0},"328":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.0},"367":{"tf":1.0},"497":{"tf":1.0},"70":{"tf":1.0}},"n":{"df":30,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"132":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.7320508075688772},"207":{"tf":1.0},"217":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":2.8284271247461903},"347":{"tf":1.4142135623730951},"352":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"485":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"149":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"194":{"tf":1.0},"261":{"tf":1.0},"310":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0}}}},"df":10,"docs":{"132":{"tf":1.0},"168":{"tf":1.0},"200":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"340":{"tf":1.0},"437":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"485":{"tf":1.0}},"e":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"o":{"d":{"df":9,"docs":{"217":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"292":{"tf":1.0},"340":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.0},"511":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"325":{"tf":1.0},"500":{"tf":1.0}}}}}},"v":{"1":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"350":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"168":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"297":{"tf":3.0},"298":{"tf":2.23606797749979},"306":{"tf":1.0},"307":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"451":{"tf":1.0}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"a":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"133":{"tf":1.0},"406":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"437":{"tf":1.4142135623730951},"459":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"191":{"tf":1.0},"207":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"427":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":13,"docs":{"129":{"tf":1.0},"197":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"290":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"298":{"tf":1.0},"367":{"tf":1.0}}}},"w":{"df":2,"docs":{"164":{"tf":1.0},"352":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"173":{"tf":1.0},"350":{"tf":1.0},"360":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"189":{"tf":1.0},"217":{"tf":1.0},"290":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"230":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"410":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"194":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":2,"docs":{"217":{"tf":1.0},"297":{"tf":1.0}}},"v":{"df":1,"docs":{"137":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"133":{"tf":1.0},"282":{"tf":1.0},"314":{"tf":1.0}},"l":{"df":10,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"297":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"373":{"tf":1.0},"407":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"163":{"tf":1.0},"386":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"440":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"505":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}},"i":{"df":1,"docs":{"401":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"502":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"502":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"132":{"tf":1.0},"143":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"33":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":2.23606797749979},"44":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"47":{"tf":1.0},"501":{"tf":1.4142135623730951},"72":{"tf":2.0},"95":{"tf":1.0}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":22,"docs":{"132":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"370":{"tf":1.0},"407":{"tf":1.0},"429":{"tf":1.4142135623730951},"456":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"495":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"266":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"495":{"tf":1.0},"500":{"tf":2.23606797749979},"503":{"tf":1.7320508075688772},"512":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"343":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"343":{"tf":2.23606797749979},"496":{"tf":1.0},"497":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":5,"docs":{"149":{"tf":1.0},"340":{"tf":1.4142135623730951},"481":{"tf":1.7320508075688772},"483":{"tf":1.4142135623730951},"486":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"487":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"238":{"tf":1.0},"346":{"tf":1.0},"501":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"l":{"d":{"df":3,"docs":{"192":{"tf":1.0},"297":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":11,"docs":{"146":{"tf":1.0},"192":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"410":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":2.0}}}}}},"n":{"c":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"143":{"tf":1.0}}},"df":25,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.7320508075688772},"397":{"tf":1.0},"400":{"tf":1.0},"403":{"tf":1.0},"409":{"tf":1.0},"417":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"455":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"326":{"tf":1.0},"328":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":12,"docs":{"164":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"310":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.0},"41":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"472":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"355":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"458":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"220":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"217":{"tf":1.0},"409":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"434":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"397":{"tf":1.0},"512":{"tf":1.0}},"i":{"df":5,"docs":{"164":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.0},"502":{"tf":1.0},"512":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"130":{"tf":1.0},"150":{"tf":1.7320508075688772},"166":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"125":{"tf":1.0},"166":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"298":{"tf":1.0},"353":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.4142135623730951},"404":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"424":{"tf":1.0},"437":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}},"df":23,"docs":{"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"150":{"tf":1.0},"185":{"tf":1.0},"338":{"tf":2.23606797749979},"339":{"tf":1.4142135623730951},"340":{"tf":3.0},"343":{"tf":4.898979485566356},"344":{"tf":2.23606797749979},"347":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"369":{"tf":1.0},"438":{"tf":1.7320508075688772},"439":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.7320508075688772},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"243":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":2.23606797749979},"416":{"tf":2.449489742783178},"423":{"tf":2.0},"507":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"343":{"tf":1.7320508075688772}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"3":{"7":{"7":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"4":{"7":{"5":{"8":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"8":{"5":{"df":2,"docs":{"274":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"3":{"9":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"133":{"tf":1.0},"464":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"494":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"3":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"0":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"368":{"tf":1.0}}},"6":{"df":1,"docs":{"343":{"tf":1.0}}},"7":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"/":{"#":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"9":{"1":{"%":{"a":{"0":{"df":1,"docs":{"485":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"6":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"q":{"?":{"df":0,"docs":{},"t":{"=":{"5":{"2":{"6":{"df":1,"docs":{"437":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":15,"docs":{"1":{"tf":1.7320508075688772},"14":{"tf":2.0},"160":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"180":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"396":{"tf":1.0},"409":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"i":{"'":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"247":{"tf":1.0},"511":{"tf":1.0}}}},".":{"df":8,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"343":{"tf":1.4142135623730951},"371":{"tf":1.0}}}},"3":{"2":{"df":2,"docs":{"149":{"tf":2.8284271247461903},"343":{"tf":9.273618495495704}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"343":{"tf":8.246211251235321},"344":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":10,"docs":{"104":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"343":{"tf":1.4142135623730951},"369":{"tf":1.0},"454":{"tf":1.4142135623730951},"468":{"tf":1.0},"472":{"tf":1.0}},"e":{"a":{"df":5,"docs":{"13":{"tf":1.0},"340":{"tf":1.0},"410":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0}},"l":{"df":8,"docs":{"185":{"tf":1.0},"193":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"24":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"297":{"tf":2.6457513110645907},"298":{"tf":1.0},"307":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.1622776601683795},"39":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":16,"docs":{"102":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"194":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.0},"286":{"tf":1.0},"343":{"tf":2.23606797749979},"42":{"tf":1.0},"431":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"111":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"132":{"tf":1.0},"151":{"tf":1.0},"369":{"tf":1.0},"503":{"tf":1.0}}}}}},"i":{"df":3,"docs":{"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0}},"i":{"df":3,"docs":{"312":{"tf":2.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"407":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"359":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"195":{"tf":1.0}}}}},"o":{"df":1,"docs":{"94":{"tf":1.0}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":23,"docs":{"100":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.7320508075688772},"154":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"347":{"tf":1.4142135623730951},"408":{"tf":1.0},"440":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"459":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":89,"docs":{"0":{"tf":1.0},"100":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"295":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"42":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"430":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.4142135623730951},"500":{"tf":2.23606797749979},"501":{"tf":2.449489742783178},"502":{"tf":1.7320508075688772},"503":{"tf":2.0},"505":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"470":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}}}}},"i":{"c":{"df":2,"docs":{"14":{"tf":1.0},"373":{"tf":1.0}}},"df":2,"docs":{"184":{"tf":1.0},"47":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"152":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"453":{"tf":1.0}}}}}}},"df":22,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":2.0},"155":{"tf":1.0},"180":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"303":{"tf":1.0},"369":{"tf":1.4142135623730951},"381":{"tf":1.0},"383":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"47":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"168":{"tf":1.0}},"s":{"df":4,"docs":{"130":{"tf":1.0},"185":{"tf":1.0},"326":{"tf":1.0},"370":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"272":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.0},"58":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"407":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"247":{"tf":1.0},"511":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"220":{"tf":1.0},"310":{"tf":1.0},"383":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"192":{"tf":1.0},"406":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":2.0},"163":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"191":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"230":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"268":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"426":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"500":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":2.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":6,"docs":{"111":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"309":{"tf":1.0},"383":{"tf":1.7320508075688772}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"383":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":43,"docs":{"113":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.0},"243":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.7320508075688772},"383":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"409":{"tf":1.0},"414":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"454":{"tf":1.0},"466":{"tf":1.4142135623730951},"507":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"194":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.4142135623730951},"343":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"143":{"tf":1.0},"163":{"tf":1.0},"322":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"192":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.4142135623730951},"47":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":3.605551275463989},"143":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"207":{"tf":1.0},"434":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"i":{"c":{"df":17,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"240":{"tf":1.0},"254":{"tf":1.7320508075688772},"326":{"tf":1.0},"343":{"tf":3.605551275463989},"369":{"tf":1.0},"383":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":14,"docs":{"104":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.7320508075688772},"2":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"328":{"tf":1.0},"369":{"tf":1.0},"407":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}},"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":2,"docs":{"340":{"tf":1.0},"409":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":1.4142135623730951},"369":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"220":{"tf":1.0},"383":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"383":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"381":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":3,"docs":{"104":{"tf":1.0},"287":{"tf":1.0},"297":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"143":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"194":{"tf":1.7320508075688772},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"297":{"tf":1.0},"456":{"tf":1.0},"497":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"200":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"347":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":2.0},"392":{"tf":1.0},"398":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"389":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":2.0},"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.0},"455":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"485":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}},"k":{"!":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"160":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"165":{"tf":2.449489742783178},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"185":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":2.449489742783178},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":2.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"144":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"66":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"150":{"tf":1.4142135623730951},"257":{"tf":1.0},"26":{"tf":1.0},"406":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"181":{"tf":1.0},"189":{"tf":4.0},"190":{"tf":2.0},"191":{"tf":2.449489742783178},"192":{"tf":2.449489742783178},"193":{"tf":2.8284271247461903},"194":{"tf":2.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"194":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"194":{"tf":2.449489742783178}}}}}}}},"t":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.0},"240":{"tf":1.0},"313":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.3166247903554},"383":{"tf":1.0},"399":{"tf":1.0},"407":{"tf":1.4142135623730951},"454":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"189":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"294":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"383":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"442":{"tf":1.0}},"r":{"df":12,"docs":{"149":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"27":{"tf":1.0},"300":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"n":{"d":{"df":6,"docs":{"193":{"tf":1.4142135623730951},"25":{"tf":1.0},"276":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"128":{"tf":1.0},"41":{"tf":1.0}}},"t":{"df":1,"docs":{"407":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"164":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"401":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"415":{"tf":1.7320508075688772},"498":{"tf":1.0},"5":{"tf":1.0}}}}},"f":{"a":{"c":{"df":25,"docs":{"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.449489742783178},"206":{"tf":1.0},"212":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"344":{"tf":1.0},"396":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.0},"476":{"tf":1.0},"64":{"tf":2.449489742783178},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"391":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}},"l":{"a":{"c":{"df":3,"docs":{"190":{"tf":2.0},"191":{"tf":1.0},"194":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"190":{"tf":2.0},"191":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.7320508075688772},"193":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"345":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"32":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"185":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"483":{"tf":1.0},"96":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"186":{"tf":1.0},"454":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":33,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"329":{"tf":1.4142135623730951},"34":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":2.0},"383":{"tf":1.0},"385":{"tf":1.4142135623730951},"403":{"tf":2.0},"438":{"tf":1.4142135623730951},"453":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"477":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"t":{"df":8,"docs":{"0":{"tf":1.0},"23":{"tf":1.4142135623730951},"250":{"tf":1.0},"293":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"262":{"tf":1.4142135623730951},"269":{"tf":1.0},"343":{"tf":2.23606797749979},"369":{"tf":1.4142135623730951},"400":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"357":{"tf":1.0},"383":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"185":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"390":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":11,"docs":{"122":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"401":{"tf":1.0},"449":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"217":{"tf":1.0},"220":{"tf":2.449489742783178},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":9,"docs":{"244":{"tf":1.0},"245":{"tf":1.0},"330":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"374":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"241":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"457":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"295":{"tf":1.0},"337":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}},"df":0,"docs":{}}},"df":22,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"262":{"tf":1.4142135623730951},"266":{"tf":1.0},"297":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"383":{"tf":1.0},"398":{"tf":1.0},"429":{"tf":1.0},"447":{"tf":1.0},"466":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"t":{"'":{"df":16,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"297":{"tf":1.0},"370":{"tf":1.4142135623730951},"383":{"tf":1.7320508075688772},"403":{"tf":1.0},"41":{"tf":1.0},"453":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":11,"docs":{"191":{"tf":1.7320508075688772},"209":{"tf":1.0},"3":{"tf":1.0},"326":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"366":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":2.0},"42":{"tf":2.449489742783178},"440":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"r":{"df":3,"docs":{"185":{"tf":1.0},"243":{"tf":1.0},"507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":16,"docs":{"184":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"407":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"df":3,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0}}},"x":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}}},"z":{"df":1,"docs":{"370":{"tf":1.0}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"278":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"230":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"215":{"tf":1.0},"249":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"220":{"tf":1.0},"253":{"tf":1.0},"281":{"tf":1.0},"314":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"n":{"a":{"df":2,"docs":{"379":{"tf":1.0},"401":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"121":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"512":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"193":{"tf":1.4142135623730951},"369":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"201":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"349":{"tf":1.0},"384":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"150":{"tf":1.0},"500":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}}},"k":{"+":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"238":{"tf":1.7320508075688772},"241":{"tf":1.0},"243":{"tf":1.0},"501":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":3,"docs":{"129":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"132":{"tf":1.0},"152":{"tf":1.0},"194":{"tf":1.0},"281":{"tf":1.0},"369":{"tf":1.0},"445":{"tf":1.4142135623730951},"499":{"tf":1.0},"51":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"143":{"tf":1.0},"176":{"tf":1.0},"241":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"343":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"343":{"tf":3.605551275463989}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":32,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.7320508075688772},"238":{"tf":2.449489742783178},"241":{"tf":2.0},"243":{"tf":1.4142135623730951},"262":{"tf":1.0},"343":{"tf":5.916079783099616},"367":{"tf":2.8284271247461903},"369":{"tf":4.47213595499958},"371":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":2.0},"472":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":2.6457513110645907},"483":{"tf":1.7320508075688772},"501":{"tf":2.8284271247461903},"505":{"tf":2.0},"507":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"53":{"tf":2.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}},"b":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"243":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"149":{"tf":1.0},"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"132":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"179":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"132":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"206":{"tf":1.0},"241":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"343":{"tf":2.0},"35":{"tf":1.0},"407":{"tf":1.0},"45":{"tf":1.0},"483":{"tf":1.4142135623730951},"50":{"tf":1.0},"64":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"233":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"365":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"m":{"df":5,"docs":{"169":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":3.0},"9":{"tf":3.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"a":{"'":{"df":2,"docs":{"297":{"tf":1.0},"298":{"tf":1.0}}},"df":19,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"174":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"239":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":2.8284271247461903},"3":{"tf":1.0},"307":{"tf":1.0},"367":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"ö":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"467":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"1":{"7":{"6":{"2":{"df":1,"docs":{"485":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"164":{"tf":1.0}}},"2":{"df":1,"docs":{"179":{"tf":1.0}}},"3":{"4":{"0":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"5":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"c":{"1":{"5":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"173":{"tf":1.0},"220":{"tf":1.0},"262":{"tf":1.0},"343":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"146":{"tf":1.4142135623730951},"155":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":17,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"168":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"216":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"297":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"404":{"tf":1.0},"450":{"tf":1.0},"487":{"tf":1.0},"505":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"109":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"298":{"tf":1.0},"343":{"tf":1.4142135623730951},"409":{"tf":1.0},"427":{"tf":1.4142135623730951},"486":{"tf":1.0},"50":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"390":{"tf":1.0},"391":{"tf":1.7320508075688772},"393":{"tf":1.0},"395":{"tf":1.0},"399":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"df":13,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"369":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"455":{"tf":1.0},"503":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}},"n":{"c":{"df":2,"docs":{"193":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":9,"docs":{"134":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.0},"407":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"421":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"293":{"tf":1.0}}},"df":4,"docs":{"106":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"485":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"129":{"tf":1.0},"195":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"123":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"357":{"tf":1.0}},"e":{"a":{"d":{"df":18,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"235":{"tf":1.0},"359":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":1.4142135623730951},"440":{"tf":1.0},"458":{"tf":1.0},"505":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"193":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"190":{"tf":1.7320508075688772},"193":{"tf":2.23606797749979},"199":{"tf":1.0},"403":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":4,"docs":{"102":{"tf":1.0},"106":{"tf":2.0},"108":{"tf":1.0},"109":{"tf":1.0}}},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}},"s":{"df":14,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"262":{"tf":2.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"408":{"tf":2.449489742783178}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"189":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0}}}},"b":{"1":{"2":{"8":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"328":{"tf":1.0}}},"2":{"df":1,"docs":{"328":{"tf":1.0}}},"3":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"415":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"357":{"tf":1.0}}},"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"190":{"tf":1.0},"25":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.7320508075688772},"359":{"tf":1.4142135623730951},"406":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"60":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":2.0},"152":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"294":{"tf":1.0}}},"df":1,"docs":{"471":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":8,"docs":{"128":{"tf":1.0},"190":{"tf":1.0},"239":{"tf":1.7320508075688772},"325":{"tf":1.0},"328":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"357":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"185":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"209":{"tf":1.7320508075688772},"217":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"297":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"357":{"tf":1.0}}},"df":2,"docs":{"357":{"tf":1.0},"383":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"194":{"tf":1.4142135623730951},"198":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"327":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"472":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"130":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"359":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":3,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":1,"docs":{"406":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"235":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"303":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":2.23606797749979},"373":{"tf":1.0},"441":{"tf":1.0},"455":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":1.0}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"217":{"tf":1.0},"254":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":31,"docs":{"129":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":2.8284271247461903},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"225":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"257":{"tf":1.0},"298":{"tf":1.0},"343":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"373":{"tf":1.0},"440":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.0},"505":{"tf":1.0},"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"164":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"df":6,"docs":{"357":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"98":{"tf":1.0}}},"k":{"df":9,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"501":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"149":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"254":{"tf":1.0},"292":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":2.23606797749979},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"47":{"tf":1.0},"497":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":7,"docs":{"131":{"tf":1.0},"224":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"303":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951}}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":5,"docs":{"133":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"482":{"tf":1.0},"485":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":10,"docs":{"120":{"tf":1.0},"223":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"343":{"tf":3.1622776601683795},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":4.47213595499958}}}},"df":0,"docs":{},"k":{"df":12,"docs":{"184":{"tf":1.0},"260":{"tf":1.7320508075688772},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"267":{"tf":3.1622776601683795},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"276":{"tf":1.0},"297":{"tf":2.0},"391":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":3,"docs":{"133":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}},"i":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":24,"docs":{"146":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.0},"257":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"400":{"tf":1.4142135623730951},"429":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"468":{"tf":1.4142135623730951},"471":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":23,"docs":{"108":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"217":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.0},"343":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"497":{"tf":1.0},"505":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"208":{"tf":1.0},"262":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"344":{"tf":1.4142135623730951},"371":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"485":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"423":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"414":{"tf":1.0},"471":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"150":{"tf":1.0}}}}},"p":{"df":1,"docs":{"328":{"tf":1.0}}},"s":{"df":2,"docs":{"237":{"tf":1.0},"456":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"429":{"tf":1.0}}},"t":{"df":1,"docs":{"185":{"tf":1.0}}}},"t":{"df":1,"docs":{"237":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"df":13,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"165":{"tf":1.0},"194":{"tf":1.4142135623730951},"204":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"327":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1":{"tf":1.7320508075688772},"14":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"450":{"tf":1.0},"483":{"tf":1.0},"6":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"184":{"tf":1.0},"290":{"tf":1.0},"343":{"tf":3.4641016151377544},"440":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":14,"docs":{"128":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.0},"341":{"tf":1.0},"427":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"115":{"tf":1.0},"125":{"tf":1.0},"187":{"tf":1.0},"369":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0},"503":{"tf":2.0},"61":{"tf":1.0},"83":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"282":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":25,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.4142135623730951},"2":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"297":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"375":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"235":{"tf":1.7320508075688772},"255":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"387":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"168":{"tf":1.4142135623730951},"180":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0},"408":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":62,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"151":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"310":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":2.23606797749979},"371":{"tf":1.0},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.0},"440":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"466":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"371":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.4142135623730951},"185":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.7320508075688772},"225":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":2.23606797749979},"263":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"251":{"tf":1.0},"253":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.0},"237":{"tf":1.0},"328":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":24,"docs":{"100":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.7320508075688772},"165":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.4142135623730951},"369":{"tf":1.0},"403":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"253":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":2.0},"201":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"391":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"<":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":10,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"133":{"tf":2.6457513110645907},"162":{"tf":1.0},"169":{"tf":2.0},"174":{"tf":1.0},"194":{"tf":1.4142135623730951},"24":{"tf":1.0},"35":{"tf":1.0},"457":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}}}}},"k":{"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"14":{"tf":1.0},"185":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"402":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"402":{"tf":1.0},"406":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}},"df":25,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"401":{"tf":2.23606797749979},"402":{"tf":1.7320508075688772},"403":{"tf":3.1622776601683795},"406":{"tf":3.605551275463989},"407":{"tf":2.6457513110645907},"408":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"190":{"tf":2.0},"191":{"tf":3.872983346207417},"194":{"tf":6.6332495807108}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"164":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.0},"337":{"tf":1.0},"365":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.0},"400":{"tf":1.0},"412":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"512":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"x":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"357":{"tf":1.0},"407":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"290":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":20,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"239":{"tf":1.0},"314":{"tf":1.4142135623730951},"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"403":{"tf":1.0},"406":{"tf":2.0},"407":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}},"y":{"b":{"df":5,"docs":{"151":{"tf":1.0},"155":{"tf":1.0},"243":{"tf":1.0},"270":{"tf":1.0},"507":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":3.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"98":{"tf":1.0}},"m":{"df":2,"docs":{"384":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":25,"docs":{"131":{"tf":1.0},"146":{"tf":1.0},"164":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"455":{"tf":1.4142135623730951},"471":{"tf":1.0},"500":{"tf":1.0}},"t":{"df":3,"docs":{"238":{"tf":1.0},"313":{"tf":1.0},"501":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"347":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":43,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.4142135623730951},"14":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":2.8284271247461903},"243":{"tf":1.0},"260":{"tf":1.7320508075688772},"261":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"310":{"tf":1.0},"351":{"tf":1.4142135623730951},"376":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"401":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"507":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"217":{"tf":1.0},"313":{"tf":1.0},"407":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"243":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"253":{"tf":2.449489742783178},"254":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.4142135623730951},"340":{"tf":1.7320508075688772},"343":{"tf":4.898979485566356},"371":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":2.23606797749979},"485":{"tf":3.3166247903554},"486":{"tf":1.7320508075688772},"494":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"47":{"tf":1.0},"499":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}}},"g":{"df":8,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"250":{"tf":1.0},"398":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"k":{"df":0,"docs":{},"l":{"df":11,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"164":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"110":{"tf":1.0},"143":{"tf":1.0},"178":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":2.449489742783178},"207":{"tf":2.449489742783178},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"239":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":2.6457513110645907},"72":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":2.8284271247461903},"103":{"tf":2.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":2.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"2":{"tf":1.0},"3":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.6457513110645907},"99":{"tf":3.1622776601683795}},"v":{"1":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":2,"docs":{"114":{"tf":1.0},"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":1,"docs":{"310":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"182":{"tf":1.4142135623730951},"23":{"tf":1.0},"343":{"tf":1.4142135623730951},"38":{"tf":1.0},"51":{"tf":3.1622776601683795},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"i":{"b":{"df":4,"docs":{"369":{"tf":1.0},"370":{"tf":2.23606797749979},"483":{"tf":1.0},"485":{"tf":1.0}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"168":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"196":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.7320508075688772},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.0},"296":{"tf":1.7320508075688772},"297":{"tf":2.8284271247461903},"298":{"tf":2.0},"384":{"tf":1.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"391":{"tf":2.23606797749979},"396":{"tf":1.0},"398":{"tf":1.0},"453":{"tf":1.0},"512":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":2.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"499":{"tf":1.0}}},"df":1,"docs":{"414":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"186":{"tf":1.0},"288":{"tf":1.4142135623730951},"395":{"tf":1.0},"399":{"tf":1.0},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"288":{"tf":1.0},"290":{"tf":1.0},"296":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"1":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"416":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}},"u":{"df":1,"docs":{"500":{"tf":1.0}},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"407":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":5,"docs":{"130":{"tf":1.0},"165":{"tf":1.0},"194":{"tf":1.0},"224":{"tf":1.0},"369":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"349":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":1.0},"134":{"tf":1.0},"18":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":2,"docs":{"454":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":2,"docs":{"391":{"tf":1.0},"399":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"11":{"tf":1.0}}},"df":34,"docs":{"1":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.4142135623730951},"200":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":2.0},"352":{"tf":1.0},"355":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":2.0},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"440":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":2.6457513110645907},"451":{"tf":1.4142135623730951},"453":{"tf":1.7320508075688772},"454":{"tf":1.7320508075688772},"457":{"tf":1.0},"462":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1":{"tf":1.0},"257":{"tf":1.0},"412":{"tf":1.7320508075688772},"425":{"tf":1.7320508075688772},"426":{"tf":1.0},"454":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":16,"docs":{"130":{"tf":1.0},"14":{"tf":1.4142135623730951},"223":{"tf":1.0},"235":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"334":{"tf":1.4142135623730951},"343":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":1.0},"486":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"150":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"398":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.0},"240":{"tf":1.0},"455":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"164":{"tf":1.0},"18":{"tf":1.0},"195":{"tf":1.0},"440":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"173":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.0},"296":{"tf":1.0},"408":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"309":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"163":{"tf":1.0},"169":{"tf":1.7320508075688772},"173":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":67,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"185":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"2":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.4142135623730951},"276":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"326":{"tf":1.0},"329":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"359":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"369":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"396":{"tf":1.0},"399":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.0},"408":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.4142135623730951},"450":{"tf":2.0},"47":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"117":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":68,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.4142135623730951},"401":{"tf":1.0},"403":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"481":{"tf":1.0},"483":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":17,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"157":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"340":{"tf":1.0},"400":{"tf":1.4142135623730951},"408":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"343":{"tf":2.449489742783178}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"14":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"293":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":1.0},"409":{"tf":1.0},"45":{"tf":1.0},"503":{"tf":1.0},"511":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":9,"docs":{"146":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"190":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.4142135623730951},"386":{"tf":1.0},"429":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"326":{"tf":1.0}}}},"i":{"df":3,"docs":{"190":{"tf":1.0},"193":{"tf":1.0},"406":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"297":{"tf":1.0}}}},"df":1,"docs":{"44":{"tf":1.0}}}}},"n":{"+":{"1":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"/":{"3":{"df":3,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0}}},"8":{"df":1,"docs":{"33":{"tf":1.0}}},"a":{"df":8,"docs":{"317":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"393":{"tf":1.4142135623730951},"422":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0}}},"df":0,"docs":{}},"=":{"3":{"df":0,"docs":{},"f":{"+":{"df":0,"docs":{},"k":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"3":{"df":2,"docs":{"128":{"tf":1.0},"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"125":{"tf":1.0},"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"125":{"tf":1.0},"143":{"tf":1.0},"340":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"149":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":1.0},"295":{"tf":1.0},"343":{"tf":2.23606797749979},"344":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.4142135623730951},"399":{"tf":1.7320508075688772},"502":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"13":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"483":{"tf":2.23606797749979},"512":{"tf":1.0},"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"165":{"tf":1.0},"172":{"tf":1.0},"383":{"tf":1.4142135623730951},"406":{"tf":1.0},"98":{"tf":1.0}}}}},"y":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"129":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":2.23606797749979},"357":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"165":{"tf":1.0},"189":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"137":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"216":{"tf":1.0},"26":{"tf":1.0},"289":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"407":{"tf":1.0},"454":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.4142135623730951},"94":{"tf":1.0},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"190":{"tf":1.0},"326":{"tf":1.0}}}}}}},"df":3,"docs":{"280":{"tf":1.0},"359":{"tf":1.0},"367":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"406":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":69,"docs":{"11":{"tf":1.4142135623730951},"125":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"217":{"tf":1.7320508075688772},"226":{"tf":1.0},"235":{"tf":2.0},"240":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"290":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"296":{"tf":2.0},"297":{"tf":2.23606797749979},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.7320508075688772},"344":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.4142135623730951},"359":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"411":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"446":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"440":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"178":{"tf":1.0},"243":{"tf":1.0},"347":{"tf":1.0},"489":{"tf":1.0},"507":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"426":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951}}}},"t":{"df":4,"docs":{"197":{"tf":1.0},"383":{"tf":1.0},"430":{"tf":1.0},"489":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"255":{"tf":1.0},"293":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":59,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"2":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":2.0},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":2.0},"254":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.4142135623730951},"326":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":2.0},"369":{"tf":2.23606797749979},"371":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":2.6457513110645907},"429":{"tf":1.7320508075688772},"437":{"tf":1.0},"459":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":2.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"149":{"tf":1.0},"190":{"tf":1.0},"268":{"tf":1.4142135623730951},"274":{"tf":1.0},"343":{"tf":2.0},"54":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"193":{"tf":1.7320508075688772},"358":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":79,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":2.23606797749979},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":2.23606797749979},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":2.23606797749979},"251":{"tf":1.7320508075688772},"255":{"tf":1.0},"257":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":3.4641016151377544},"344":{"tf":1.4142135623730951},"346":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"454":{"tf":2.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"469":{"tf":1.0},"473":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"511":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"512":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"235":{"tf":1.0},"343":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"132":{"tf":1.0},"156":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"30":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":2.8284271247461903},"406":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"163":{"tf":1.4142135623730951},"194":{"tf":1.0},"2":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"5":{"tf":2.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"369":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"292":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":50,"docs":{"102":{"tf":3.1622776601683795},"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"109":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":2.8284271247461903},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"243":{"tf":2.23606797749979},"297":{"tf":1.4142135623730951},"343":{"tf":1.0},"367":{"tf":2.6457513110645907},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"397":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"447":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":1.7320508075688772},"496":{"tf":1.0},"497":{"tf":3.4641016151377544},"500":{"tf":2.449489742783178},"501":{"tf":2.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772},"507":{"tf":2.23606797749979},"512":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"176":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0}}}}},"n":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"146":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"217":{"tf":1.0},"235":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"343":{"tf":2.23606797749979},"406":{"tf":1.0}},"e":{"df":30,"docs":{"150":{"tf":1.4142135623730951},"158":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"231":{"tf":1.0},"246":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"286":{"tf":1.0},"323":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"343":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"504":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"240":{"tf":1.0}}}}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"145":{"tf":1.0},"150":{"tf":1.0},"207":{"tf":1.0},"399":{"tf":1.0}}}},"df":1,"docs":{"11":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"297":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":40,"docs":{"114":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.7320508075688772},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"371":{"tf":1.0},"383":{"tf":1.0},"392":{"tf":1.0},"406":{"tf":1.4142135623730951},"41":{"tf":1.0},"414":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.0},"457":{"tf":1.0},"466":{"tf":1.0},"51":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}}}}}}}},"i":{"c":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"194":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":7,"docs":{"194":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"328":{"tf":2.8284271247461903},"329":{"tf":1.4142135623730951},"334":{"tf":1.0}},"i":{"df":2,"docs":{"204":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"v":{"a":{"df":2,"docs":{"421":{"tf":1.0},"434":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"b":{"df":5,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"308":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"146":{"tf":1.0},"164":{"tf":1.4142135623730951},"328":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"375":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0},"485":{"tf":1.0},"98":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"296":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"193":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":50,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.7320508075688772},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"204":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.3166247903554},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"359":{"tf":1.4142135623730951},"366":{"tf":1.0},"369":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"440":{"tf":1.0},"454":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":2.6457513110645907},"483":{"tf":1.0},"50":{"tf":1.4142135623730951},"505":{"tf":1.0},"51":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}},"}":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"d":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"161":{"tf":1.0},"2":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"406":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"487":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"143":{"tf":1.0},"369":{"tf":1.0},"407":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"240":{"tf":1.0},"343":{"tf":1.4142135623730951},"347":{"tf":1.0},"367":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":4,"docs":{"151":{"tf":1.4142135623730951},"154":{"tf":1.0},"220":{"tf":1.0},"340":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}},"i":{"df":2,"docs":{"134":{"tf":1.0},"143":{"tf":2.23606797749979}}}},"r":{"df":7,"docs":{"190":{"tf":1.0},"290":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.4142135623730951},"434":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"33":{"tf":3.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.449489742783178},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"33":{"tf":1.7320508075688772},"42":{"tf":1.0}}}},"o":{"b":{"df":4,"docs":{"425":{"tf":1.0},"438":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":4,"docs":{"309":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"146":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"409":{"tf":1.0},"423":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"294":{"tf":1.0},"297":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":20,"docs":{"13":{"tf":1.0},"154":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"29":{"tf":1.0},"290":{"tf":1.7320508075688772},"3":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"110":{"tf":1.0},"120":{"tf":1.0},"48":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":2.8284271247461903}}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"193":{"tf":2.449489742783178},"357":{"tf":1.4142135623730951},"358":{"tf":1.7320508075688772},"360":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"146":{"tf":1.0},"191":{"tf":1.7320508075688772},"207":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"133":{"tf":1.4142135623730951},"348":{"tf":1.0},"375":{"tf":1.0},"500":{"tf":1.0},"512":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"384":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"262":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":20,"docs":{"125":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"152":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"194":{"tf":1.0},"251":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"347":{"tf":1.0},"367":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":68,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.7320508075688772},"243":{"tf":1.0},"257":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"280":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"310":{"tf":1.0},"312":{"tf":1.0},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":1.0},"334":{"tf":1.0},"343":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.4142135623730951},"455":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"186":{"tf":1.0},"194":{"tf":1.0},"235":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"389":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"369":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"185":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"440":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"164":{"tf":1.7320508075688772},"174":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.4142135623730951},"208":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"325":{"tf":1.0},"437":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"16":{"tf":1.0},"293":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0}}}}}},"r":{"df":21,"docs":{"14":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.0},"191":{"tf":2.449489742783178},"193":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"35":{"tf":1.0},"383":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"247":{"tf":1.0},"369":{"tf":1.0},"511":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"307":{"tf":1.0},"406":{"tf":1.0},"453":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":15,"docs":{"118":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.0},"421":{"tf":1.0},"476":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"142":{"tf":1.0}},"t":{"df":2,"docs":{"164":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"194":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"110":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.0},"173":{"tf":1.0},"239":{"tf":1.0},"369":{"tf":2.449489742783178},"381":{"tf":1.0},"383":{"tf":1.4142135623730951},"393":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.4142135623730951},"455":{"tf":1.0},"47":{"tf":1.4142135623730951},"485":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":45,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.7320508075688772},"143":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"268":{"tf":1.0},"279":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.8284271247461903},"35":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"400":{"tf":1.0},"403":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.4142135623730951},"456":{"tf":1.0},"471":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"252":{"tf":1.0},"253":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"162":{"tf":1.0},"191":{"tf":3.1622776601683795},"220":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"297":{"tf":1.0},"326":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"454":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"239":{"tf":1.0},"257":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"102":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"190":{"tf":1.0},"262":{"tf":1.0},"360":{"tf":1.0},"391":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"499":{"tf":1.0},"52":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"383":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"22":{"tf":1.0},"483":{"tf":1.0}}}}},"df":16,"docs":{"114":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"281":{"tf":1.0},"343":{"tf":8.12403840463596},"348":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"31":{"tf":1.0},"383":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"51":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"122":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"343":{"tf":3.4641016151377544},"397":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"184":{"tf":1.0},"383":{"tf":1.4142135623730951},"430":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"80":{"tf":1.0}}}},"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"407":{"tf":1.0}}},"df":0,"docs":{}}},"df":23,"docs":{"12":{"tf":1.0},"129":{"tf":1.0},"154":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"200":{"tf":1.0},"223":{"tf":1.0},"295":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.4142135623730951},"386":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"485":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"440":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":10,"docs":{"114":{"tf":1.4142135623730951},"130":{"tf":1.0},"243":{"tf":1.0},"262":{"tf":1.0},"395":{"tf":1.0},"407":{"tf":1.0},"507":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"131":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"297":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"466":{"tf":1.0}}},"o":{"a":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"181":{"tf":1.0},"189":{"tf":1.0},"349":{"tf":1.0},"355":{"tf":1.0},"41":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"189":{"tf":2.0},"190":{"tf":1.7320508075688772},"191":{"tf":2.8284271247461903},"194":{"tf":4.69041575982343},"39":{"tf":1.0},"403":{"tf":1.0},"43":{"tf":1.0},"468":{"tf":1.4142135623730951},"471":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":14,"docs":{"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"467":{"tf":1.7320508075688772},"468":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":2.23606797749979},"53":{"tf":1.0}}}}}}}}}},"y":{"df":1,"docs":{"95":{"tf":1.0}}}},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}}},"0":{"df":1,"docs":{"194":{"tf":1.0}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"357":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":1.0}}}},"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":4,"docs":{"481":{"tf":1.7320508075688772},"483":{"tf":2.0},"486":{"tf":1.0},"61":{"tf":1.0}}}},"i":{"d":{"df":13,"docs":{"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"253":{"tf":1.0},"383":{"tf":1.7320508075688772},"448":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.7320508075688772},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"429":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"220":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":35,"docs":{"102":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":2.0},"247":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.7320508075688772},"266":{"tf":1.0},"281":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":2.449489742783178},"3":{"tf":1.0},"304":{"tf":1.0},"313":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"426":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.0},"454":{"tf":1.7320508075688772},"456":{"tf":2.6457513110645907},"457":{"tf":1.0},"511":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"266":{"tf":1.0}}},"(":{"1":{"0":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":82,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":2.6457513110645907},"195":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":2.23606797749979},"237":{"tf":2.0},"238":{"tf":1.7320508075688772},"239":{"tf":2.449489742783178},"240":{"tf":2.23606797749979},"241":{"tf":2.6457513110645907},"243":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"261":{"tf":2.6457513110645907},"262":{"tf":4.58257569495584},"263":{"tf":2.6457513110645907},"264":{"tf":1.4142135623730951},"266":{"tf":4.123105625617661},"267":{"tf":3.3166247903554},"268":{"tf":2.449489742783178},"269":{"tf":3.7416573867739413},"272":{"tf":1.0},"274":{"tf":2.0},"276":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":3.872983346207417},"298":{"tf":2.23606797749979},"303":{"tf":1.4142135623730951},"353":{"tf":1.0},"387":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":2.6457513110645907},"452":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":2.8284271247461903},"455":{"tf":2.8284271247461903},"456":{"tf":1.0},"457":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"485":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"415":{"tf":1.0}}}}},"df":12,"docs":{"133":{"tf":1.0},"194":{"tf":1.4142135623730951},"229":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"30":{"tf":1.0},"448":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":2.0},"457":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"d":{"df":10,"docs":{"164":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"204":{"tf":1.0},"207":{"tf":1.0},"254":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.23606797749979},"457":{"tf":1.4142135623730951},"458":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"129":{"tf":1.0},"177":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"m":{"df":2,"docs":{"149":{"tf":2.449489742783178},"343":{"tf":11.269427669584644}},"e":{"df":0,"docs":{},"t":{"df":21,"docs":{"102":{"tf":1.0},"190":{"tf":1.7320508075688772},"193":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"343":{"tf":3.1622776601683795},"349":{"tf":1.0},"356":{"tf":1.0},"360":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.7320508075688772},"416":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":2.0},"471":{"tf":1.0},"48":{"tf":1.7320508075688772},"85":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":2,"docs":{"131":{"tf":1.0},"182":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"309":{"tf":1.0},"310":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"72":{"tf":2.23606797749979}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"187":{"tf":1.4142135623730951},"404":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":2,"docs":{"129":{"tf":1.0},"143":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"370":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}},"t":{"df":24,"docs":{"102":{"tf":1.7320508075688772},"109":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"156":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.0},"33":{"tf":1.0},"400":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"220":{"tf":1.0},"269":{"tf":2.0},"3":{"tf":1.0},"383":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"429":{"tf":2.0},"437":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.7320508075688772},"503":{"tf":2.0},"512":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"125":{"tf":1.0},"14":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"217":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"429":{"tf":1.7320508075688772},"486":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"486":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"132":{"tf":1.0},"303":{"tf":1.0},"450":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"154":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"t":{"df":4,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"5":{"7":{"6":{"0":{"0":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"111":{"tf":1.0},"143":{"tf":1.0},"191":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"314":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0}}}}},"t":{"df":2,"docs":{"207":{"tf":1.0},"369":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"123":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"251":{"tf":1.0},"380":{"tf":1.0},"485":{"tf":2.23606797749979},"486":{"tf":1.7320508075688772},"489":{"tf":1.7320508075688772},"491":{"tf":1.0},"494":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"383":{"tf":1.0},"421":{"tf":1.0},"445":{"tf":1.0},"476":{"tf":1.0},"72":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"172":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":1,"docs":{"454":{"tf":1.0}}}}}}},"df":7,"docs":{"194":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":2.23606797749979},"451":{"tf":1.0}},"e":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"110":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"194":{"tf":1.0},"316":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"454":{"tf":2.0},"462":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"194":{"tf":1.0},"298":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"129":{"tf":1.0},"234":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0},"325":{"tf":1.0},"367":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"512":{"tf":2.0}},"i":{"d":{"df":5,"docs":{"235":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.0},"343":{"tf":1.4142135623730951},"505":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"13":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"395":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":7,"docs":{"219":{"tf":1.0},"236":{"tf":1.0},"295":{"tf":1.4142135623730951},"307":{"tf":1.0},"314":{"tf":1.0},"369":{"tf":1.0},"498":{"tf":1.0}}}}},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{},"s":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"2":{"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":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"185":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"199":{"tf":1.0},"454":{"tf":1.0}}}},"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":25,"docs":{"125":{"tf":1.0},"131":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"369":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"466":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":96,"docs":{"1":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.7320508075688772},"181":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0},"347":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.7320508075688772},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":2.0},"495":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"298":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":35,"docs":{"18":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"190":{"tf":4.242640687119285},"191":{"tf":2.6457513110645907},"192":{"tf":1.0},"193":{"tf":2.0},"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"241":{"tf":1.0},"294":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":2.23606797749979},"352":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"383":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":3.4641016151377544},"412":{"tf":1.7320508075688772},"413":{"tf":1.0},"414":{"tf":2.449489742783178},"416":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":2.0},"420":{"tf":1.0},"423":{"tf":2.23606797749979},"449":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"491":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"185":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"185":{"tf":1.0},"223":{"tf":1.0},"262":{"tf":1.0},"293":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}},"t":{"df":2,"docs":{"453":{"tf":1.0},"455":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"124":{"tf":1.0},"131":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"216":{"tf":1.0},"403":{"tf":1.0},"409":{"tf":1.0},"72":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"215":{"tf":1.0},"249":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"143":{"tf":1.0},"195":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"200":{"tf":1.0},"497":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"355":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"233":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"365":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"408":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":15,"docs":{"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"198":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"269":{"tf":1.0},"280":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"406":{"tf":1.4142135623730951},"456":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":5,"docs":{"162":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"293":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":3,"docs":{"355":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"14":{"tf":1.0},"164":{"tf":2.0},"168":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":2.0},"5":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"399":{"tf":1.4142135623730951},"48":{"tf":1.0},"499":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"191":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"295":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"14":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"344":{"tf":1.0},"391":{"tf":1.4142135623730951},"401":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.0},"429":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"340":{"tf":1.7320508075688772},"343":{"tf":3.4641016151377544}}}}}}},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"'":{"df":9,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"173":{"tf":1.0},"217":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"383":{"tf":1.0}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":111,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":2.0},"143":{"tf":1.4142135623730951},"154":{"tf":1.0},"160":{"tf":2.449489742783178},"161":{"tf":1.7320508075688772},"162":{"tf":2.6457513110645907},"163":{"tf":2.6457513110645907},"164":{"tf":3.0},"165":{"tf":1.4142135623730951},"166":{"tf":2.0},"168":{"tf":2.449489742783178},"169":{"tf":2.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":2.0},"184":{"tf":2.0},"185":{"tf":2.6457513110645907},"186":{"tf":2.449489742783178},"187":{"tf":2.0},"189":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"251":{"tf":2.23606797749979},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"27":{"tf":1.7320508075688772},"281":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":2.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"364":{"tf":1.0},"367":{"tf":1.4142135623730951},"380":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"387":{"tf":1.4142135623730951},"398":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"452":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.4142135623730951},"483":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.7320508075688772},"501":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"421":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"162":{"tf":1.0},"172":{"tf":1.0}}},"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":2,"docs":{"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"178":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"189":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"191":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":2.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"292":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}}}}},"r":{"df":1,"docs":{"151":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"427":{"tf":1.0}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"370":{"tf":1.0},"455":{"tf":1.0},"99":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"125":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"407":{"tf":1.0},"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"217":{"tf":1.0},"343":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"489":{"tf":1.0},"69":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"132":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"50":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":45,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"269":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"294":{"tf":1.0},"297":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"352":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":3.1622776601683795},"369":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"402":{"tf":1.0},"407":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"497":{"tf":1.7320508075688772},"512":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"399":{"tf":1.0}}}}}}}},"df":6,"docs":{"258":{"tf":1.0},"364":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":25,"docs":{"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"18":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":1.0},"360":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"437":{"tf":1.0},"458":{"tf":1.0},"67":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"129":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"189":{"tf":1.0},"225":{"tf":1.4142135623730951},"298":{"tf":1.0},"447":{"tf":1.4142135623730951}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"164":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":2.23606797749979}}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"343":{"tf":1.0}}}},"r":{"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.0},"343":{"tf":1.0},"44":{"tf":1.0},"511":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"297":{"tf":1.0},"310":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"140":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"61":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":2.0}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"189":{"tf":1.0},"343":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}},"s":{"df":1,"docs":{"237":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"150":{"tf":1.4142135623730951}},"t":{"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"241":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.7320508075688772},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}}}}},"df":7,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"451":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.7320508075688772},"486":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"159":{"tf":1.0},"296":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"399":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0}},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"169":{"tf":1.0},"239":{"tf":1.0},"343":{"tf":2.0},"367":{"tf":2.0},"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"130":{"tf":1.0},"137":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"403":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"217":{"tf":1.0},"406":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"348":{"tf":1.0},"384":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"101":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"213":{"tf":1.0},"3":{"tf":1.0},"323":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"407":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"483":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"128":{"tf":1.0},"402":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"326":{"tf":1.0},"328":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"340":{"tf":1.0},"94":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.4142135623730951},"2":{"tf":1.0},"241":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"429":{"tf":1.0},"451":{"tf":1.0},"48":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":13,"docs":{"14":{"tf":1.7320508075688772},"190":{"tf":2.449489742783178},"191":{"tf":1.0},"193":{"tf":2.0},"343":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"5":{"tf":1.0}},"s":{"df":5,"docs":{"191":{"tf":1.0},"269":{"tf":1.0},"343":{"tf":1.0},"401":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}}}}}}}}},"df":35,"docs":{"1":{"tf":1.0},"12":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"168":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":3.605551275463989},"191":{"tf":3.605551275463989},"192":{"tf":1.4142135623730951},"193":{"tf":4.795831523312719},"199":{"tf":2.449489742783178},"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"349":{"tf":2.0},"350":{"tf":2.6457513110645907},"351":{"tf":2.23606797749979},"352":{"tf":2.6457513110645907},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"359":{"tf":3.1622776601683795},"360":{"tf":3.605551275463989},"362":{"tf":1.4142135623730951},"364":{"tf":1.0},"383":{"tf":1.7320508075688772},"4":{"tf":1.0},"402":{"tf":2.23606797749979},"403":{"tf":3.7416573867739413},"406":{"tf":4.123105625617661},"407":{"tf":3.7416573867739413},"409":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":20,"docs":{"18":{"tf":1.0},"187":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"290":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"353":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"217":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"297":{"tf":1.0},"41":{"tf":1.7320508075688772},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":66,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"181":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"467":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"492":{"tf":1.0},"495":{"tf":1.0},"510":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"297":{"tf":1.0},"409":{"tf":1.0}},"i":{"df":4,"docs":{"189":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":53,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"197":{"tf":1.4142135623730951},"201":{"tf":1.0},"211":{"tf":1.4142135623730951},"215":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.4142135623730951},"277":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.0},"393":{"tf":1.4142135623730951},"412":{"tf":1.0},"418":{"tf":1.0},"425":{"tf":1.0},"431":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.4142135623730951},"467":{"tf":1.0},"473":{"tf":1.0},"481":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"192":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"220":{"tf":1.0},"266":{"tf":1.0},"414":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"348":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":20,"docs":{"134":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.4142135623730951},"343":{"tf":1.0},"365":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.4142135623730951},"512":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"128":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"184":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"101":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":1.0},"249":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"343":{"tf":1.4142135623730951},"37":{"tf":1.0},"391":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":12,"docs":{"261":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":7,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"294":{"tf":1.0},"39":{"tf":1.0},"408":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"383":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"146":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"251":{"tf":1.0},"296":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.0},"429":{"tf":1.0}},"m":{"df":2,"docs":{"161":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"310":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"120":{"tf":1.4142135623730951},"186":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"383":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"151":{"tf":1.0},"9":{"tf":1.0}}},"s":{"df":3,"docs":{"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"269":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"253":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.0},"403":{"tf":1.0},"408":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":28,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"132":{"tf":2.6457513110645907},"164":{"tf":2.0},"166":{"tf":2.0},"168":{"tf":1.0},"36":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":2.23606797749979},"37":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":2.0},"442":{"tf":2.23606797749979},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"467":{"tf":1.7320508075688772},"468":{"tf":2.0},"471":{"tf":3.0},"473":{"tf":1.0},"500":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951},"83":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"119":{"tf":1.0},"191":{"tf":1.0},"326":{"tf":1.0},"459":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"189":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"381":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"131":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"349":{"tf":1.0},"359":{"tf":1.0},"440":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.7320508075688772}}}},"s":{"a":{"df":0,"docs":{},"l":{"(":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":115,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"10":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":2.8284271247461903},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"202":{"tf":1.4142135623730951},"207":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":2.0},"22":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"325":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":2.449489742783178},"406":{"tf":1.4142135623730951},"409":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"429":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.0},"476":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"496":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":2.449489742783178},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"429":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"371":{"tf":1.4142135623730951},"407":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"2":{"df":1,"docs":{"239":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"239":{"tf":1.0},"369":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":2,"docs":{"26":{"tf":1.0},"415":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}}},"df":69,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"123":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":2.0},"134":{"tf":1.0},"143":{"tf":1.7320508075688772},"187":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":2.449489742783178},"24":{"tf":1.7320508075688772},"240":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.7320508075688772},"29":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"353":{"tf":1.0},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"369":{"tf":2.449489742783178},"37":{"tf":1.0},"371":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"378":{"tf":1.4142135623730951},"404":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"195":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"367":{"tf":1.4142135623730951},"99":{"tf":1.0}},"n":{"df":4,"docs":{"137":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0}}}},"i":{"d":{"df":71,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":2.0},"243":{"tf":1.7320508075688772},"253":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"343":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"369":{"tf":2.0},"386":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"495":{"tf":1.4142135623730951},"500":{"tf":3.605551275463989},"501":{"tf":2.8284271247461903},"502":{"tf":1.4142135623730951},"503":{"tf":2.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"512":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"406":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"190":{"tf":2.0},"191":{"tf":1.4142135623730951}}}}}}}}},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":8,"docs":{"448":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":2.449489742783178},"457":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"33":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":10,"docs":{"131":{"tf":1.0},"132":{"tf":3.3166247903554},"294":{"tf":1.0},"304":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":8,"docs":{"184":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"343":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"243":{"tf":1.0},"253":{"tf":1.0},"281":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"235":{"tf":1.0},"447":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"189":{"tf":2.0},"190":{"tf":3.605551275463989},"191":{"tf":3.3166247903554},"192":{"tf":2.8284271247461903},"193":{"tf":2.23606797749979},"196":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"455":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":8,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"173":{"tf":1.0},"234":{"tf":1.0},"297":{"tf":1.0},"369":{"tf":1.0},"512":{"tf":1.0},"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"173":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"185":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"391":{"tf":1.0},"410":{"tf":1.0}}}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"457":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"190":{"tf":1.0},"406":{"tf":1.7320508075688772}}}},"z":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"143":{"tf":1.0},"243":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":2.0},"369":{"tf":2.23606797749979},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"507":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"367":{"tf":2.0},"369":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":57,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"21":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.0},"347":{"tf":1.0},"365":{"tf":1.0},"377":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"425":{"tf":1.0},"436":{"tf":1.0},"448":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"511":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"193":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"106":{"tf":2.0},"193":{"tf":1.4142135623730951}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"131":{"tf":1.0},"360":{"tf":1.4142135623730951},"400":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"359":{"tf":1.0},"360":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"473":{"tf":1.0}}}},"o":{"df":2,"docs":{"260":{"tf":1.0},"266":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"226":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"466":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"383":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"129":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":2.23606797749979},"243":{"tf":1.0},"47":{"tf":3.1622776601683795},"48":{"tf":1.7320508075688772},"501":{"tf":2.6457513110645907},"507":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.6457513110645907}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"129":{"tf":1.0},"241":{"tf":1.0},"497":{"tf":1.4142135623730951},"505":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"54":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":2.0},"54":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"54":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"208":{"tf":1.4142135623730951},"343":{"tf":3.7416573867739413},"355":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"308":{"tf":1.0},"313":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"409":{"tf":1.0},"497":{"tf":1.0}}}},"t":{"a":{"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"185":{"tf":1.0},"352":{"tf":1.4142135623730951},"407":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"o":{"df":5,"docs":{"189":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"315":{"tf":1.0},"47":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"150":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"235":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"df":2,"docs":{"343":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"343":{"tf":1.4142135623730951},"352":{"tf":1.0},"406":{"tf":1.0},"486":{"tf":1.0}}},"t":{"df":3,"docs":{"360":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0}}}},"d":{"df":9,"docs":{"164":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"365":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"503":{"tf":1.0},"512":{"tf":1.0}},"i":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"185":{"tf":1.4142135623730951},"362":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"201":{"tf":1.0},"209":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"298":{"tf":1.0},"370":{"tf":1.0},"505":{"tf":1.0}}}},"z":{"df":2,"docs":{"236":{"tf":1.0},"357":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"131":{"tf":1.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":12,"docs":{"132":{"tf":2.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"326":{"tf":1.0},"334":{"tf":1.0},"370":{"tf":1.0},"403":{"tf":1.0},"507":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"164":{"tf":1.4142135623730951},"193":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"439":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"303":{"tf":1.0},"313":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"297":{"tf":1.0},"98":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"22":{"tf":1.0},"253":{"tf":1.0},"397":{"tf":1.0},"48":{"tf":1.0}}},"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":6,"docs":{"109":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":14,"docs":{"104":{"tf":1.0},"143":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":2.23606797749979},"194":{"tf":1.7320508075688772},"243":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"50":{"tf":1.0},"507":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"124":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"123":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"276":{"tf":1.0},"58":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"u":{"c":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"224":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.4142135623730951},"429":{"tf":1.0},"458":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"444":{"tf":1.0},"458":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"243":{"tf":1.0},"451":{"tf":1.0},"48":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}},"df":13,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"194":{"tf":1.0},"369":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":2.0},"486":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":68,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.4142135623730951},"356":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.0},"43":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"464":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":2.0},"481":{"tf":1.0},"492":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.0},"510":{"tf":1.0},"61":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":3,"docs":{"253":{"tf":1.0},"292":{"tf":1.0},"427":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"133":{"tf":1.0},"253":{"tf":1.7320508075688772},"255":{"tf":1.0},"281":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"401":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"192":{"tf":1.0},"407":{"tf":1.0},"421":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"407":{"tf":1.0}}}},"m":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"407":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"146":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"133":{"tf":1.0},"207":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"191":{"tf":3.0}}},"df":9,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":5.196152422706632},"191":{"tf":6.082762530298219},"193":{"tf":1.0},"194":{"tf":4.0},"351":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"355":{"tf":1.0},"356":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"191":{"tf":2.449489742783178},"194":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"165":{"tf":1.0},"172":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"294":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":3.0},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":2.6457513110645907},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0}}}},"df":15,"docs":{"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":2.0},"458":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":1.0}},"i":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"107":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.6457513110645907},"191":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"454":{"tf":1.7320508075688772},"457":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"297":{"tf":1.0},"298":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"253":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":62,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"337":{"tf":1.0},"365":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"455":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.4142135623730951},"63":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"x":{"df":1,"docs":{"486":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"262":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":47,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":3.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"193":{"tf":2.0},"194":{"tf":2.449489742783178},"198":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.0},"233":{"tf":1.7320508075688772},"235":{"tf":1.7320508075688772},"240":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"290":{"tf":2.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"499":{"tf":1.0},"500":{"tf":1.7320508075688772}}}},"df":16,"docs":{"131":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"191":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"47":{"tf":1.0},"497":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.4142135623730951},"72":{"tf":3.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"115":{"tf":1.0},"133":{"tf":1.0},"165":{"tf":1.0},"195":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"96":{"tf":1.0}}}},"df":1,"docs":{"403":{"tf":1.0}},"v":{"df":8,"docs":{"120":{"tf":1.0},"194":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"216":{"tf":1.0},"512":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"13":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"262":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.0},"383":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"98":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":17,"docs":{"106":{"tf":1.4142135623730951},"163":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"306":{"tf":1.0},"343":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"457":{"tf":1.0},"50":{"tf":1.4142135623730951},"63":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"297":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"369":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.7320508075688772}},"v":{"2":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"369":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":35,"docs":{"100":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":2.0},"194":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":2.23606797749979},"261":{"tf":1.0},"276":{"tf":1.0},"297":{"tf":1.4142135623730951},"302":{"tf":1.0},"338":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"348":{"tf":1.7320508075688772},"375":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"429":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"481":{"tf":1.7320508075688772},"483":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"399":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"297":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"402":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"189":{"tf":2.8284271247461903},"190":{"tf":2.8284271247461903},"191":{"tf":4.123105625617661},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"262":{"tf":1.4142135623730951},"274":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":2.23606797749979},"406":{"tf":2.8284271247461903},"407":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}}}}}}}}},"df":1,"docs":{"454":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":8,"docs":{"448":{"tf":2.0},"449":{"tf":1.0},"451":{"tf":1.7320508075688772},"453":{"tf":2.0},"454":{"tf":2.449489742783178},"455":{"tf":1.7320508075688772},"456":{"tf":1.7320508075688772},"457":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"239":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":12,"docs":{"220":{"tf":1.0},"241":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"347":{"tf":1.0},"369":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":3,"docs":{"367":{"tf":1.7320508075688772},"369":{"tf":1.4142135623730951},"371":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"369":{"tf":2.0},"371":{"tf":1.4142135623730951}}}}}},"o":{"df":6,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"285":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"279":{"tf":1.0},"8":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":18,"docs":{"111":{"tf":1.7320508075688772},"184":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"207":{"tf":1.4142135623730951},"241":{"tf":1.0},"251":{"tf":1.0},"307":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"369":{"tf":1.0},"404":{"tf":1.0},"442":{"tf":1.4142135623730951},"483":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"q":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"1":{"df":1,"docs":{"133":{"tf":1.0}}},"2":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"343":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":25,"docs":{"0":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":3.7416573867739413},"143":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"343":{"tf":2.8284271247461903},"365":{"tf":1.7320508075688772},"369":{"tf":3.4641016151377544},"371":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"378":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"398":{"tf":1.0},"447":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":84,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"14":{"tf":2.0},"150":{"tf":1.0},"164":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.7320508075688772},"260":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"281":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":1.0},"386":{"tf":1.4142135623730951},"39":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.0},"4":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.7320508075688772},"454":{"tf":2.23606797749979},"457":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"296":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":2,"docs":{"262":{"tf":1.4142135623730951},"263":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"187":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"353":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"459":{"tf":1.0},"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"111":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"406":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":2.0},"455":{"tf":1.0},"458":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"403":{"tf":1.0},"406":{"tf":3.1622776601683795},"407":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"184":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":23,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"190":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.0},"288":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"299":{"tf":1.0},"302":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"143":{"tf":1.0},"169":{"tf":1.0},"292":{"tf":1.0},"3":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"389":{"tf":1.0},"414":{"tf":1.0},"433":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"132":{"tf":1.4142135623730951},"239":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":17,"docs":{"11":{"tf":1.7320508075688772},"132":{"tf":2.0},"14":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"202":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":1.0},"29":{"tf":1.0},"343":{"tf":1.4142135623730951},"369":{"tf":2.23606797749979},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"407":{"tf":1.0},"450":{"tf":1.0},"505":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":4,"docs":{"110":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"402":{"tf":1.0},"406":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":29,"docs":{"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.0},"343":{"tf":3.0},"344":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"165":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"193":{"tf":1.0},"310":{"tf":1.0},"455":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"439":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":20,"docs":{"132":{"tf":1.0},"150":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"207":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":2.8284271247461903},"340":{"tf":1.0},"343":{"tf":7.280109889280518},"385":{"tf":1.0},"389":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"42":{"tf":1.0},"442":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"189":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"407":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":20,"docs":{"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.23606797749979},"379":{"tf":1.7320508075688772},"380":{"tf":2.0},"381":{"tf":1.0},"383":{"tf":2.6457513110645907},"407":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"403":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"197":{"tf":1.4142135623730951},"280":{"tf":1.0},"392":{"tf":1.0},"427":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"253":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"229":{"tf":1.0},"401":{"tf":1.4142135623730951},"485":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"122":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"204":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"269":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"453":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"c":{"#":{"0":{"0":{"0":{"1":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":158,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"134":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"205":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"22":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"247":{"tf":1.0},"249":{"tf":1.4142135623730951},"25":{"tf":1.0},"250":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"288":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"297":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":2.23606797749979},"353":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"373":{"tf":1.0},"376":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"413":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"429":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"445":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"483":{"tf":1.0},"485":{"tf":1.7320508075688772},"486":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"505":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":15,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"328":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"392":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"61":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":4,"docs":{"146":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"172":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"355":{"tf":1.0}}},"k":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"184":{"tf":1.0},"269":{"tf":1.7320508075688772},"282":{"tf":1.0},"296":{"tf":1.0},"360":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"296":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"298":{"tf":1.0},"403":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"270":{"tf":1.0},"459":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"252":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"84":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"195":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"p":{"df":11,"docs":{"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":4.795831523312719},"166":{"tf":3.1622776601683795},"168":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"162":{"tf":1.0}}},"t":{"df":26,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"266":{"tf":1.7320508075688772},"297":{"tf":1.0},"369":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"243":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"128":{"tf":1.0},"131":{"tf":1.0},"190":{"tf":1.0},"35":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"296":{"tf":1.0},"366":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"296":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"p":{"c":{"df":4,"docs":{"102":{"tf":1.0},"235":{"tf":1.7320508075688772},"421":{"tf":1.0},"512":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"457":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}},"n":{"df":18,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":79,"docs":{"102":{"tf":1.4142135623730951},"115":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":2.23606797749979},"145":{"tf":2.0},"146":{"tf":2.449489742783178},"149":{"tf":1.7320508075688772},"151":{"tf":2.0},"152":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"277":{"tf":2.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"285":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"340":{"tf":2.8284271247461903},"343":{"tf":4.47213595499958},"344":{"tf":1.7320508075688772},"347":{"tf":1.0},"359":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"396":{"tf":1.0},"400":{"tf":2.0},"429":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"445":{"tf":1.0},"457":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":3.0},"484":{"tf":1.0},"485":{"tf":2.6457513110645907},"486":{"tf":2.0},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"494":{"tf":1.0},"511":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"399":{"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":{"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"121":{"tf":1.0},"33":{"tf":1.0},"485":{"tf":1.0}}}}},"·":{"df":1,"docs":{"48":{"tf":1.0}},"s":{")":{"/":{"(":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{")":{"/":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"/":{"2":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"143":{"tf":1.0},"42":{"tf":1.0},"455":{"tf":1.0}}}},"k":{"a":{"c":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"193":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"253":{"tf":1.0},"255":{"tf":1.0},"308":{"tf":2.0},"312":{"tf":1.4142135623730951},"313":{"tf":2.449489742783178},"314":{"tf":1.0},"322":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"190":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":19,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":4.58257569495584},"191":{"tf":3.0},"193":{"tf":3.3166247903554},"199":{"tf":1.7320508075688772},"208":{"tf":1.0},"349":{"tf":1.7320508075688772},"350":{"tf":1.7320508075688772},"351":{"tf":1.7320508075688772},"352":{"tf":1.4142135623730951},"359":{"tf":1.0},"364":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"383":{"tf":2.6457513110645907},"406":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"191":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"391":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.7320508075688772},"47":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"494":{"tf":1.0},"505":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":11,"docs":{"23":{"tf":2.23606797749979},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"340":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"130":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"328":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":2.0}}}}},"df":21,"docs":{"102":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"217":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"290":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"343":{"tf":1.4142135623730951},"355":{"tf":1.0},"360":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":2.0},"51":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"251":{"tf":1.0}}},"n":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":7,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":9,"docs":{"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"194":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"296":{"tf":1.7320508075688772}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"194":{"tf":1.0},"369":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":9,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"27":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"494":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"#":{"1":{"7":{"8":{"1":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"7":{"9":{"6":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"3":{"3":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"2":{"1":{"7":{"7":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"154":{"tf":1.0},"196":{"tf":1.0}}}},"df":2,"docs":{"343":{"tf":1.0},"48":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"438":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"182":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"238":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.4142135623730951},"408":{"tf":1.0},"429":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":2.23606797749979},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0}}}}},"df":11,"docs":{"106":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"391":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"107":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":2.0},"162":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"41":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":74,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"174":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":1.7320508075688772},"201":{"tf":1.0},"211":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.7320508075688772},"223":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.4142135623730951},"249":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"290":{"tf":1.4142135623730951},"300":{"tf":1.0},"308":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.4142135623730951},"384":{"tf":1.0},"393":{"tf":1.4142135623730951},"402":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.4142135623730951},"423":{"tf":1.0},"425":{"tf":1.0},"431":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"505":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"196":{"tf":1.0}},"e":{"d":{"df":4,"docs":{"253":{"tf":1.0},"343":{"tf":1.7320508075688772},"43":{"tf":1.0},"471":{"tf":1.0}}},"df":27,"docs":{"101":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"258":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":5,"docs":{"253":{"tf":1.0},"262":{"tf":1.0},"279":{"tf":1.0},"402":{"tf":1.0},"450":{"tf":1.0}}},"m":{"df":4,"docs":{"152":{"tf":1.0},"403":{"tf":1.0},"408":{"tf":1.4142135623730951},"423":{"tf":1.0}}},"n":{"df":4,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"173":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"35":{"tf":1.4142135623730951},"406":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"190":{"tf":1.0},"215":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"220":{"tf":2.8284271247461903},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":9,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"194":{"tf":1.4142135623730951},"253":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"l":{"df":4,"docs":{"182":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"351":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"193":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"217":{"tf":1.0},"296":{"tf":1.0}}}},"n":{"d":{"df":17,"docs":{"132":{"tf":1.0},"164":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"243":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":2.0},"371":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"328":{"tf":1.0},"334":{"tf":1.0},"471":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"313":{"tf":1.0}}}}},"s":{"df":6,"docs":{"297":{"tf":1.0},"383":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"298":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"t":{"df":7,"docs":{"106":{"tf":1.0},"208":{"tf":1.0},"239":{"tf":1.0},"328":{"tf":1.0},"369":{"tf":1.4142135623730951},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":1.0},"189":{"tf":1.0},"240":{"tf":1.0},"280":{"tf":1.0},"402":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"23":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":9,"docs":{"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":1,"docs":{"448":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"367":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":15,"docs":{"200":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":2.449489742783178},"503":{"tf":1.0},"512":{"tf":1.7320508075688772},"54":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"373":{"tf":1.0}}}},"i":{"c":{"df":7,"docs":{"184":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"125":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"225":{"tf":1.0},"298":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"477":{"tf":1.0},"500":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"467":{"tf":1.7320508075688772},"468":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"471":{"tf":2.0},"475":{"tf":1.0},"477":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"471":{"tf":1.0}},"s":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":47,"docs":{"111":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":2.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":1.7320508075688772},"193":{"tf":2.0},"205":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"308":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.7320508075688772},"404":{"tf":1.0},"416":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":2.0},"471":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"166":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"185":{"tf":1.0}}},"r":{"df":9,"docs":{"10":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"220":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0}}}}}},"h":{"a":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"0":{"df":0,"docs":{},"f":{"1":{"2":{"8":{"7":{"2":{"4":{"4":{"7":{"9":{"5":{"8":{"d":{"5":{"0":{"a":{"a":{"7":{"b":{"9":{"3":{"7":{"b":{"0":{"1":{"0":{"6":{"5":{"6":{"1":{"a":{"5":{"8":{"8":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"2":{"6":{"2":{"8":{"d":{"3":{"3":{"df":0,"docs":{},"f":{"8":{"1":{"b":{"5":{"3":{"6":{"1":{"b":{"1":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"8":{"d":{"df":0,"docs":{},"f":{"7":{"0":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"241":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"156":{"tf":1.4142135623730951},"191":{"tf":3.0},"233":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.7320508075688772},"359":{"tf":1.0},"363":{"tf":1.0},"439":{"tf":1.0},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"355":{"tf":1.0},"357":{"tf":1.0},"406":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"184":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"192":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"408":{"tf":1.0}}}},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"276":{"tf":1.0},"370":{"tf":1.0},"408":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":2.0},"121":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"137":{"tf":1.0}},"n":{"df":3,"docs":{"314":{"tf":1.0},"444":{"tf":1.0},"51":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"352":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":33,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"203":{"tf":1.0},"239":{"tf":1.7320508075688772},"270":{"tf":1.0},"281":{"tf":1.0},"328":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"340":{"tf":2.0},"355":{"tf":2.0},"356":{"tf":1.4142135623730951},"357":{"tf":2.449489742783178},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.0},"423":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"343":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"99":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"23":{"tf":1.4142135623730951},"343":{"tf":2.449489742783178},"344":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"442":{"tf":1.0},"45":{"tf":4.898979485566356},"471":{"tf":2.6457513110645907},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":2.8284271247461903},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":17,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"191":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"471":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"108":{"tf":1.0},"45":{"tf":1.0}}},"df":8,"docs":{"100":{"tf":1.4142135623730951},"110":{"tf":1.0},"122":{"tf":1.7320508075688772},"43":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"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":4,"docs":{"168":{"tf":1.0},"329":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0}}}}}}},"df":6,"docs":{"164":{"tf":1.0},"177":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"406":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":1,"docs":{"230":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"190":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"43":{"tf":1.0},"485":{"tf":1.0},"499":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"293":{"tf":1.0},"344":{"tf":1.0},"369":{"tf":1.0},"502":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":13,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"250":{"tf":1.0},"297":{"tf":1.0},"337":{"tf":1.0},"362":{"tf":1.0},"398":{"tf":1.0},"420":{"tf":1.0},"51":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"293":{"tf":1.0},"297":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"369":{"tf":1.0},"407":{"tf":1.0}}},"df":10,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"293":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"407":{"tf":1.0}},"f":{"df":1,"docs":{"483":{"tf":1.0}},"i":{"df":3,"docs":{"297":{"tf":1.0},"400":{"tf":1.0},"44":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"297":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":19,"docs":{"111":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"204":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.0},"253":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"426":{"tf":1.0},"429":{"tf":2.0},"48":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"122":{"tf":1.0},"145":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"355":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"43":{"tf":1.0},"486":{"tf":1.7320508075688772},"497":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"408":{"tf":1.0}}},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":27,"docs":{"113":{"tf":1.4142135623730951},"129":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"215":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"239":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":4.898979485566356},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"371":{"tf":2.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":2.23606797749979},"442":{"tf":1.7320508075688772},"445":{"tf":1.4142135623730951},"453":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"393":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"369":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"295":{"tf":1.0},"296":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"395":{"tf":1.0},"406":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"114":{"tf":1.0},"347":{"tf":1.0},"360":{"tf":1.0},"407":{"tf":1.0},"472":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"357":{"tf":1.0},"359":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":22,"docs":{"184":{"tf":1.7320508075688772},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.7320508075688772},"23":{"tf":2.0},"24":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":3.7416573867739413},"51":{"tf":4.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0}}},"w":{"df":4,"docs":{"151":{"tf":1.0},"165":{"tf":1.0},"255":{"tf":1.0},"352":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"373":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"129":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"239":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":1.0},"414":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"194":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.0},"50":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"160":{"tf":2.23606797749979},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":2.23606797749979},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"168":{"tf":2.8284271247461903},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"454":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"187":{"tf":1.4142135623730951},"205":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"196":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":15,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":2.23606797749979},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"359":{"tf":2.0},"406":{"tf":1.0},"408":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}},"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"t":{"df":19,"docs":{"150":{"tf":1.0},"169":{"tf":1.0},"186":{"tf":2.6457513110645907},"193":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"240":{"tf":1.0},"276":{"tf":1.0},"352":{"tf":2.23606797749979},"362":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":2.6457513110645907},"453":{"tf":1.4142135623730951},"466":{"tf":1.0},"485":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"v":{"df":8,"docs":{"143":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"497":{"tf":1.0},"512":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"2":{"df":1,"docs":{"194":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"254":{"tf":1.4142135623730951},"312":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"134":{"tf":1.0},"512":{"tf":1.0},"85":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"165":{"tf":1.0},"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"491":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":36,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"182":{"tf":1.0},"485":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}},"n":{"df":5,"docs":{"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"194":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"128":{"tf":1.0},"184":{"tf":1.0}}}},"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":8,"docs":{"114":{"tf":1.0},"129":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"152":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"235":{"tf":1.4142135623730951},"253":{"tf":1.0},"410":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"202":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":43,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"235":{"tf":2.449489742783178},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"326":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.4142135623730951},"393":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":2.6457513110645907},"198":{"tf":1.0},"237":{"tf":1.0},"313":{"tf":1.0},"369":{"tf":1.4142135623730951},"454":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"151":{"tf":1.0},"347":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"254":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"414":{"tf":2.23606797749979},"416":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"296":{"tf":1.0},"386":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"391":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"407":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"23":{"tf":1.0},"230":{"tf":1.0},"66":{"tf":2.0}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"313":{"tf":1.4142135623730951},"316":{"tf":1.0},"383":{"tf":1.0}}}},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"190":{"tf":1.0},"235":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"162":{"tf":1.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"164":{"tf":1.7320508075688772},"174":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"240":{"tf":1.7320508075688772},"340":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":5,"docs":{"150":{"tf":1.0},"187":{"tf":1.0},"275":{"tf":1.0},"298":{"tf":1.0},"455":{"tf":1.7320508075688772}}}},"k":{"df":0,"docs":{},"e":{"df":15,"docs":{"122":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":2.23606797749979},"230":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.7320508075688772},"295":{"tf":2.23606797749979},"297":{"tf":4.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"427":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":67,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.7320508075688772},"195":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"3":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.4142135623730951},"349":{"tf":1.0},"353":{"tf":1.4142135623730951},"365":{"tf":1.0},"368":{"tf":1.0},"379":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"387":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"425":{"tf":1.0},"428":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.0},"448":{"tf":1.0},"452":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"481":{"tf":1.0},"484":{"tf":1.0},"495":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":6,"docs":{"206":{"tf":1.0},"211":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":1,"docs":{"5":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}}}},"t":{"df":51,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":2.23606797749979},"349":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"449":{"tf":1.0},"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":27,"docs":{"133":{"tf":1.0},"14":{"tf":2.0},"164":{"tf":1.0},"18":{"tf":1.4142135623730951},"290":{"tf":2.449489742783178},"293":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"343":{"tf":1.0},"378":{"tf":1.0},"403":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"72":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":2,"docs":{"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"189":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"343":{"tf":1.0},"456":{"tf":1.0}}}},"y":{"df":3,"docs":{"190":{"tf":1.0},"297":{"tf":1.0},"356":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.0}}}},"m":{"df":1,"docs":{"18":{"tf":1.0}}},"p":{"df":13,"docs":{"106":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":2.449489742783178},"255":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"334":{"tf":1.0},"39":{"tf":1.0},"429":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":19,"docs":{"130":{"tf":1.0},"133":{"tf":1.4142135623730951},"151":{"tf":1.0},"159":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"262":{"tf":1.0},"281":{"tf":1.4142135623730951},"294":{"tf":1.0},"397":{"tf":1.0},"403":{"tf":1.7320508075688772},"408":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":3.4641016151377544}}},"r":{"a":{"df":0,"docs":{},"g":{"df":33,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"297":{"tf":1.0},"343":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"369":{"tf":2.23606797749979},"370":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"407":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":2.6457513110645907},"442":{"tf":1.4142135623730951},"453":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"438":{"tf":1.4142135623730951},"439":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"_":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"132":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"241":{"tf":1.0},"367":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.7320508075688772},"455":{"tf":1.7320508075688772},"456":{"tf":1.0},"457":{"tf":1.7320508075688772},"47":{"tf":1.0},"497":{"tf":1.7320508075688772},"505":{"tf":1.0}}},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"326":{"tf":1.0},"357":{"tf":1.0}}}}},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":9,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"407":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"370":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"280":{"tf":1.4142135623730951},"281":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"403":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"125":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.0},"290":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"186":{"tf":1.0},"240":{"tf":1.4142135623730951},"257":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"485":{"tf":1.0},"489":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"239":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":2,"docs":{"104":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"185":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"458":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"437":{"tf":1.0},"485":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"194":{"tf":2.23606797749979},"239":{"tf":1.0},"369":{"tf":1.0},"471":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"279":{"tf":1.0},"32":{"tf":2.0},"410":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"b":{"0":{"df":1,"docs":{"437":{"tf":1.0}}},"df":4,"docs":{"189":{"tf":1.0},"294":{"tf":1.0},"304":{"tf":1.0},"326":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"200":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"36":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}}},"t":{"df":10,"docs":{"164":{"tf":1.7320508075688772},"297":{"tf":1.0},"36":{"tf":1.0},"406":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"22":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}},"t":{"df":6,"docs":{"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"38":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"a":{"c":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"421":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"170":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"340":{"tf":1.0},"466":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"173":{"tf":1.0},"237":{"tf":2.0},"326":{"tf":1.0},"328":{"tf":1.0},"345":{"tf":1.0},"387":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"239":{"tf":1.0},"325":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":12,"docs":{"143":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"455":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"486":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"191":{"tf":1.0},"209":{"tf":1.4142135623730951},"298":{"tf":1.0},"343":{"tf":3.1622776601683795},"383":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"191":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"457":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":36,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"217":{"tf":1.4142135623730951},"22":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"254":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"371":{"tf":1.7320508075688772},"373":{"tf":1.0},"383":{"tf":1.0},"408":{"tf":1.0},"434":{"tf":1.4142135623730951},"449":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"243":{"tf":1.0},"360":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"185":{"tf":1.0},"189":{"tf":1.0},"367":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"102":{"tf":1.0},"178":{"tf":1.0},"241":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"427":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"22":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.0},"399":{"tf":1.0},"402":{"tf":1.0},"450":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"150":{"tf":1.0},"16":{"tf":1.0},"279":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"185":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":60,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"343":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":1.0},"500":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"351":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":33,"docs":{"117":{"tf":1.0},"133":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"146":{"tf":2.0},"149":{"tf":1.0},"156":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":3,"docs":{"373":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.0},"239":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"483":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}},"g":{"df":1,"docs":{"360":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"163":{"tf":1.0},"343":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"383":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"378":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"348":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"280":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"239":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"223":{"tf":1.0},"295":{"tf":1.0}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"386":{"tf":1.0},"391":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"s":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"128":{"tf":2.0},"130":{"tf":2.449489742783178},"132":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":64,"docs":{"11":{"tf":1.4142135623730951},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":2.6457513110645907},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":2.6457513110645907},"218":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":2.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"296":{"tf":1.4142135623730951},"297":{"tf":3.1622776601683795},"298":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.0},"35":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":2.0},"98":{"tf":1.0}}}}}}},"·":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"0":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"50":{"tf":1.0}}},"4":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"df":1,"docs":{"50":{"tf":1.0}}},":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"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":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":32,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":20,"docs":{"117":{"tf":1.0},"182":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"207":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.4142135623730951},"417":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":3,"docs":{"225":{"tf":1.0},"343":{"tf":1.0},"74":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"384":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"k":{"df":1,"docs":{"489":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":17,"docs":{"155":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"241":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":2.23606797749979},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":2.23606797749979},"505":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"100":{"tf":1.0},"143":{"tf":1.0},"189":{"tf":2.8284271247461903},"190":{"tf":1.4142135623730951},"191":{"tf":2.0},"194":{"tf":4.58257569495584},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"262":{"tf":1.0},"406":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"193":{"tf":1.0},"33":{"tf":2.449489742783178},"357":{"tf":1.7320508075688772},"48":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":18,"docs":{"100":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.7320508075688772},"25":{"tf":1.0},"251":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"281":{"tf":1.0},"353":{"tf":1.0},"387":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"441":{"tf":1.0},"446":{"tf":1.0},"450":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":21,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"172":{"tf":1.0},"194":{"tf":1.0},"216":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"310":{"tf":1.4142135623730951},"326":{"tf":1.0},"407":{"tf":1.4142135623730951},"411":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":8,"docs":{"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"404":{"tf":1.0},"95":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"429":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"152":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"402":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"241":{"tf":1.0},"255":{"tf":1.0},"276":{"tf":1.4142135623730951},"400":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.4142135623730951},"505":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":57,"docs":{"1":{"tf":1.0},"115":{"tf":1.4142135623730951},"123":{"tf":1.0},"135":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":2.0},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"201":{"tf":1.0},"211":{"tf":1.4142135623730951},"215":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.4142135623730951},"308":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":1.7320508075688772},"412":{"tf":1.0},"418":{"tf":1.0},"425":{"tf":1.0},"431":{"tf":1.4142135623730951},"448":{"tf":1.0},"459":{"tf":1.4142135623730951},"467":{"tf":1.0},"473":{"tf":1.7320508075688772},"481":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"197":{"tf":1.0},"270":{"tf":1.0},"298":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"357":{"tf":1.4142135623730951}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"367":{"tf":1.0},"371":{"tf":1.0},"410":{"tf":1.0}}}},"t":{"'":{"df":1,"docs":{"326":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"220":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"383":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":2.449489742783178},"502":{"tf":1.0},"503":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"i":{"df":2,"docs":{"240":{"tf":1.0},"407":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"13":{"tf":1.0},"282":{"tf":1.0},"486":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"192":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.0},"383":{"tf":1.0},"429":{"tf":1.0},"440":{"tf":1.0},"458":{"tf":1.0},"47":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"132":{"tf":1.0},"325":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.4142135623730951},"489":{"tf":1.0}}},"k":{"df":2,"docs":{"220":{"tf":1.0},"236":{"tf":1.0}}}},"r":{"d":{"df":3,"docs":{"154":{"tf":1.0},"207":{"tf":1.0},"312":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"119":{"tf":1.0},"166":{"tf":1.7320508075688772},"202":{"tf":1.0},"262":{"tf":1.0},"290":{"tf":1.0},"310":{"tf":1.0},"383":{"tf":1.0},"429":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"162":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"340":{"tf":1.0},"458":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"410":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"296":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.0},"454":{"tf":1.0},"485":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"427":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"371":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"220":{"tf":1.0},"262":{"tf":1.0},"340":{"tf":1.0},"383":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.4142135623730951},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"406":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"164":{"tf":1.0},"179":{"tf":1.0},"296":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.0},"25":{"tf":1.0},"250":{"tf":1.0},"257":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.0},"367":{"tf":2.0},"371":{"tf":1.0},"427":{"tf":1.0},"477":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":15,"docs":{"23":{"tf":3.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":5.196152422706632},"49":{"tf":2.23606797749979},"50":{"tf":3.605551275463989},"51":{"tf":2.6457513110645907},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"i":{"d":{"df":2,"docs":{"48":{"tf":2.23606797749979},"50":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"326":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"400":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"456":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"e":{"df":61,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.7320508075688772},"150":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"274":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"310":{"tf":1.7320508075688772},"312":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.8284271247461903},"367":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"381":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":1.4142135623730951},"427":{"tf":2.0},"429":{"tf":1.4142135623730951},"440":{"tf":2.23606797749979},"450":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"415":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"190":{"tf":2.6457513110645907},"191":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":3.872983346207417}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.4142135623730951}}}}}}},"k":{"df":1,"docs":{"50":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"159":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"99":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"164":{"tf":1.0},"166":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"353":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":2.23606797749979},"404":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"217":{"tf":1.0},"269":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"349":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"114":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"149":{"tf":1.0},"165":{"tf":1.0},"262":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"137":{"tf":1.0},"163":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"237":{"tf":1.0},"464":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":3.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"194":{"tf":1.4142135623730951},"243":{"tf":1.0},"314":{"tf":1.0},"380":{"tf":1.0},"454":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"507":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"190":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0}}},"df":25,"docs":{"132":{"tf":1.0},"140":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"297":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":1.0},"414":{"tf":2.8284271247461903},"415":{"tf":1.0},"416":{"tf":2.0},"417":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":2.23606797749979},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"122":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"194":{"tf":1.0},"353":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.0},"173":{"tf":1.0}}}}},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"243":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}},"t":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"392":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"206":{"tf":1.0},"217":{"tf":2.449489742783178},"218":{"tf":1.0},"220":{"tf":1.0},"262":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":1.7320508075688772},"326":{"tf":2.6457513110645907},"328":{"tf":2.0},"329":{"tf":1.4142135623730951},"334":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"42":{"tf":1.0},"44":{"tf":2.449489742783178},"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":9,"docs":{"113":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"367":{"tf":1.0},"406":{"tf":1.4142135623730951},"444":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":2,"docs":{"207":{"tf":1.0},"406":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"105":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"290":{"tf":2.23606797749979},"367":{"tf":1.0},"408":{"tf":1.0},"491":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"109":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":3,"docs":{"110":{"tf":2.0},"132":{"tf":1.0},"99":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"343":{"tf":1.0}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"412":{"tf":1.7320508075688772},"413":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":1.4142135623730951},"418":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.4142135623730951}},"i":{"df":16,"docs":{"120":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.4142135623730951},"292":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":3.1622776601683795},"414":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"104":{"tf":1.0},"194":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"102":{"tf":2.6457513110645907},"103":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"132":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":5,"docs":{"129":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"399":{"tf":1.0},"407":{"tf":1.0},"497":{"tf":1.0}},"e":{"df":6,"docs":{"129":{"tf":1.0},"235":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":3.872983346207417},"370":{"tf":1.0},"440":{"tf":2.0}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"143":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"194":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"366":{"tf":1.0}},"l":{"df":1,"docs":{"360":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.0},"193":{"tf":1.4142135623730951},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"427":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.4142135623730951},"163":{"tf":1.0},"369":{"tf":2.0},"407":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"184":{"tf":1.0},"217":{"tf":1.7320508075688772},"240":{"tf":1.0},"248":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"403":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"429":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"427":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"238":{"tf":1.0},"340":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":37,"docs":{"149":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.0},"206":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"295":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"334":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"454":{"tf":1.4142135623730951},"483":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"72":{"tf":1.0}},"x":{"6":{"4":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"104":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"104":{"tf":1.0}}}}},"df":30,"docs":{"102":{"tf":2.0},"104":{"tf":3.605551275463989},"149":{"tf":1.4142135623730951},"181":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"194":{"tf":3.605551275463989},"201":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"23":{"tf":1.0},"253":{"tf":1.0},"294":{"tf":1.0},"32":{"tf":1.4142135623730951},"326":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"369":{"tf":1.0},"407":{"tf":1.4142135623730951},"421":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":2.0},"476":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":9,"docs":{"204":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"370":{"tf":1.0},"423":{"tf":1.0},"445":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":1,"docs":{"357":{"tf":1.0}}}}},"·":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{".":{"df":1,"docs":{"313":{"tf":1.0}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"131":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":2.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"442":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"442":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"102":{"tf":1.7320508075688772},"194":{"tf":1.0},"42":{"tf":1.4142135623730951},"471":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.7320508075688772}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0}}}}}}}},"c":{"'":{"df":1,"docs":{"402":{"tf":1.0}}},"df":11,"docs":{"184":{"tf":1.0},"186":{"tf":2.23606797749979},"189":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"350":{"tf":1.0},"380":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0}}},"df":1,"docs":{"357":{"tf":1.0}},"i":{"df":2,"docs":{"257":{"tf":1.0},"291":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"122":{"tf":1.0},"251":{"tf":1.0},"403":{"tf":1.0},"417":{"tf":1.0},"427":{"tf":1.0},"99":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"189":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"269":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"189":{"tf":1.0},"207":{"tf":1.0},"457":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"347":{"tf":1.4142135623730951},"373":{"tf":1.0},"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"349":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"429":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"426":{"tf":1.0},"429":{"tf":1.7320508075688772}}}}},"r":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"173":{"tf":1.0}}}}},"df":11,"docs":{"130":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"221":{"tf":1.0},"362":{"tf":1.0},"383":{"tf":1.0},"429":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.0},"501":{"tf":1.7320508075688772},"82":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"37":{"tf":1.0},"408":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"189":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"434":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"203":{"tf":1.0},"207":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"297":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"164":{"tf":1.0},"383":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":1,"docs":{"391":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"326":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"146":{"tf":1.0},"400":{"tf":1.0},"70":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"296":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":10,"docs":{"13":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.4142135623730951},"204":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"450":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"223":{"tf":1.0},"322":{"tf":1.0},"406":{"tf":1.0},"7":{"tf":2.0},"74":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}}}}}}},"df":1,"docs":{"72":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":7,"docs":{"165":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"213":{"tf":1.0},"440":{"tf":1.0},"510":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"32":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"164":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"184":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":2.0},"268":{"tf":1.0},"274":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"326":{"tf":1.0},"383":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"125":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"307":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"449":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":52,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"21":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"365":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"425":{"tf":1.0},"436":{"tf":1.0},"448":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"511":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"442":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"292":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"24":{"tf":1.0},"241":{"tf":1.0},"267":{"tf":1.0},"343":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.4142135623730951},"505":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"192":{"tf":1.0},"240":{"tf":1.0},"439":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"270":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"194":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"48":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"134":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"194":{"tf":1.7320508075688772},"223":{"tf":1.0},"235":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"266":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"397":{"tf":1.0},"421":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.7320508075688772},"54":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.0},"220":{"tf":1.4142135623730951},"235":{"tf":1.0},"241":{"tf":1.0},"262":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"355":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.4142135623730951},"48":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.4142135623730951},"505":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":16,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":3.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"156":{"tf":1.0},"195":{"tf":1.4142135623730951},"227":{"tf":1.0},"266":{"tf":1.0},"281":{"tf":1.0},"359":{"tf":1.0},"446":{"tf":1.0},"457":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"371":{"tf":1.0},"457":{"tf":1.0},"486":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"120":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"280":{"tf":1.0},"403":{"tf":1.0},"450":{"tf":1.0},"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"129":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":21,"docs":{"118":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"168":{"tf":2.449489742783178},"169":{"tf":1.0},"176":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"209":{"tf":1.0},"366":{"tf":1.0},"383":{"tf":1.0},"41":{"tf":1.0},"421":{"tf":1.0},"445":{"tf":1.0},"476":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0}}}},"c":{"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":3,"docs":{"13":{"tf":1.4142135623730951},"177":{"tf":1.0},"313":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"313":{"tf":1.7320508075688772}}}},"df":116,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":2.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"241":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.4142135623730951},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":2.23606797749979},"343":{"tf":2.449489742783178},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"357":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.7320508075688772},"373":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.7320508075688772},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"462":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"48":{"tf":2.6457513110645907},"485":{"tf":1.7320508075688772},"49":{"tf":1.0},"501":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"511":{"tf":1.0},"512":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":2.23606797749979},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"297":{"tf":1.0}}},"df":30,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"297":{"tf":1.4142135623730951},"303":{"tf":1.0},"391":{"tf":1.0},"397":{"tf":1.0},"404":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.4142135623730951},"454":{"tf":1.0},"469":{"tf":1.7320508075688772},"472":{"tf":1.0},"476":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"471":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":21,"docs":{"164":{"tf":1.4142135623730951},"166":{"tf":2.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"35":{"tf":1.0},"383":{"tf":1.4142135623730951},"396":{"tf":1.0},"403":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"52":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"235":{"tf":1.0}}}},"v":{"0":{"df":2,"docs":{"102":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},".":{"0":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"149":{"tf":2.0},"150":{"tf":2.0},"152":{"tf":1.4142135623730951},"156":{"tf":1.0},"163":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"2":{"+":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"454":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"454":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"457":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":49,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.8284271247461903},"133":{"tf":2.6457513110645907},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":2.6457513110645907},"191":{"tf":1.0},"217":{"tf":2.0},"218":{"tf":1.0},"23":{"tf":1.7320508075688772},"234":{"tf":1.0},"24":{"tf":1.4142135623730951},"262":{"tf":1.0},"290":{"tf":1.7320508075688772},"294":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"429":{"tf":1.0},"45":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"451":{"tf":2.0},"453":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":2.449489742783178},"456":{"tf":1.0},"457":{"tf":2.0},"458":{"tf":1.0},"47":{"tf":2.0},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":3.1622776601683795},"49":{"tf":1.7320508075688772},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"295":{"tf":1.0},"296":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"407":{"tf":1.4142135623730951}}}},"df":59,"docs":{"1":{"tf":1.0},"102":{"tf":2.23606797749979},"103":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"13":{"tf":2.23606797749979},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"193":{"tf":2.449489742783178},"194":{"tf":2.0},"207":{"tf":2.23606797749979},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":5.196152422706632},"351":{"tf":1.0},"356":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":3.605551275463989},"369":{"tf":2.6457513110645907},"371":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":2.0},"471":{"tf":1.4142135623730951},"48":{"tf":2.8284271247461903},"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.0},"501":{"tf":1.4142135623730951},"507":{"tf":1.0},"54":{"tf":1.7320508075688772},"7":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"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":{"343":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"239":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"104":{"tf":3.1622776601683795},"235":{"tf":1.0},"406":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"190":{"tf":1.0},"217":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":11,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"262":{"tf":1.0},"401":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"409":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"146":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"343":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{"c":{"!":{"[":{"(":{"a":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"325":{"tf":1.0},"326":{"tf":1.7320508075688772},"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"8":{"df":3,"docs":{"102":{"tf":2.0},"132":{"tf":1.4142135623730951},"471":{"tf":2.0}}},"df":0,"docs":{}}},"df":3,"docs":{"194":{"tf":3.0},"325":{"tf":1.0},"328":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":27,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"262":{"tf":1.4142135623730951},"303":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.7320508075688772},"383":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"499":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":13,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"23":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"473":{"tf":1.0},"52":{"tf":1.7320508075688772},"83":{"tf":1.0},"95":{"tf":1.4142135623730951}},"i":{"df":17,"docs":{"122":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"240":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"144":{"tf":1.0},"145":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"102":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.449489742783178},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"156":{"tf":1.0},"235":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":5.916079783099616},"348":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.0},"434":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":3.3166247903554},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"l":{"df":2,"docs":{"450":{"tf":1.0},"485":{"tf":1.0}}}},"df":22,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"227":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"355":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"187":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}},"i":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"390":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"169":{"tf":1.0},"184":{"tf":1.0},"343":{"tf":3.4641016151377544}}}},"df":1,"docs":{"191":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"350":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"165":{"tf":1.0}},"p":{"df":1,"docs":{"204":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"295":{"tf":1.0},"298":{"tf":1.0}}},"d":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"383":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"143":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"262":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"425":{"tf":1.7320508075688772},"426":{"tf":3.3166247903554},"427":{"tf":2.23606797749979},"429":{"tf":4.358898943540674}},"r":{"df":4,"docs":{"220":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}},"s":{"(":{"1":{"6":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}},"s":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":9,"docs":{"23":{"tf":2.23606797749979},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"61":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"42":{"tf":2.0},"43":{"tf":2.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"43":{"tf":2.23606797749979},"44":{"tf":1.0},"45":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"51":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":2.0},"45":{"tf":2.8284271247461903},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"423":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"217":{"tf":1.0}}}}}}},"·":{"2":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"310":{"tf":1.0},"322":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"193":{"tf":1.4142135623730951},"367":{"tf":1.0},"407":{"tf":1.0},"455":{"tf":1.0},"491":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"367":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.7320508075688772},"241":{"tf":1.0},"254":{"tf":1.0},"360":{"tf":1.0},"410":{"tf":1.0},"434":{"tf":1.0},"466":{"tf":1.0},"497":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":3,"docs":{"378":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"329":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"262":{"tf":1.7320508075688772},"263":{"tf":1.4142135623730951},"269":{"tf":1.0}}}}}}}}},"df":10,"docs":{"146":{"tf":1.7320508075688772},"150":{"tf":2.0},"155":{"tf":1.0},"165":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.0},"483":{"tf":2.23606797749979},"485":{"tf":2.0},"486":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"162":{"tf":1.0},"296":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"48":{"tf":1.0}}}},"y":{"df":36,"docs":{"111":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"22":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"414":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"505":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":2,"docs":{"485":{"tf":1.0},"489":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951}}}},"b":{"3":{"df":6,"docs":{"162":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"190":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"407":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"160":{"tf":1.0},"168":{"tf":2.23606797749979},"176":{"tf":1.0},"194":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":2.23606797749979},"442":{"tf":1.0},"447":{"tf":1.0},"475":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"169":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"434":{"tf":1.0},"455":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"281":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"189":{"tf":1.0},"191":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"192":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"132":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"423":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"190":{"tf":1.0},"217":{"tf":1.0},"424":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"312":{"tf":1.0},"369":{"tf":1.7320508075688772},"500":{"tf":1.0},"502":{"tf":1.0},"505":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"164":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"185":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"407":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"48":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"407":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"328":{"tf":1.0},"369":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"420":{"tf":1.0}}},"h":{"df":4,"docs":{"253":{"tf":1.0},"406":{"tf":1.0},"415":{"tf":1.0},"429":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":3,"docs":{"164":{"tf":1.7320508075688772},"168":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"163":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"27":{"tf":1.0},"295":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"328":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.4142135623730951},"35":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":2.0},"407":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"511":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"122":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"184":{"tf":1.0},"203":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"408":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"453":{"tf":1.0},"455":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":5,"docs":{"181":{"tf":1.0},"201":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"131":{"tf":1.0},"328":{"tf":1.0},"369":{"tf":1.7320508075688772},"406":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":26,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.7320508075688772},"241":{"tf":1.0},"280":{"tf":1.4142135623730951},"293":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"367":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"194":{"tf":3.1622776601683795},"209":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"191":{"tf":1.4142135623730951},"194":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"185":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"165":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"340":{"tf":1.0},"373":{"tf":1.0},"403":{"tf":1.0},"409":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"177":{"tf":1.0},"190":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"343":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"164":{"tf":1.0},"238":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":5.656854249492381}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"163":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":2.6457513110645907}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{".":{"0":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"d":{"df":1,"docs":{"357":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"169":{"tf":1.4142135623730951}},"m":{"df":17,"docs":{"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.4142135623730951},"223":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":3,"docs":{"33":{"tf":2.6457513110645907},"357":{"tf":1.0},"48":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}},"df":1,"docs":{"191":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"357":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"156":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"408":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"144":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"128":{"tf":1.4142135623730951},"177":{"tf":1.0},"193":{"tf":1.4142135623730951},"208":{"tf":1.0},"343":{"tf":2.0}}}}},"k":{"df":6,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"164":{"tf":1.0},"178":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"0":{"0":{"1":{"6":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"9":{"tf":1.0}}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":6,"docs":{"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"7":{"5":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"5":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"177":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"0":{"0":{"6":{"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"9":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"312":{"tf":1.0}}},"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"5":{"df":1,"docs":{"360":{"tf":1.0}}},"6":{"df":1,"docs":{"444":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":50,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"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},"11":{"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},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"4":{"df":12,"docs":{"159":{"tf":1.0},"338":{"tf":2.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0}}},"6":{"df":16,"docs":{"349":{"tf":2.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0}}},"7":{"df":18,"docs":{"215":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"8":{"df":16,"docs":{"233":{"tf":2.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}}},"9":{"df":14,"docs":{"365":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":5,"docs":{"379":{"tf":2.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0}}},"2":{"df":11,"docs":{"249":{"tf":2.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0}}},"3":{"df":17,"docs":{"384":{"tf":2.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0}}},"4":{"df":17,"docs":{"260":{"tf":2.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}},"5":{"df":11,"docs":{"401":{"tf":2.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":13,"docs":{"412":{"tf":2.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0}}},"2":{"df":11,"docs":{"277":{"tf":2.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}},"6":{"df":45,"docs":{"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"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}}},"df":0,"docs":{}},"3":{"2":{"df":20,"docs":{"288":{"tf":2.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0}}},"5":{"df":13,"docs":{"425":{"tf":2.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":14,"docs":{"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"3":{"df":10,"docs":{"438":{"tf":2.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0}}},"4":{"df":19,"docs":{"448":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}},"7":{"df":21,"docs":{"123":{"tf":2.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}}},"8":{"df":14,"docs":{"467":{"tf":2.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":16,"docs":{"308":{"tf":2.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0}}},"4":{"df":14,"docs":{"481":{"tf":2.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}},"6":{"df":14,"docs":{"324":{"tf":2.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0}}},"9":{"df":18,"docs":{"495":{"tf":2.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":16,"docs":{"144":{"tf":2.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}}},"6":{"df":21,"docs":{"160":{"tf":2.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}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"123":{"tf":1.0}}},"4":{"df":1,"docs":{"338":{"tf":1.0}}},"5":{".":{"0":{"8":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"401":{"tf":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":{"68":{"tf":1.0}}},"6":{"df":2,"docs":{"201":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":4,"docs":{"215":{"tf":1.0},"233":{"tf":1.0},"338":{"tf":1.0},"365":{"tf":1.0}}},"9":{":":{"1":{"3":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}},"b":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":3.3166247903554}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"130":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":3.872983346207417},"208":{"tf":1.0},"314":{"tf":1.7320508075688772},"343":{"tf":4.58257569495584},"355":{"tf":1.0},"356":{"tf":2.23606797749979},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"9":{"tf":1.0}},"u":{"1":{"6":{"df":1,"docs":{"194":{"tf":4.795831523312719}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"x":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"1":{"df":1,"docs":{"111":{"tf":1.0}}},"2":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"3":{"d":{"d":{"8":{"0":{"8":{"4":{"d":{"5":{"0":{"d":{"b":{"b":{"b":{"c":{"9":{"6":{"2":{"0":{"6":{"7":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"c":{"3":{"7":{"b":{"6":{"2":{"7":{"8":{"3":{"1":{"d":{"9":{"3":{"3":{"9":{"df":0,"docs":{},"f":{"5":{"a":{"6":{"df":0,"docs":{},"e":{"4":{"2":{"6":{"a":{"3":{"2":{"df":0,"docs":{},"e":{"3":{"0":{"7":{"6":{"3":{"1":{"3":{"d":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"111":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"164":{"tf":1.0},"173":{"tf":1.0},"370":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"5":{"df":3,"docs":{"312":{"tf":1.0},"360":{"tf":1.4142135623730951},"370":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"297":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"8":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"209":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":8,"docs":{"174":{"tf":1.0},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"360":{"tf":2.0},"507":{"tf":1.0},"7":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"156":{"tf":1.0},"168":{"tf":1.0},"194":{"tf":3.872983346207417},"209":{"tf":1.0},"343":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"168":{"tf":1.0},"194":{"tf":2.23606797749979},"209":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"61":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"1":{",":{"6":{"df":1,"docs":{"369":{"tf":1.0}}},"7":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"194":{"tf":2.0}},"u":{"3":{"2":{"df":1,"docs":{"194":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"314":{"tf":1.0},"324":{"tf":1.0},"481":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"2":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.0}}},"8":{"df":6,"docs":{"129":{"tf":1.4142135623730951},"190":{"tf":1.0},"194":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0}}},"9":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":5,"docs":{"173":{"tf":1.0},"23":{"tf":1.0},"414":{"tf":1.0},"495":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"3":{"0":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":1,"docs":{"467":{"tf":1.0}}},"4":{"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"160":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"406":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"238":{"tf":1.0}}}}},"5":{"0":{"0":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":1,"docs":{"194":{"tf":3.4641016151377544}},"u":{"3":{"2":{"df":1,"docs":{"194":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"2":{"df":1,"docs":{"194":{"tf":1.0}}},"df":5,"docs":{"194":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"308":{"tf":1.0},"429":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":4,"docs":{"194":{"tf":3.4641016151377544},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"500":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}}},"8":{",":{"3":{"3":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"173":{"tf":1.0},"495":{"tf":1.0}}},"9":{".":{"0":{"7":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"379":{"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":1,"docs":{"14":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"365":{"tf":1.0}}},":":{"1":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":69,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"156":{"tf":1.0},"161":{"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.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"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},"202":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"25":{"tf":1.4142135623730951},"262":{"tf":1.0},"292":{"tf":1.0},"312":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":2.23606797749979},"343":{"tf":5.656854249492381},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"360":{"tf":3.1622776601683795},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":1.4142135623730951},"391":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"47":{"tf":2.23606797749979},"471":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":0,"docs":{},"v":{"df":1,"docs":{"429":{"tf":1.0}}}}},"2":{",":{"8":{"9":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"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":2,"docs":{"162":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"df":5,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"312":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"312":{"tf":2.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":1.0},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"313":{"tf":2.0},"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.7320508075688772}},"u":{"3":{"2":{"df":1,"docs":{"194":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"2":{"df":2,"docs":{"278":{"tf":1.0},"437":{"tf":1.0}}},"3":{"df":30,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"384":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":3,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"483":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":2.0},"288":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772}}},"2":{",":{"5":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{",":{"8":{"3":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"184":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"384":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"481":{"tf":1.0},"507":{"tf":1.0}}},"5":{"6":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":1,"docs":{"260":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"7":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"144":{"tf":1.0},"314":{"tf":1.0}}},"8":{"df":1,"docs":{"193":{"tf":1.0}}},"9":{"6":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"128":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"23":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"343":{"tf":3.4641016151377544},"356":{"tf":1.7320508075688772},"360":{"tf":2.23606797749979},"369":{"tf":2.0},"391":{"tf":1.0},"409":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"3":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"32":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"a":{"df":1,"docs":{"143":{"tf":1.0}}},"b":{"df":1,"docs":{"143":{"tf":1.0}}},"c":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"181":{"tf":1.0},"193":{"tf":1.0},"324":{"tf":1.0},"356":{"tf":1.0},"360":{"tf":2.0},"406":{"tf":1.0},"438":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"485":{"tf":1.0}}}}},"df":10,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"162":{"tf":1.0},"194":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"471":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}},"3":{"3":{"8":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}}},"4":{"df":13,"docs":{"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"194":{"tf":1.0}}},"8":{"df":1,"docs":{"343":{"tf":1.0}}},"df":25,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.0},"125":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"276":{"tf":1.0},"31":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"343":{"tf":2.449489742783178},"351":{"tf":1.0},"360":{"tf":1.0},"369":{"tf":2.0},"391":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0}}},"4":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"36":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"37":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"23":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"14":{"tf":1.0}}},"5":{"df":3,"docs":{"193":{"tf":1.0},"356":{"tf":1.0},"360":{"tf":2.0}}},"8":{",":{"6":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":2.0},"423":{"tf":1.7320508075688772}}},"9":{",":{"2":{"1":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"191":{"tf":1.0},"194":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"276":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":2.449489742783178},"35":{"tf":1.4142135623730951},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"429":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.4142135623730951}},"·":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.4142135623730951}}},"4":{".":{"1":{"df":1,"docs":{"45":{"tf":1.0}}},"2":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"497":{"tf":1.4142135623730951}}},"df":6,"docs":{"129":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"194":{"tf":2.0},"243":{"tf":1.0},"507":{"tf":1.0}}},"3":{",":{"3":{"3":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{",":{"6":{"0":{"0":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"266":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.4142135623730951},"385":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"47":{"tf":1.4142135623730951},"54":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"4":{".":{"1":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"5":{".":{"1":{".":{"1":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"3":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"7":{"df":4,"docs":{"23":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"343":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"33":{"tf":1.0},"442":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"483":{"tf":1.0}}},"df":0,"docs":{}}}},"5":{",":{"3":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{",":{"6":{"6":{"7":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"191":{"tf":1.0},"23":{"tf":1.0},"369":{"tf":1.4142135623730951},"409":{"tf":1.0},"448":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"7":{"7":{",":{"0":{"0":{"0":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"164":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"23":{"tf":1.0},"385":{"tf":1.0},"406":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"8":{"0":{",":{"0":{"0":{"0":{"df":3,"docs":{"194":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":1.0},"190":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"1":{",":{"8":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"102":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"207":{"tf":1.0},"23":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"9":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"168":{"tf":1.0}}},"1":{"b":{"1":{"7":{"1":{"b":{"b":{"1":{"5":{"8":{"df":0,"docs":{},"e":{"2":{"d":{"3":{"8":{"4":{"8":{"df":0,"docs":{},"f":{"a":{"2":{"3":{"a":{"9":{"df":0,"docs":{},"f":{"1":{"c":{"2":{"5":{"1":{"8":{"2":{"df":0,"docs":{},"f":{"b":{"8":{"df":0,"docs":{},"e":{"2":{"0":{"3":{"1":{"3":{"b":{"2":{"c":{"1":{"df":0,"docs":{},"e":{"b":{"4":{"9":{"2":{"1":{"9":{"d":{"a":{"7":{"a":{"7":{"0":{"c":{"df":0,"docs":{},"e":{"9":{"0":{"c":{"3":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"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":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"9":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"57":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}},"_":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"149":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"(":{"1":{"df":1,"docs":{"357":{"tf":1.0}}},"df":0,"docs":{},"x":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{".":{"a":{"df":1,"docs":{"290":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"109":{"tf":1.0},"185":{"tf":1.7320508075688772},"189":{"tf":1.0},"297":{"tf":1.0},"316":{"tf":1.0},"72":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}}},"v":{"df":12,"docs":{"107":{"tf":1.0},"139":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"407":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"483":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"391":{"tf":1.0},"51":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":3.1622776601683795},"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}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"426":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"164":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"241":{"tf":1.4142135623730951},"505":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"134":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.4142135623730951},"343":{"tf":3.0},"344":{"tf":1.0},"347":{"tf":1.0},"363":{"tf":1.0},"407":{"tf":1.0},"503":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":2.0},"161":{"tf":1.0},"164":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"241":{"tf":1.0},"294":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.0},"41":{"tf":1.0},"440":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"350":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"r":{"d":{"df":10,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"146":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"220":{"tf":1.0},"254":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"df":29,"docs":{"182":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":2.8284271247461903},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.4142135623730951},"429":{"tf":2.0},"440":{"tf":1.7320508075688772},"454":{"tf":1.0},"468":{"tf":1.4142135623730951},"472":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"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}},"i":{"d":{"df":6,"docs":{"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":2,"docs":{"381":{"tf":1.0},"383":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"208":{"tf":1.0},"23":{"tf":1.0},"383":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":2.0}}}}},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":14,"docs":{"194":{"tf":1.0},"221":{"tf":1.0},"239":{"tf":1.0},"261":{"tf":1.0},"360":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"442":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"217":{"tf":1.0},"316":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"254":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"196":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"266":{"tf":1.0},"406":{"tf":1.0},"49":{"tf":1.0}}}},"v":{"df":8,"docs":{"163":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":1.0},"24":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"383":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"12":{"tf":1.0},"146":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"239":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.4142135623730951},"3":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.0},"45":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"48":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"387":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":75,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":2.23606797749979},"161":{"tf":1.4142135623730951},"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},"207":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"403":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"468":{"tf":1.0},"485":{"tf":1.4142135623730951},"495":{"tf":2.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"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}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"162":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"220":{"tf":1.0},"344":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.4142135623730951},"500":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"111":{"tf":1.0}}}}}}}},"df":6,"docs":{"133":{"tf":1.0},"14":{"tf":1.0},"190":{"tf":1.4142135623730951},"378":{"tf":1.0},"410":{"tf":1.0},"437":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.0},"262":{"tf":1.0},"350":{"tf":1.0},"403":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":27,"docs":{"114":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"191":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"429":{"tf":1.0},"485":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"176":{"tf":1.0},"196":{"tf":1.0},"281":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"403":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"189":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"350":{"tf":1.0},"4":{"tf":1.0},"406":{"tf":2.23606797749979},"451":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":16,"docs":{"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"277":{"tf":2.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"369":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"13":{"tf":1.0},"33":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"135":{"tf":1.0},"14":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.0},"291":{"tf":1.0},"403":{"tf":1.0},"415":{"tf":1.4142135623730951},"420":{"tf":1.0},"434":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.0},"489":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1":{"tf":1.0},"406":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"367":{"tf":1.0},"383":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"243":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"455":{"tf":1.0},"507":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"407":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"l":{"df":24,"docs":{"181":{"tf":2.23606797749979},"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.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"296":{"tf":1.0},"34":{"tf":1.0},"451":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"254":{"tf":1.0},"312":{"tf":1.0},"429":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"440":{"tf":1.0},"497":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":17,"docs":{"162":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"22":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"367":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"a":{"df":2,"docs":{"190":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{}},"l":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":6,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"128":{"tf":2.0},"146":{"tf":1.0},"199":{"tf":1.4142135623730951},"471":{"tf":1.0}}}}}}}}},"i":{"c":{"df":4,"docs":{"194":{"tf":4.242640687119285},"349":{"tf":1.0},"426":{"tf":2.0},"429":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"383":{"tf":1.0}}}},"n":{"df":1,"docs":{"123":{"tf":1.0}}},"v":{"df":1,"docs":{"269":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"389":{"tf":1.0},"399":{"tf":1.0}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":58,"docs":{"144":{"tf":2.23606797749979},"145":{"tf":2.0},"146":{"tf":3.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":2.6457513110645907},"150":{"tf":3.3166247903554},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.7320508075688772},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":2.0},"194":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.449489742783178},"206":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"288":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":2.0},"302":{"tf":1.0},"338":{"tf":2.23606797749979},"339":{"tf":1.4142135623730951},"340":{"tf":3.872983346207417},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":3.605551275463989},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.4142135623730951},"402":{"tf":1.0},"403":{"tf":1.7320508075688772},"406":{"tf":1.7320508075688772},"407":{"tf":1.0},"409":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":2.23606797749979},"486":{"tf":1.4142135623730951},"494":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":54,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"146":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"204":{"tf":2.23606797749979},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"328":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"369":{"tf":1.0},"389":{"tf":1.4142135623730951},"396":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":2.23606797749979},"406":{"tf":1.0},"426":{"tf":1.7320508075688772},"429":{"tf":2.0},"445":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"3":{"tf":1.0},"406":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"426":{"tf":1.0},"429":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":23,"docs":{"128":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"196":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"326":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"399":{"tf":1.0},"406":{"tf":1.0},"451":{"tf":1.0},"471":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"191":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"207":{"tf":1.0},"303":{"tf":1.0},"421":{"tf":1.0},"458":{"tf":1.0},"476":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":12,"docs":{"181":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"213":{"tf":1.4142135623730951},"329":{"tf":1.0},"343":{"tf":1.7320508075688772},"369":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"163":{"tf":1.0},"27":{"tf":1.0},"298":{"tf":1.0},"313":{"tf":1.0},"408":{"tf":1.0},"78":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":25,"docs":{"104":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"217":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"343":{"tf":2.8284271247461903},"352":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"26":{"tf":1.0},"343":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"165":{"tf":1.0},"325":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"14":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"343":{"tf":1.7320508075688772},"371":{"tf":1.0},"373":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"406":{"tf":1.0},"407":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}},"u":{"df":1,"docs":{"182":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}},"i":{"df":2,"docs":{"3":{"tf":1.0},"67":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"403":{"tf":1.0},"407":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"134":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"304":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"195":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"235":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"12":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"168":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"217":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"296":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.0},"408":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"497":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"369":{"tf":1.0},"371":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"164":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.7320508075688772},"457":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"122":{"tf":1.0},"185":{"tf":1.7320508075688772},"194":{"tf":1.0},"266":{"tf":1.0},"343":{"tf":2.449489742783178},"369":{"tf":1.0},"430":{"tf":1.0},"485":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"343":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"#":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":33,"docs":{"143":{"tf":1.4142135623730951},"191":{"tf":1.0},"198":{"tf":1.0},"220":{"tf":1.0},"294":{"tf":1.4142135623730951},"304":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.4142135623730951},"384":{"tf":2.23606797749979},"385":{"tf":1.7320508075688772},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"390":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"471":{"tf":1.0},"477":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":2,"docs":{"185":{"tf":1.0},"220":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"173":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"121":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}},"r":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":11,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.449489742783178},"168":{"tf":2.0},"173":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0}}},"df":14,"docs":{"211":{"tf":1.0},"237":{"tf":1.0},"268":{"tf":1.0},"300":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"34":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"407":{"tf":1.0},"43":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"457":{"tf":1.0},"473":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":4,"docs":{"143":{"tf":1.7320508075688772},"253":{"tf":1.0},"451":{"tf":1.0},"455":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"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":12,"docs":{"109":{"tf":1.0},"194":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"3":{"tf":1.0},"407":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"162":{"tf":2.0},"164":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"288":{"tf":1.0},"295":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"498":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.0},"502":{"tf":1.0},"512":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"403":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":1,"docs":{"485":{"tf":1.4142135623730951}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"407":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"383":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"208":{"tf":1.0},"357":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":2.0},"403":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"297":{"tf":1.0},"350":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"409":{"tf":1.0},"47":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"14":{"tf":1.0},"192":{"tf":1.0},"202":{"tf":1.0},"243":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"444":{"tf":1.0},"485":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":3,"docs":{"125":{"tf":1.0},"33":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}},"u":{"d":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":56,"docs":{"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"140":{"tf":1.4142135623730951},"144":{"tf":1.0},"157":{"tf":1.4142135623730951},"181":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.0},"346":{"tf":1.4142135623730951},"349":{"tf":1.0},"362":{"tf":1.4142135623730951},"365":{"tf":1.0},"376":{"tf":1.4142135623730951},"384":{"tf":1.0},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"467":{"tf":1.0},"478":{"tf":1.4142135623730951},"481":{"tf":1.0},"492":{"tf":1.4142135623730951},"495":{"tf":1.0},"510":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":4,"docs":{"240":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"497":{"tf":1.4142135623730951}}},"n":{".":{"1":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"195":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"406":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"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":2,"docs":{"128":{"tf":1.0},"152":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"411":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"163":{"tf":1.0},"168":{"tf":1.0}}}}}}}}},"df":54,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":2.449489742783178},"161":{"tf":1.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":3.0},"17":{"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},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"295":{"tf":2.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.0},"3":{"tf":1.7320508075688772},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"'":{"df":2,"docs":{"164":{"tf":1.0},"168":{"tf":1.0}}},"df":15,"docs":{"12":{"tf":1.0},"160":{"tf":2.6457513110645907},"161":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":2.449489742783178},"164":{"tf":2.6457513110645907},"165":{"tf":2.449489742783178},"166":{"tf":2.23606797749979},"168":{"tf":2.23606797749979},"169":{"tf":2.8284271247461903},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"169":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"194":{"tf":1.7320508075688772},"207":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"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.7320508075688772},"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},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.0},"190":{"tf":2.449489742783178},"191":{"tf":3.1622776601683795},"194":{"tf":3.1622776601683795},"202":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178},"24":{"tf":1.0},"343":{"tf":1.0},"50":{"tf":2.23606797749979}},"e":{"d":{"(":{"a":{"df":1,"docs":{"194":{"tf":2.0}}},"b":{"df":1,"docs":{"194":{"tf":2.449489742783178}}},"c":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"456":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":23,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"48":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":14,"docs":{"134":{"tf":1.0},"143":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"406":{"tf":1.0},"440":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"217":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772}}}}},"r":{"df":2,"docs":{"269":{"tf":1.0},"383":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"169":{"tf":2.8284271247461903},"173":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"216":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"217":{"tf":1.0},"341":{"tf":1.0},"427":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"485":{"tf":1.0},"497":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"47":{"tf":2.0},"48":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.0},"172":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"2":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"184":{"tf":2.0},"189":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}}},"df":11,"docs":{"110":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"387":{"tf":1.0},"459":{"tf":1.0},"473":{"tf":1.0},"56":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"277":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"412":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":48,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"30":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.7320508075688772},"481":{"tf":1.0},"485":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"26":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"194":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"421":{"tf":1.7320508075688772},"453":{"tf":1.0}}}},"df":4,"docs":{"11":{"tf":1.0},"122":{"tf":1.0},"135":{"tf":1.0},"99":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":44,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":2.6457513110645907},"124":{"tf":1.7320508075688772},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":2.0},"131":{"tf":1.0},"132":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"168":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"294":{"tf":1.0},"343":{"tf":1.4142135623730951},"380":{"tf":1.0},"387":{"tf":1.0},"406":{"tf":1.4142135623730951},"410":{"tf":1.0},"455":{"tf":1.0},"483":{"tf":2.0},"485":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"238":{"tf":1.4142135623730951},"343":{"tf":1.0},"359":{"tf":1.0},"48":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":8,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"343":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}},"y":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"238":{"tf":1.0},"247":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"143":{"tf":2.0},"189":{"tf":1.0},"207":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"391":{"tf":1.0},"485":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"203":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"325":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"340":{"tf":1.0},"485":{"tf":1.0},"512":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":2,"docs":{"220":{"tf":1.4142135623730951},"292":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"185":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"162":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":2.23606797749979},"207":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":3.0},"306":{"tf":1.0},"307":{"tf":1.0},"367":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.0},"444":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"9":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":5,"docs":{"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"61":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"243":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"507":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"408":{"tf":1.0},"72":{"tf":2.23606797749979},"9":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"5":{"8":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":76,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"24":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"3":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":2.23606797749979},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"495":{"tf":2.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0},"52":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"360":{"tf":1.4142135623730951},"383":{"tf":1.0},"406":{"tf":1.0}}}}}},"i":{"c":{"df":6,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772},"362":{"tf":1.0},"505":{"tf":1.0}}},"df":6,"docs":{"189":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"408":{"tf":1.0},"440":{"tf":1.0},"54":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"467":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"142":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"129":{"tf":1.4142135623730951},"169":{"tf":1.0},"194":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"298":{"tf":1.0},"307":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.0},"373":{"tf":1.0},"391":{"tf":1.0},"427":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.4142135623730951}}}}},"df":36,"docs":{"104":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.0},"194":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"220":{"tf":1.0},"240":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"295":{"tf":1.0},"344":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"369":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"398":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"471":{"tf":1.7320508075688772},"487":{"tf":1.0},"496":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"500":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":31,"docs":{"115":{"tf":1.0},"130":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.0},"370":{"tf":1.0},"381":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"43":{"tf":1.0},"451":{"tf":1.0},"477":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":1,"docs":{"383":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"133":{"tf":1.4142135623730951},"143":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"193":{"tf":1.0},"194":{"tf":5.5677643628300215},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"293":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"369":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"369":{"tf":1.4142135623730951},"74":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":3.1622776601683795},"486":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"150":{"tf":1.0},"184":{"tf":1.0},"235":{"tf":1.0},"326":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":11,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.4142135623730951},"178":{"tf":1.0},"237":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"132":{"tf":1.4142135623730951},"343":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}},"w":{"df":13,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.0},"190":{"tf":1.4142135623730951},"314":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"415":{"tf":1.0},"454":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"195":{"tf":1.0},"225":{"tf":1.0},"340":{"tf":1.0},"347":{"tf":1.0},"440":{"tf":1.4142135623730951},"444":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}},"df":5,"docs":{"146":{"tf":1.0},"235":{"tf":1.0},"281":{"tf":1.4142135623730951},"403":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":14,"docs":{"14":{"tf":1.0},"146":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"253":{"tf":1.0},"268":{"tf":1.0},"29":{"tf":1.0},"383":{"tf":2.449489742783178},"401":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.0},"408":{"tf":1.0},"429":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"165":{"tf":1.0},"298":{"tf":1.0},"340":{"tf":1.0},"381":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"122":{"tf":1.0},"164":{"tf":1.0},"235":{"tf":1.4142135623730951},"357":{"tf":1.0},"399":{"tf":1.0},"450":{"tf":1.0},"51":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"123":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"26":{"tf":1.0},"312":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.4142135623730951},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"512":{"tf":1.0},"98":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"168":{"tf":1.0},"185":{"tf":1.4142135623730951},"200":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"184":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.23606797749979}}}}},"df":3,"docs":{"184":{"tf":1.4142135623730951},"406":{"tf":2.0},"407":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":5,"docs":{"414":{"tf":2.0},"416":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"83":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"151":{"tf":1.0},"47":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"156":{"tf":1.0},"485":{"tf":1.0},"95":{"tf":1.0}}}}},"d":{"df":4,"docs":{"193":{"tf":1.0},"23":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"102":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"194":{"tf":3.0},"32":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.7320508075688772},"369":{"tf":1.0},"373":{"tf":1.0},"442":{"tf":1.0},"48":{"tf":1.0},"490":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"190":{"tf":1.4142135623730951},"194":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"(":{"3":{"2":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}},"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":2,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"122":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"176":{"tf":1.0},"18":{"tf":1.4142135623730951}}}},"b":{"df":8,"docs":{"161":{"tf":1.0},"164":{"tf":2.6457513110645907},"166":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"99":{"tf":1.4142135623730951}},"s":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"'":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":17,"docs":{"384":{"tf":2.23606797749979},"385":{"tf":1.7320508075688772},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"384":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"14":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.7320508075688772},"36":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":71,"docs":{"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"146":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"182":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":3.1622776601683795},"193":{"tf":2.23606797749979},"194":{"tf":3.1622776601683795},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"348":{"tf":1.0},"367":{"tf":2.0},"369":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":2.449489742783178},"387":{"tf":1.0},"389":{"tf":2.0},"39":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.7320508075688772},"403":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":1.4142135623730951},"440":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":2.23606797749979},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"47":{"tf":3.872983346207417},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":2.6457513110645907},"500":{"tf":5.196152422706632},"51":{"tf":1.7320508075688772},"512":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"399":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":6,"docs":{"168":{"tf":1.0},"200":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"296":{"tf":1.0},"351":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"b":{"df":4,"docs":{"194":{"tf":3.0},"349":{"tf":1.0},"426":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"239":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"217":{"tf":1.4142135623730951},"220":{"tf":2.6457513110645907},"221":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"369":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":20,"docs":{"233":{"tf":2.23606797749979},"234":{"tf":1.0},"235":{"tf":2.8284271247461903},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.449489742783178},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"122":{"tf":1.0}},"h":{"df":29,"docs":{"111":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"204":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"51":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"296":{"tf":1.0},"340":{"tf":1.0}}}}},"df":8,"docs":{"194":{"tf":1.7320508075688772},"369":{"tf":1.0},"371":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"485":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"132":{"tf":1.4142135623730951},"369":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":13,"docs":{"114":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"296":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.4142135623730951},"421":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"491":{"tf":1.0},"512":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"486":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"297":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"253":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"380":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"205":{"tf":1.0}}}},"df":2,"docs":{"351":{"tf":1.0},"353":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"340":{"tf":2.449489742783178},"343":{"tf":5.5677643628300215},"347":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"486":{"tf":1.0},"500":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"115":{"tf":1.0},"117":{"tf":1.0},"182":{"tf":1.4142135623730951},"200":{"tf":1.0},"220":{"tf":1.4142135623730951},"262":{"tf":1.0},"400":{"tf":1.0},"403":{"tf":1.4142135623730951},"410":{"tf":1.0},"497":{"tf":1.4142135623730951},"5":{"tf":1.0},"501":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"5":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"2":{"2":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"179":{"tf":1.0},"393":{"tf":1.0},"434":{"tf":1.0},"440":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"400":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"193":{"tf":3.1622776601683795},"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}},"df":28,"docs":{"189":{"tf":3.0},"190":{"tf":3.4641016151377544},"191":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.23606797749979},"349":{"tf":2.23606797749979},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"132":{"tf":1.0},"281":{"tf":1.0},"385":{"tf":1.0},"471":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"387":{"tf":1.0},"466":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":5,"docs":{"379":{"tf":2.23606797749979},"380":{"tf":1.7320508075688772},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":3.0}}}},"y":{"df":2,"docs":{"171":{"tf":1.0},"185":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"383":{"tf":1.0},"406":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"483":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"238":{"tf":1.0},"239":{"tf":2.0},"328":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"340":{"tf":1.0},"343":{"tf":4.47213595499958},"369":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"454":{"tf":1.0},"466":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"s":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"51":{"tf":1.0},"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":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"241":{"tf":1.0},"243":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"110":{"tf":1.4142135623730951},"294":{"tf":1.0},"406":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":46,"docs":{"102":{"tf":1.7320508075688772},"131":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"194":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.7320508075688772},"266":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"325":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":2.449489742783178},"347":{"tf":1.4142135623730951},"367":{"tf":1.0},"391":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"445":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":2,"docs":{"191":{"tf":1.0},"453":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"191":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"132":{"tf":1.0},"343":{"tf":1.0},"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"298":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":3.7416573867739413},"220":{"tf":2.6457513110645907},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"23":{"tf":2.0},"292":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":25,"docs":{"109":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.4142135623730951},"185":{"tf":1.0},"495":{"tf":2.449489742783178},"496":{"tf":2.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":3.1622776601683795},"501":{"tf":2.23606797749979},"502":{"tf":2.6457513110645907},"503":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":2.0},"506":{"tf":1.0},"507":{"tf":2.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":2.23606797749979}}}},"c":{"df":6,"docs":{"251":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"164":{"tf":1.0},"189":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"182":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"182":{"tf":1.0},"186":{"tf":1.0},"351":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"115":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0},"371":{"tf":1.0},"98":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"101":{"tf":1.0},"156":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"281":{"tf":1.0},"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":45,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"43":{"tf":1.0},"449":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"47":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"50":{"tf":1.0},"503":{"tf":1.0},"58":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"168":{"tf":1.4142135623730951},"367":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"400":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0},"485":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"133":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"392":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"217":{"tf":2.0},"218":{"tf":1.0},"220":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"269":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"168":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"190":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"403":{"tf":1.0},"47":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"505":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"403":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"179":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"18":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0}}},"df":139,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":2.23606797749979},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":2.0},"186":{"tf":1.0},"189":{"tf":4.47213595499958},"190":{"tf":2.6457513110645907},"191":{"tf":2.6457513110645907},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"200":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":3.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"234":{"tf":1.0},"235":{"tf":3.3166247903554},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":2.0},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":2.0},"294":{"tf":2.0},"295":{"tf":2.8284271247461903},"296":{"tf":2.449489742783178},"297":{"tf":3.1622776601683795},"298":{"tf":2.0},"299":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"351":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":1.7320508075688772},"371":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.4142135623730951},"427":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.7320508075688772},"469":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"471":{"tf":1.0},"48":{"tf":2.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"495":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":3.0},"503":{"tf":2.0},"51":{"tf":2.0},"512":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0},"350":{"tf":1.0},"407":{"tf":1.0},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"83":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"190":{"tf":1.0},"487":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":106,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"161":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"326":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"347":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":1.0},"371":{"tf":1.0},"385":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"389":{"tf":1.0},"391":{"tf":1.0},"399":{"tf":1.0},"403":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"416":{"tf":2.0},"417":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"457":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"477":{"tf":1.0},"485":{"tf":2.0},"489":{"tf":1.0},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"220":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"205":{"tf":1.0},"207":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"412":{"tf":1.0},"425":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"194":{"tf":1.7320508075688772},"426":{"tf":1.7320508075688772},"429":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":16,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":2.23606797749979},"367":{"tf":1.0},"393":{"tf":1.4142135623730951},"43":{"tf":1.0},"451":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"457":{"tf":2.0},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"142":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"260":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"343":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"369":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"369":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"369":{"tf":2.449489742783178}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"12":{"tf":1.0},"207":{"tf":1.0},"316":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"149":{"tf":1.0},"179":{"tf":1.0},"314":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"238":{"tf":1.0},"295":{"tf":1.0},"357":{"tf":1.0},"406":{"tf":1.0},"48":{"tf":1.0},"497":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"132":{"tf":2.0}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":30,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"123":{"tf":2.6457513110645907},"124":{"tf":1.7320508075688772},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":2.449489742783178},"130":{"tf":3.0},"131":{"tf":2.449489742783178},"132":{"tf":4.58257569495584},"133":{"tf":2.23606797749979},"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.4142135623730951},"143":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.7320508075688772}}}}}}}}}}}}},"i":{"df":1,"docs":{"280":{"tf":1.0}},"r":{"c":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{},"s":{"[":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"164":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"455":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":3.7416573867739413},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"483":{"tf":1.0},"487":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"31":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"164":{"tf":1.0},"172":{"tf":1.0}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"146":{"tf":1.0},"376":{"tf":1.0}}},"r":{"df":12,"docs":{"178":{"tf":1.0},"196":{"tf":1.0},"251":{"tf":1.0},"345":{"tf":1.0},"383":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"427":{"tf":1.0},"457":{"tf":1.0},"487":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"383":{"tf":1.4142135623730951},"414":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":47,"docs":{"133":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"248":{"tf":1.0},"303":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"365":{"tf":2.0},"366":{"tf":1.4142135623730951},"367":{"tf":2.6457513110645907},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"441":{"tf":1.0},"481":{"tf":2.23606797749979},"482":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"485":{"tf":2.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.7320508075688772},"491":{"tf":2.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"60":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"485":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"168":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"132":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"169":{"tf":1.0},"312":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.4142135623730951},"403":{"tf":1.4142135623730951},"501":{"tf":1.0}},"r":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"241":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"395":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"32":{"tf":1.0}}},"df":41,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":2.449489742783178},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"23":{"tf":1.4142135623730951},"255":{"tf":1.0},"282":{"tf":1.0},"326":{"tf":1.7320508075688772},"33":{"tf":2.0},"343":{"tf":1.7320508075688772},"345":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.4142135623730951},"370":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"450":{"tf":1.7320508075688772},"451":{"tf":2.0},"453":{"tf":1.4142135623730951},"454":{"tf":2.449489742783178},"455":{"tf":2.449489742783178},"456":{"tf":1.0},"457":{"tf":2.23606797749979},"458":{"tf":1.0},"483":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":2.449489742783178},"7":{"tf":2.23606797749979},"80":{"tf":1.0},"9":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"293":{"tf":1.4142135623730951},"450":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"l":{"d":{"df":10,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":25,"docs":{"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"215":{"tf":2.23606797749979},"216":{"tf":1.7320508075688772},"217":{"tf":4.0},"218":{"tf":2.23606797749979},"219":{"tf":1.0},"220":{"tf":3.1622776601683795},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":31,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"249":{"tf":2.449489742783178},"250":{"tf":2.6457513110645907},"251":{"tf":2.6457513110645907},"252":{"tf":1.0},"253":{"tf":2.23606797749979},"254":{"tf":3.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":2.6457513110645907},"258":{"tf":1.0},"259":{"tf":1.0},"269":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"3":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"262":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.4142135623730951},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"254":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.4142135623730951},"391":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"133":{"tf":1.0},"406":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"t":{"df":6,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"189":{"tf":1.0},"253":{"tf":1.4142135623730951},"310":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"168":{"tf":1.0},"290":{"tf":1.4142135623730951},"343":{"tf":1.0},"367":{"tf":1.0},"403":{"tf":1.0},"427":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":13,"docs":{"109":{"tf":1.4142135623730951},"164":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"253":{"tf":1.0},"3":{"tf":1.0},"383":{"tf":1.0},"424":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":3,"docs":{"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"<":{"df":0,"docs":{},"u":{"3":{"2":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"*":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{")":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"328":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":12,"docs":{"173":{"tf":1.0},"190":{"tf":1.0},"280":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"409":{"tf":1.0},"453":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"168":{"tf":1.0},"367":{"tf":1.0}}}}}}},"t":{"df":85,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"116":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"178":{"tf":2.23606797749979},"181":{"tf":1.0},"196":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"201":{"tf":1.0},"210":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.7320508075688772},"260":{"tf":1.0},"273":{"tf":1.7320508075688772},"277":{"tf":1.0},"284":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"340":{"tf":1.0},"365":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"451":{"tf":1.0},"460":{"tf":1.4142135623730951},"463":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"485":{"tf":1.0},"488":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"512":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}},"t":{"df":3,"docs":{"217":{"tf":1.4142135623730951},"226":{"tf":1.0},"431":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"146":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.4142135623730951},"172":{"tf":1.0},"343":{"tf":2.0},"485":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":2,"docs":{"290":{"tf":1.0},"386":{"tf":1.0}}}}}},"t":{"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"130":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"326":{"tf":1.0},"440":{"tf":1.0},"457":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"x":{"df":12,"docs":{"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"297":{"tf":1.4142135623730951},"34":{"tf":1.0},"403":{"tf":1.4142135623730951},"407":{"tf":1.0},"429":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"393":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"134":{"tf":1.0},"297":{"tf":1.7320508075688772},"329":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"503":{"tf":1.0}}},"df":1,"docs":{"237":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"168":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.0},"295":{"tf":1.4142135623730951}}},"s":{"df":3,"docs":{"162":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"25":{"tf":1.0},"499":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"502":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"131":{"tf":1.0},"165":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":2.0},"50":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"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":{"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":1,"docs":{"328":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"128":{"tf":1.7320508075688772},"191":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0}}}}},"v":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"11":{"tf":1.0},"440":{"tf":1.0},"481":{"tf":2.23606797749979},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"197":{"tf":1.0},"211":{"tf":1.0},"237":{"tf":1.0},"270":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"383":{"tf":1.0},"459":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"11":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"362":{"tf":1.0},"500":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"135":{"tf":1.0},"197":{"tf":1.4142135623730951},"406":{"tf":1.0},"444":{"tf":1.0},"459":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}},"i":{"d":{"df":2,"docs":{"298":{"tf":1.0},"351":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"169":{"tf":1.0},"454":{"tf":1.4142135623730951},"457":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":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":15,"docs":{"133":{"tf":1.0},"194":{"tf":1.0},"208":{"tf":1.0},"251":{"tf":1.4142135623730951},"295":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":1.0},"360":{"tf":1.4142135623730951},"414":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"47":{"tf":3.0},"500":{"tf":1.0},"501":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"416":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"412":{"tf":2.23606797749979},"413":{"tf":1.4142135623730951},"414":{"tf":2.6457513110645907},"415":{"tf":1.0},"416":{"tf":2.0},"417":{"tf":1.4142135623730951},"418":{"tf":2.23606797749979},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":2.449489742783178},"424":{"tf":1.0},"43":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"235":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"325":{"tf":1.0},"497":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":51,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"133":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"487":{"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.4142135623730951},"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},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"235":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"225":{"tf":1.0},"360":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":24,"docs":{"10":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"143":{"tf":1.0},"159":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"310":{"tf":1.0},"344":{"tf":1.4142135623730951},"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"383":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"449":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"429":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"239":{"tf":1.4142135623730951},"279":{"tf":1.0},"296":{"tf":1.0},"31":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"243":{"tf":1.0},"3":{"tf":1.0},"344":{"tf":1.0},"454":{"tf":1.4142135623730951},"507":{"tf":1.0},"6":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"471":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"298":{"tf":1.0}},"t":{"df":4,"docs":{"299":{"tf":1.0},"356":{"tf":1.0},"37":{"tf":1.0},"440":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"115":{"tf":1.0},"163":{"tf":1.0},"254":{"tf":1.0},"343":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":12,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"280":{"tf":1.0},"351":{"tf":1.0},"403":{"tf":1.0},"440":{"tf":1.0},"72":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"403":{"tf":1.0},"482":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"209":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":3.1622776601683795},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"47":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":12,"docs":{"124":{"tf":1.0},"146":{"tf":1.0},"164":{"tf":1.4142135623730951},"189":{"tf":1.0},"282":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":1,"docs":{"351":{"tf":1.0}}}}},"u":{"df":8,"docs":{"22":{"tf":1.0},"222":{"tf":1.0},"280":{"tf":1.0},"310":{"tf":1.0},"340":{"tf":1.0},"368":{"tf":1.4142135623730951},"406":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"160":{"tf":3.4641016151377544},"161":{"tf":2.0},"162":{"tf":2.6457513110645907},"163":{"tf":2.8284271247461903},"164":{"tf":2.23606797749979},"165":{"tf":2.449489742783178},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"168":{"tf":3.7416573867739413},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":2.449489742783178},"173":{"tf":2.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"403":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"204":{"tf":1.0},"30":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"194":{"tf":1.7320508075688772},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"241":{"tf":1.0},"279":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":2.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"469":{"tf":1.0},"485":{"tf":1.0},"505":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"237":{"tf":1.0},"348":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}},"t":{"df":4,"docs":{"23":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"471":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"437":{"tf":1.0},"51":{"tf":1.0}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"146":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"292":{"tf":1.0},"425":{"tf":2.23606797749979},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"429":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}}}}},"n":{"c":{"df":2,"docs":{"147":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"343":{"tf":2.0},"347":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"189":{"tf":1.0},"194":{"tf":1.4142135623730951}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"384":{"tf":1.0},"385":{"tf":1.0},"389":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"131":{"tf":2.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}},"df":56,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":2.6457513110645907},"164":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":2.0},"189":{"tf":3.3166247903554},"190":{"tf":3.1622776601683795},"191":{"tf":4.123105625617661},"192":{"tf":1.7320508075688772},"193":{"tf":3.0},"194":{"tf":5.656854249492381},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"296":{"tf":2.449489742783178},"299":{"tf":1.0},"350":{"tf":2.0},"356":{"tf":2.0},"357":{"tf":2.23606797749979},"359":{"tf":2.23606797749979},"360":{"tf":1.0},"384":{"tf":2.23606797749979},"385":{"tf":1.7320508075688772},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":3.0},"407":{"tf":1.0},"447":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"131":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":2.0},"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"134":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"191":{"tf":1.0},"194":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"165":{"tf":1.0}}},"df":8,"docs":{"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"173":{"tf":1.0},"180":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"193":{"tf":2.449489742783178},"357":{"tf":1.0},"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":67,"docs":{"181":{"tf":2.6457513110645907},"182":{"tf":1.4142135623730951},"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":6.324555320336759},"190":{"tf":4.69041575982343},"191":{"tf":4.242640687119285},"192":{"tf":3.605551275463989},"193":{"tf":3.3166247903554},"194":{"tf":3.0},"195":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":2.8284271247461903},"200":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":2.23606797749979},"350":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"379":{"tf":2.23606797749979},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":3.605551275463989},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":2.0},"406":{"tf":2.6457513110645907},"407":{"tf":1.7320508075688772},"408":{"tf":1.4142135623730951},"409":{"tf":1.7320508075688772},"451":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"487":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"115":{"tf":1.0},"360":{"tf":1.0},"440":{"tf":1.0},"459":{"tf":1.0},"473":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"152":{"tf":1.0},"294":{"tf":1.0},"444":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"403":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"132":{"tf":1.0},"191":{"tf":1.4142135623730951},"217":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"12":{"tf":1.0},"173":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"314":{"tf":1.0},"329":{"tf":1.0},"347":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"450":{"tf":2.0},"451":{"tf":1.0},"454":{"tf":1.0},"466":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"343":{"tf":3.3166247903554},"347":{"tf":1.4142135623730951},"406":{"tf":1.0}},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"309":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"456":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"190":{"tf":1.0},"223":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"371":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"281":{"tf":1.0},"72":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"281":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"129":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"29":{"tf":1.0},"343":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"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":{}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"189":{"tf":2.6457513110645907},"191":{"tf":1.7320508075688772},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"217":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":8,"docs":{"133":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"174":{"tf":1.0},"25":{"tf":1.0},"392":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.6457513110645907},"292":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"192":{"tf":1.4142135623730951},"383":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"471":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}},"u":{"df":2,"docs":{"189":{"tf":1.0},"240":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"102":{"tf":1.0},"13":{"tf":1.7320508075688772},"22":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":67,"docs":{"1":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"194":{"tf":2.0},"2":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"280":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"314":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.4142135623730951},"391":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":2.449489742783178},"51":{"tf":1.0},"512":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":2.449489742783178},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"s":{"df":1,"docs":{"407":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":7,"docs":{"190":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"154":{"tf":1.0},"164":{"tf":1.0},"54":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"133":{"tf":1.0},"58":{"tf":1.0}}}}},"d":{"a":{"df":4,"docs":{"164":{"tf":1.7320508075688772},"166":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"400":{"tf":1.0}}},"df":4,"docs":{"310":{"tf":1.0},"312":{"tf":2.449489742783178},"313":{"tf":1.7320508075688772},"314":{"tf":1.0}}},"o":{"df":1,"docs":{"70":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"434":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"512":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":31,"docs":{"124":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":2.0},"132":{"tf":1.7320508075688772},"137":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"18":{"tf":1.0},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"239":{"tf":1.0},"266":{"tf":1.0},"297":{"tf":1.0},"32":{"tf":1.7320508075688772},"343":{"tf":4.795831523312719},"347":{"tf":1.0},"391":{"tf":1.0},"42":{"tf":2.23606797749979},"421":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"455":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.4142135623730951},"497":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":2.0},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"190":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":6,"docs":{"164":{"tf":1.4142135623730951},"184":{"tf":1.0},"193":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"483":{"tf":1.0}}}},"df":2,"docs":{"194":{"tf":1.4142135623730951},"357":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"194":{"tf":1.0},"343":{"tf":2.0},"386":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"269":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"d":{"df":8,"docs":{"131":{"tf":1.0},"151":{"tf":1.0},"251":{"tf":1.0},"269":{"tf":1.4142135623730951},"381":{"tf":1.0},"440":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"122":{"tf":1.0},"150":{"tf":1.0}}}},"o":{"d":{"df":14,"docs":{"102":{"tf":2.0},"108":{"tf":1.7320508075688772},"122":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"187":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"471":{"tf":1.0},"485":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"137":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":2.0},"199":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"340":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"162":{"tf":1.0},"189":{"tf":1.4142135623730951},"194":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.4142135623730951},"310":{"tf":1.0},"325":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"156":{"tf":1.4142135623730951},"241":{"tf":1.0},"262":{"tf":1.0},"369":{"tf":2.23606797749979},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"+":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"163":{"tf":1.4142135623730951}}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"163":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0}}}}}},"df":2,"docs":{"163":{"tf":2.0},"168":{"tf":1.0}},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"193":{"tf":1.7320508075688772},"208":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"32":{"tf":1.4142135623730951},"325":{"tf":1.0},"355":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"485":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"7":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"11":{"tf":1.0},"243":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"429":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"429":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"425":{"tf":2.23606797749979},"426":{"tf":3.3166247903554},"427":{"tf":2.449489742783178},"428":{"tf":1.0},"429":{"tf":5.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":2.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"186":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"458":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"170":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"360":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"450":{"tf":2.0},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.7320508075688772},"455":{"tf":2.0},"457":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"193":{"tf":1.4142135623730951},"297":{"tf":1.0},"39":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772}}}}},"t":{"df":4,"docs":{"190":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"131":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"27":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"0":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"1":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":2.0}}},"df":0,"docs":{}},"df":38,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"12":{"tf":1.7320508075688772},"13":{"tf":2.0},"14":{"tf":2.6457513110645907},"15":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"266":{"tf":1.0},"297":{"tf":1.7320508075688772},"3":{"tf":2.8284271247461903},"4":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.3166247903554},"455":{"tf":1.0},"457":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":2.8284271247461903},"7":{"tf":2.6457513110645907},"8":{"tf":2.449489742783178},"9":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":7,"docs":{"133":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"378":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"192":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"440":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"266":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"458":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":19,"docs":{"4":{"tf":1.0},"429":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"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},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"85":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"190":{"tf":1.0},"369":{"tf":1.7320508075688772},"406":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":26,"docs":{"107":{"tf":1.0},"131":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.7320508075688772},"292":{"tf":1.0},"301":{"tf":1.0},"343":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"505":{"tf":1.0},"72":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"467":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":2.0},"103":{"tf":1.0},"107":{"tf":1.0},"47":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":32,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"24":{"tf":1.0},"269":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"35":{"tf":1.0},"401":{"tf":2.0},"402":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"42":{"tf":1.0},"483":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":16,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"223":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"406":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"208":{"tf":1.0},"72":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.4142135623730951},"181":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.4142135623730951},"281":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"164":{"tf":1.0},"262":{"tf":1.0},"343":{"tf":1.0},"371":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"185":{"tf":1.0},"212":{"tf":1.0},"239":{"tf":1.4142135623730951},"269":{"tf":1.0},"340":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":2.0},"454":{"tf":1.0},"48":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":2,"docs":{"152":{"tf":1.0},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":44,"docs":{"120":{"tf":1.4142135623730951},"126":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"177":{"tf":1.7320508075688772},"187":{"tf":1.0},"205":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"251":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.7320508075688772},"291":{"tf":1.4142135623730951},"30":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"327":{"tf":1.0},"351":{"tf":1.0},"387":{"tf":1.0},"396":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"421":{"tf":1.0},"445":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"352":{"tf":1.0}}}},"c":{"df":6,"docs":{"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"t":{"df":22,"docs":{"233":{"tf":2.449489742783178},"234":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"495":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"502":{"tf":2.449489742783178},"503":{"tf":2.0},"505":{"tf":1.0},"507":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"369":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"104":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"164":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"297":{"tf":1.0},"345":{"tf":1.4142135623730951},"486":{"tf":1.0}},"i":{"df":3,"docs":{"262":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"107":{"tf":2.0},"111":{"tf":2.449489742783178},"113":{"tf":1.0},"47":{"tf":1.4142135623730951},"51":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":2.6457513110645907}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"m":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":50,"docs":{"1":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"198":{"tf":1.4142135623730951},"201":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"307":{"tf":1.4142135623730951},"324":{"tf":1.0},"337":{"tf":1.4142135623730951},"365":{"tf":1.0},"378":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.0},"400":{"tf":1.4142135623730951},"412":{"tf":1.0},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.4142135623730951},"448":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"512":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"171":{"tf":1.0},"280":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.0},"390":{"tf":1.0},"421":{"tf":1.4142135623730951},"483":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"149":{"tf":1.0},"156":{"tf":1.4142135623730951},"241":{"tf":1.0},"442":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"407":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"429":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"483":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"106":{"tf":1.0},"190":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"369":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}},"v":{"df":5,"docs":{"234":{"tf":1.0},"240":{"tf":1.0},"262":{"tf":1.0},"496":{"tf":1.0},"512":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"495":{"tf":1.0}},"i":{"df":22,"docs":{"234":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"403":{"tf":1.0},"407":{"tf":1.0},"495":{"tf":2.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"134":{"tf":1.0},"159":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"369":{"tf":1.0},"381":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.4142135623730951},"410":{"tf":1.0},"423":{"tf":1.4142135623730951},"437":{"tf":1.0},"447":{"tf":1.0},"464":{"tf":1.0},"5":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"241":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"191":{"tf":3.0},"262":{"tf":1.0},"266":{"tf":1.0},"294":{"tf":1.0},"447":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"132":{"tf":1.0},"134":{"tf":1.7320508075688772},"143":{"tf":2.6457513110645907},"451":{"tf":1.0},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"290":{"tf":1.0},"35":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"191":{"tf":1.0},"234":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"403":{"tf":1.0},"407":{"tf":1.0},"52":{"tf":1.0}}},"s":{"df":2,"docs":{"3":{"tf":1.0},"5":{"tf":1.0}}},"t":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"190":{"tf":1.0},"35":{"tf":1.0},"367":{"tf":1.0},"512":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"187":{"tf":1.0},"404":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"189":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951}}}},"o":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"410":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"472":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"34":{"tf":1.0}}},"df":12,"docs":{"109":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"253":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"343":{"tf":1.0},"402":{"tf":1.0},"45":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":9,"docs":{"162":{"tf":1.0},"191":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"262":{"tf":1.0},"340":{"tf":1.0},"391":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"135":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"343":{"tf":2.6457513110645907},"369":{"tf":2.0},"370":{"tf":1.0},"406":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"466":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"511":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"235":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"194":{"tf":1.0},"236":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"485":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"110":{"tf":1.0},"122":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"293":{"tf":1.0},"315":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.4142135623730951},"507":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":36,"docs":{"11":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.7320508075688772},"207":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"3":{"tf":1.7320508075688772},"313":{"tf":1.0},"316":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"8":{"tf":2.8284271247461903},"9":{"tf":2.8284271247461903}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"193":{"tf":1.0},"360":{"tf":1.0}},"i":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":8,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"241":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"189":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"293":{"tf":1.0},"501":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"357":{"tf":1.4142135623730951},"406":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":59,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.7320508075688772},"160":{"tf":1.0},"173":{"tf":1.4142135623730951},"181":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"222":{"tf":1.7320508075688772},"23":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.4142135623730951},"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"260":{"tf":1.0},"269":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.4142135623730951},"288":{"tf":1.0},"299":{"tf":1.4142135623730951},"308":{"tf":1.0},"316":{"tf":1.4142135623730951},"324":{"tf":1.0},"329":{"tf":1.4142135623730951},"338":{"tf":1.0},"345":{"tf":1.4142135623730951},"349":{"tf":1.0},"361":{"tf":1.4142135623730951},"365":{"tf":1.0},"370":{"tf":1.4142135623730951},"384":{"tf":1.0},"392":{"tf":1.4142135623730951},"401":{"tf":1.0},"409":{"tf":1.4142135623730951},"412":{"tf":1.0},"417":{"tf":1.7320508075688772},"425":{"tf":1.0},"430":{"tf":1.7320508075688772},"448":{"tf":1.0},"458":{"tf":1.4142135623730951},"467":{"tf":1.0},"472":{"tf":1.4142135623730951},"481":{"tf":1.0},"486":{"tf":1.4142135623730951},"495":{"tf":1.0},"504":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"437":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"297":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}},"n":{"df":1,"docs":{"402":{"tf":1.0}}},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"132":{"tf":1.0},"298":{"tf":1.0},"307":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"113":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"241":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"367":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"190":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":2.23606797749979},"413":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"424":{"tf":1.0},"454":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"296":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":2.0},"407":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"402":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":24,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"3":{"tf":1.0},"349":{"tf":2.23606797749979},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"407":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":9,"docs":{"163":{"tf":1.4142135623730951},"164":{"tf":2.0},"189":{"tf":1.0},"220":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"303":{"tf":1.0},"407":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0}}}},"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":42,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":2.6457513110645907},"207":{"tf":1.0},"217":{"tf":1.7320508075688772},"24":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"310":{"tf":1.0},"325":{"tf":1.7320508075688772},"326":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"42":{"tf":1.0},"427":{"tf":1.0},"454":{"tf":1.0},"47":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"48":{"tf":2.0},"485":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"163":{"tf":1.0},"200":{"tf":1.0},"371":{"tf":1.0},"406":{"tf":1.4142135623730951},"483":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"162":{"tf":1.0}},"i":{"df":5,"docs":{"132":{"tf":1.0},"143":{"tf":1.4142135623730951},"262":{"tf":1.0},"473":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"159":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"407":{"tf":1.0},"490":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"239":{"tf":1.0},"280":{"tf":1.0},"371":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"497":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"505":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":12,"docs":{"14":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"229":{"tf":1.0},"3":{"tf":1.0},"381":{"tf":1.0},"409":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":26,"docs":{"118":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"166":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"434":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"48":{"tf":1.0},"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":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.0}},"g":{"df":1,"docs":{"193":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"409":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"168":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":2.8284271247461903},"193":{"tf":1.0},"194":{"tf":1.0},"270":{"tf":1.0},"383":{"tf":1.4142135623730951},"403":{"tf":1.0},"450":{"tf":1.4142135623730951},"47":{"tf":1.0},"485":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"193":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":15,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"18":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"296":{"tf":1.0},"340":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"427":{"tf":1.0},"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"164":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"217":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"343":{"tf":1.0},"403":{"tf":1.0},"47":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"58":{"tf":1.0}}}}}}},"m":{"b":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"47":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"297":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"163":{"tf":1.0},"407":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":4,"docs":{"43":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"429":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"194":{"tf":2.0},"343":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"122":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"139":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"161":{"tf":1.0},"164":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"179":{"tf":1.0},"189":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.4142135623730951},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"500":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"133":{"tf":1.4142135623730951},"190":{"tf":1.0},"202":{"tf":1.0},"477":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":19,"docs":{"102":{"tf":2.0},"104":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":2.0},"33":{"tf":1.7320508075688772},"343":{"tf":2.0},"47":{"tf":1.4142135623730951},"471":{"tf":2.23606797749979},"51":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"277":{"tf":2.449489742783178},"278":{"tf":2.0},"279":{"tf":2.0},"280":{"tf":2.23606797749979},"281":{"tf":2.6457513110645907},"282":{"tf":2.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"287":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"281":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"24":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"3":{"tf":1.0},"369":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"106":{"tf":1.4142135623730951},"128":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":2.6457513110645907},"193":{"tf":2.449489742783178},"194":{"tf":4.898979485566356},"326":{"tf":1.0},"358":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"427":{"tf":1.0},"476":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"296":{"tf":1.0},"383":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"238":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":18,"docs":{"110":{"tf":1.0},"269":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"391":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"407":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"173":{"tf":1.0},"187":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.0},"404":{"tf":1.0},"60":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.7320508075688772},"19":{"tf":1.0},"22":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"129":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"218":{"tf":1.0},"247":{"tf":1.0},"427":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"511":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":48,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.7320508075688772},"223":{"tf":1.0},"225":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"397":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"456":{"tf":1.7320508075688772},"459":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":15,"docs":{"125":{"tf":1.0},"191":{"tf":2.0},"241":{"tf":1.0},"247":{"tf":1.0},"298":{"tf":1.4142135623730951},"343":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"406":{"tf":1.0},"429":{"tf":1.0},"455":{"tf":1.4142135623730951},"486":{"tf":1.0},"511":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"415":{"tf":1.0},"98":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.4142135623730951},"2":{"tf":1.0},"241":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"391":{"tf":1.4142135623730951},"408":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"102":{"tf":1.0},"104":{"tf":2.6457513110645907},"132":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":1.0},"369":{"tf":1.0},"385":{"tf":1.0},"389":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"149":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"161":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":3,"docs":{"164":{"tf":1.0},"189":{"tf":1.0},"202":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"'":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":4.123105625617661},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":23,"docs":{"132":{"tf":1.0},"191":{"tf":3.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"240":{"tf":1.0},"325":{"tf":1.0},"343":{"tf":2.0},"347":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"407":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"191":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"369":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"486":{"tf":1.0}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"294":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":2,"docs":{"297":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"51":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"51":{"tf":2.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"123":{"tf":1.0},"128":{"tf":2.23606797749979},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"137":{"tf":1.0}}}}}},"c":{"2":{"0":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"7":{"2":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":78,"docs":{"1":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"181":{"tf":1.0},"19":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"201":{"tf":1.0},"210":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"308":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"396":{"tf":1.7320508075688772},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"472":{"tf":1.0},"474":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"488":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"133":{"tf":1.0},"150":{"tf":1.0},"343":{"tf":4.242640687119285},"487":{"tf":1.0},"497":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"407":{"tf":1.0},"450":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"243":{"tf":1.0},"294":{"tf":1.0},"34":{"tf":1.0},"357":{"tf":1.0},"383":{"tf":1.0},"433":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"169":{"tf":1.0},"18":{"tf":1.0},"293":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"406":{"tf":1.0},"408":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"t":{"c":{"df":5,"docs":{"235":{"tf":1.0},"298":{"tf":1.0},"369":{"tf":1.0},"423":{"tf":1.0},"434":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"164":{"tf":1.0}}},"df":5,"docs":{"164":{"tf":1.4142135623730951},"166":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"66":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"353":{"tf":1.0}}}}},"n":{"df":14,"docs":{"130":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"307":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.6457513110645907},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.4142135623730951},"48":{"tf":1.0},"491":{"tf":1.4142135623730951},"500":{"tf":1.0},"512":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"125":{"tf":1.0}}}},"t":{"df":4,"docs":{"143":{"tf":1.0},"296":{"tf":1.0},"429":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951}},"u":{"df":5,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"217":{"tf":1.4142135623730951},"387":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"494":{"tf":1.0},"499":{"tf":1.0}}}}}}},"m":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":21,"docs":{"160":{"tf":2.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}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":2.23606797749979},"169":{"tf":2.449489742783178},"171":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"295":{"tf":1.0},"54":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"351":{"tf":1.0},"367":{"tf":1.0},"400":{"tf":1.0},"440":{"tf":1.0},"47":{"tf":1.0},"500":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":36,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"220":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"269":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.4142135623730951},"349":{"tf":1.0},"360":{"tf":2.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"406":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"163":{"tf":1.0},"191":{"tf":1.0},"32":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"367":{"tf":1.7320508075688772},"414":{"tf":1.0},"499":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"343":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"290":{"tf":1.4142135623730951},"343":{"tf":3.7416573867739413},"386":{"tf":1.7320508075688772},"393":{"tf":1.0},"398":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"156":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"403":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":47,"docs":{"150":{"tf":1.7320508075688772},"164":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"227":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"365":{"tf":1.0},"367":{"tf":2.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"376":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.7320508075688772},"450":{"tf":1.0},"483":{"tf":1.0},"505":{"tf":1.0},"512":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"328":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"395":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"489":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"182":{"tf":1.0},"186":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"192":{"tf":1.0},"217":{"tf":1.0},"262":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"114":{"tf":1.0},"163":{"tf":1.0},"19":{"tf":1.0},"272":{"tf":1.0},"293":{"tf":1.0},"397":{"tf":1.0},"429":{"tf":1.0},"70":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"408":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"189":{"tf":1.0},"191":{"tf":1.0},"268":{"tf":1.0}},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"190":{"tf":1.0},"310":{"tf":1.0},"328":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"n":{"df":67,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"123":{"tf":1.0},"127":{"tf":1.4142135623730951},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"160":{"tf":1.0},"167":{"tf":1.4142135623730951},"181":{"tf":1.0},"188":{"tf":1.4142135623730951},"201":{"tf":1.0},"206":{"tf":1.4142135623730951},"215":{"tf":1.0},"220":{"tf":1.4142135623730951},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.4142135623730951},"288":{"tf":1.0},"292":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"338":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"365":{"tf":1.0},"369":{"tf":1.4142135623730951},"379":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.0},"388":{"tf":1.4142135623730951},"401":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.4142135623730951},"425":{"tf":1.0},"429":{"tf":1.4142135623730951},"438":{"tf":1.0},"442":{"tf":1.4142135623730951},"448":{"tf":1.0},"453":{"tf":1.4142135623730951},"467":{"tf":1.0},"471":{"tf":1.4142135623730951},"481":{"tf":1.0},"485":{"tf":1.4142135623730951},"495":{"tf":1.0},"499":{"tf":1.4142135623730951},"505":{"tf":1.0},"6":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"133":{"tf":1.0},"208":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"32":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"21":{"tf":1.0},"291":{"tf":1.0},"41":{"tf":1.0},"450":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":1,"docs":{"409":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"12":{"tf":1.0},"357":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"146":{"tf":1.0},"149":{"tf":3.0},"150":{"tf":1.4142135623730951},"471":{"tf":1.0}}}},"s":{"df":13,"docs":{"164":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"301":{"tf":1.0},"344":{"tf":1.0},"403":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"454":{"tf":1.0},"476":{"tf":1.0},"48":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"343":{"tf":1.7320508075688772},"410":{"tf":1.0},"415":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"340":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"*":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"4":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"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":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"340":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"347":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"347":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"164":{"tf":1.0},"234":{"tf":1.0},"408":{"tf":1.0},"496":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"107":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":1.0},"169":{"tf":1.0},"274":{"tf":1.0},"396":{"tf":1.0},"410":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"131":{"tf":1.0},"146":{"tf":1.0},"197":{"tf":1.0},"281":{"tf":1.0},"383":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"328":{"tf":1.0}}}},"df":8,"docs":{"122":{"tf":1.0},"235":{"tf":1.4142135623730951},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"433":{"tf":1.0},"468":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"164":{"tf":1.0},"168":{"tf":1.0},"359":{"tf":1.4142135623730951},"408":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.7320508075688772},"133":{"tf":1.0},"166":{"tf":1.0},"389":{"tf":1.4142135623730951},"429":{"tf":1.0},"440":{"tf":1.7320508075688772},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.4641016151377544},"85":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":2.0}},"i":{"c":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"389":{"tf":1.7320508075688772},"399":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"f":{"+":{"1":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"217":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"186":{"tf":1.4142135623730951},"191":{"tf":1.0},"27":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"217":{"tf":1.0},"297":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":12,"docs":{"193":{"tf":2.6457513110645907},"207":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"477":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":3.1622776601683795},"98":{"tf":1.0}}}}},"r":{"df":4,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"402":{"tf":1.4142135623730951},"407":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"129":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"130":{"tf":1.4142135623730951},"193":{"tf":1.0},"355":{"tf":1.0}}},"s":{"df":3,"docs":{"104":{"tf":1.0},"369":{"tf":2.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"163":{"tf":1.0},"247":{"tf":1.0},"472":{"tf":1.0},"511":{"tf":1.0},"98":{"tf":1.0}}}},"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":4,"docs":{"164":{"tf":1.0},"185":{"tf":1.0},"296":{"tf":1.0},"383":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"186":{"tf":1.0},"296":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"292":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"347":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"125":{"tf":1.0},"391":{"tf":1.0}}}}}}},"df":1,"docs":{"357":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"411":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"240":{"tf":1.0},"370":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":2.0},"139":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"196":{"tf":1.0},"298":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"406":{"tf":1.0},"487":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"192":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.4142135623730951},"253":{"tf":1.0},"427":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}},"df":2,"docs":{"383":{"tf":1.0},"427":{"tf":1.0}},"l":{"df":4,"docs":{"431":{"tf":1.0},"437":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"162":{"tf":1.0},"164":{"tf":1.0},"205":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"0":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"9":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"4":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"df":1,"docs":{"251":{"tf":1.0}}},"df":37,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":2.0},"254":{"tf":2.0},"258":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":2.23606797749979},"309":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"404":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"84":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"132":{"tf":1.0},"383":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"14":{"tf":1.0},"243":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"427":{"tf":1.0},"486":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"104":{"tf":1.4142135623730951},"119":{"tf":1.0},"132":{"tf":1.0},"191":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951},"207":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"32":{"tf":1.0},"369":{"tf":2.0},"48":{"tf":1.0},"501":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"387":{"tf":1.0}}},"l":{"df":4,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.4142135623730951},"48":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"190":{"tf":2.0},"191":{"tf":3.605551275463989},"197":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"48":{"tf":1.4142135623730951},"500":{"tf":2.8284271247461903},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"282":{"tf":1.0}},"i":{"df":3,"docs":{"13":{"tf":1.0},"3":{"tf":1.0},"450":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":16,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"512":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"133":{"tf":1.0},"403":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"343":{"tf":1.0},"407":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}},"t":{"df":2,"docs":{"185":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":28,"docs":{"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"168":{"tf":1.0},"194":{"tf":2.23606797749979},"208":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"297":{"tf":1.4142135623730951},"343":{"tf":1.0},"391":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":2.449489742783178},"471":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"156":{"tf":1.0},"190":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"343":{"tf":2.449489742783178},"50":{"tf":1.0},"99":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"221":{"tf":1.0},"35":{"tf":1.0}}}},"x":{"df":10,"docs":{"131":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"220":{"tf":2.0},"32":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"500":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"369":{"tf":1.0},"485":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"328":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"423":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"193":{"tf":1.0},"295":{"tf":1.0},"403":{"tf":1.0},"416":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"296":{"tf":1.0}},"p":{"df":1,"docs":{"357":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"383":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":10,"docs":{"131":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"442":{"tf":1.0},"45":{"tf":2.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"312":{"tf":1.0},"65":{"tf":1.0}},"s":{"df":2,"docs":{"26":{"tf":1.0},"458":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":40,"docs":{"111":{"tf":1.0},"12":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"162":{"tf":1.0},"169":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"253":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"33":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.0},"383":{"tf":1.4142135623730951},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951},"494":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"389":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"185":{"tf":1.0},"328":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":2.449489742783178},"406":{"tf":1.0},"83":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"430":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"239":{"tf":1.4142135623730951},"240":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"143":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"58":{"tf":2.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}},"t":{"df":14,"docs":{"109":{"tf":1.0},"189":{"tf":1.0},"239":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}}}},"df":16,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"367":{"tf":1.0},"455":{"tf":1.0},"483":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"407":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"193":{"tf":1.0},"48":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"14":{"tf":1.0},"229":{"tf":1.0},"258":{"tf":1.0},"364":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"326":{"tf":1.0},"410":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"197":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0},"61":{"tf":1.0}}}},"df":10,"docs":{"238":{"tf":1.0},"240":{"tf":1.0},"32":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"45":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"501":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"207":{"tf":1.4142135623730951}}}}}},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"164":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"189":{"tf":1.4142135623730951},"401":{"tf":1.0},"403":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":4,"docs":{"164":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"83":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":7,"docs":{"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"266":{"tf":1.0},"297":{"tf":1.0},"340":{"tf":1.7320508075688772},"437":{"tf":1.0},"489":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"427":{"tf":1.0},"454":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"383":{"tf":1.0},"454":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"190":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"146":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"269":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0}}}}},"l":{"df":15,"docs":{"104":{"tf":1.0},"191":{"tf":1.7320508075688772},"204":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"243":{"tf":2.23606797749979},"310":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"33":{"tf":1.0},"367":{"tf":2.23606797749979},"406":{"tf":1.0},"507":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":5,"docs":{"122":{"tf":1.0},"146":{"tf":1.0},"190":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"149":{"tf":3.0},"343":{"tf":7.0},"344":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},"df":76,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":2.449489742783178},"123":{"tf":1.0},"131":{"tf":2.8284271247461903},"133":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"149":{"tf":2.23606797749979},"150":{"tf":1.7320508075688772},"164":{"tf":2.0},"181":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":2.0},"193":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.4142135623730951},"257":{"tf":1.0},"288":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":2.449489742783178},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"3":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"34":{"tf":1.7320508075688772},"340":{"tf":2.0},"343":{"tf":7.3484692283495345},"344":{"tf":2.23606797749979},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":2.0},"356":{"tf":1.4142135623730951},"357":{"tf":2.449489742783178},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"389":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":2.0},"429":{"tf":1.0},"43":{"tf":2.449489742783178},"438":{"tf":2.23606797749979},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":2.449489742783178},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.7320508075688772},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"468":{"tf":1.0},"471":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.4142135623730951},"6":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":2.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"247":{"tf":1.0},"511":{"tf":1.0}}}}}}},"df":9,"docs":{"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"407":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"189":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.0},"383":{"tf":1.0},"401":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.4142135623730951},"83":{"tf":1.0},"9":{"tf":1.7320508075688772},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"186":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"340":{"tf":1.0},"505":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":70,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.7320508075688772},"144":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"168":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.4142135623730951},"201":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"240":{"tf":1.0},"248":{"tf":1.7320508075688772},"260":{"tf":1.0},"276":{"tf":2.0},"277":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.4142135623730951},"316":{"tf":1.0},"324":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":1.0},"348":{"tf":1.7320508075688772},"349":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.4142135623730951},"365":{"tf":1.0},"378":{"tf":1.4142135623730951},"384":{"tf":1.0},"396":{"tf":1.0},"400":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"412":{"tf":1.0},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"437":{"tf":1.4142135623730951},"448":{"tf":1.0},"452":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"512":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"g":{"a":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":2,"docs":{"165":{"tf":1.0},"168":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"369":{"tf":1.0},"489":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"216":{"tf":1.0},"407":{"tf":1.0}}}},"p":{"df":2,"docs":{"500":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"181":{"tf":1.0},"201":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"437":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"379":{"tf":1.0},"401":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":54,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"125":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.4142135623730951},"253":{"tf":1.0},"257":{"tf":1.7320508075688772},"262":{"tf":1.0},"276":{"tf":1.0},"290":{"tf":1.0},"30":{"tf":1.0},"312":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"380":{"tf":1.0},"383":{"tf":1.0},"42":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"467":{"tf":2.0},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":2.0},"480":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":10,"docs":{"235":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"269":{"tf":1.7320508075688772},"293":{"tf":1.4142135623730951},"297":{"tf":1.0},"47":{"tf":2.8284271247461903},"497":{"tf":1.4142135623730951},"500":{"tf":2.0},"502":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"239":{"tf":1.0},"240":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"454":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"134":{"tf":1.0},"143":{"tf":2.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"457":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"b":{"df":3,"docs":{"343":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"235":{"tf":1.0},"253":{"tf":1.0},"466":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"298":{"tf":1.0},"328":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.0},"367":{"tf":1.0},"497":{"tf":1.0},"70":{"tf":1.0}},"n":{"df":30,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"132":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.7320508075688772},"207":{"tf":1.0},"217":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":2.8284271247461903},"347":{"tf":1.4142135623730951},"352":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"485":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"149":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"194":{"tf":1.0},"261":{"tf":1.0},"310":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0}}}},"df":10,"docs":{"132":{"tf":1.0},"168":{"tf":1.0},"200":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"340":{"tf":1.0},"437":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"485":{"tf":1.0}},"e":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"o":{"d":{"df":9,"docs":{"217":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"292":{"tf":1.0},"340":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.0},"511":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"325":{"tf":1.0},"500":{"tf":1.0}}}}}},"v":{"1":{"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"350":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"168":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.0},"223":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"297":{"tf":3.0},"298":{"tf":2.23606797749979},"306":{"tf":1.0},"307":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"451":{"tf":1.0}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"a":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"133":{"tf":1.0},"406":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"437":{"tf":1.4142135623730951},"459":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"191":{"tf":1.0},"207":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"427":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":13,"docs":{"129":{"tf":1.0},"197":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"290":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"298":{"tf":1.0},"367":{"tf":1.0}}}},"w":{"df":2,"docs":{"164":{"tf":1.0},"352":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"173":{"tf":1.0},"350":{"tf":1.0},"360":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"189":{"tf":1.0},"217":{"tf":1.0},"290":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":3,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"230":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"410":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"194":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":2,"docs":{"217":{"tf":1.0},"297":{"tf":1.0}}},"v":{"df":1,"docs":{"137":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"133":{"tf":1.0},"282":{"tf":1.0},"314":{"tf":1.0}},"l":{"df":10,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"297":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"373":{"tf":1.0},"407":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"163":{"tf":1.0},"386":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"440":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"505":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}},"i":{"df":1,"docs":{"401":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"502":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"502":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"132":{"tf":1.0},"143":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"33":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":2.23606797749979},"44":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"47":{"tf":1.0},"501":{"tf":1.4142135623730951},"72":{"tf":2.0},"95":{"tf":1.0}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":22,"docs":{"132":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"370":{"tf":1.0},"407":{"tf":1.0},"429":{"tf":1.4142135623730951},"456":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"495":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"266":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"495":{"tf":1.0},"500":{"tf":2.23606797749979},"503":{"tf":2.0},"512":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"343":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"343":{"tf":2.23606797749979},"496":{"tf":1.0},"497":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":16,"docs":{"149":{"tf":1.0},"340":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"487":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"238":{"tf":1.0},"346":{"tf":1.0},"501":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}},"l":{"d":{"df":3,"docs":{"192":{"tf":1.0},"297":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":11,"docs":{"146":{"tf":1.0},"192":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"410":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":2.0}}}}}},"n":{"c":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"143":{"tf":1.0}}},"df":25,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.7320508075688772},"397":{"tf":1.0},"400":{"tf":1.0},"403":{"tf":1.0},"409":{"tf":1.0},"417":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"455":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"326":{"tf":1.0},"328":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":12,"docs":{"164":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"310":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.0},"41":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"472":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"355":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"458":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"220":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"217":{"tf":1.0},"409":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"434":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"397":{"tf":1.0},"512":{"tf":1.0}},"i":{"df":5,"docs":{"164":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.0},"502":{"tf":1.0},"512":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"130":{"tf":1.0},"150":{"tf":1.7320508075688772},"166":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"125":{"tf":1.0},"166":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"298":{"tf":1.0},"353":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.4142135623730951},"404":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"163":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"424":{"tf":1.0},"437":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}},"df":29,"docs":{"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"150":{"tf":1.0},"185":{"tf":1.0},"338":{"tf":2.6457513110645907},"339":{"tf":1.7320508075688772},"340":{"tf":3.1622776601683795},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":5.0990195135927845},"344":{"tf":2.449489742783178},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.7320508075688772},"369":{"tf":1.0},"438":{"tf":2.23606797749979},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":2.0},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.7320508075688772},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"243":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":2.23606797749979},"416":{"tf":2.449489742783178},"423":{"tf":2.0},"507":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"343":{"tf":1.7320508075688772}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"3":{"7":{"7":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"4":{"7":{"5":{"8":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"8":{"5":{"df":2,"docs":{"274":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"3":{"9":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"133":{"tf":1.0},"464":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"494":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"3":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"0":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"368":{"tf":1.0}}},"6":{"df":1,"docs":{"343":{"tf":1.0}}},"7":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"/":{"#":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"9":{"1":{"%":{"a":{"0":{"df":1,"docs":{"485":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"6":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"q":{"?":{"df":0,"docs":{},"t":{"=":{"5":{"2":{"6":{"df":1,"docs":{"437":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":47,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":2.23606797749979},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"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},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"396":{"tf":1.0},"409":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"i":{"'":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"247":{"tf":1.0},"511":{"tf":1.0}}}},".":{"df":8,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"343":{"tf":1.4142135623730951},"371":{"tf":1.0}}}},"3":{"2":{"df":2,"docs":{"149":{"tf":2.8284271247461903},"343":{"tf":9.273618495495704}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"343":{"tf":8.246211251235321},"344":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":10,"docs":{"104":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"343":{"tf":1.4142135623730951},"369":{"tf":1.0},"454":{"tf":1.4142135623730951},"468":{"tf":1.0},"472":{"tf":1.0}},"e":{"a":{"df":5,"docs":{"13":{"tf":1.0},"340":{"tf":1.0},"410":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0}},"l":{"df":8,"docs":{"185":{"tf":1.0},"193":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"24":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"297":{"tf":2.6457513110645907},"298":{"tf":1.0},"307":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.1622776601683795},"39":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":16,"docs":{"102":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"194":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.0},"286":{"tf":1.0},"343":{"tf":2.23606797749979},"42":{"tf":1.0},"431":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"111":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"132":{"tf":1.0},"151":{"tf":1.0},"369":{"tf":1.0},"503":{"tf":1.0}}}}}},"i":{"df":3,"docs":{"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0}},"i":{"df":3,"docs":{"312":{"tf":2.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"407":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"359":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"195":{"tf":1.0}}}}},"o":{"df":1,"docs":{"94":{"tf":1.0}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":23,"docs":{"100":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.7320508075688772},"154":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"347":{"tf":1.4142135623730951},"408":{"tf":1.0},"440":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"459":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":89,"docs":{"0":{"tf":1.0},"100":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"295":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"42":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"430":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.4142135623730951},"500":{"tf":2.23606797749979},"501":{"tf":2.449489742783178},"502":{"tf":1.7320508075688772},"503":{"tf":2.0},"505":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"441":{"tf":1.0},"442":{"tf":1.0},"470":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}}}}},"i":{"c":{"df":2,"docs":{"14":{"tf":1.0},"373":{"tf":1.0}}},"df":2,"docs":{"184":{"tf":1.0},"47":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"152":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"453":{"tf":1.0}}}}}}},"df":22,"docs":{"102":{"tf":1.0},"114":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":2.0},"155":{"tf":1.0},"180":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"303":{"tf":1.0},"369":{"tf":1.4142135623730951},"381":{"tf":1.0},"383":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"47":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"168":{"tf":1.0}},"s":{"df":4,"docs":{"130":{"tf":1.0},"185":{"tf":1.0},"326":{"tf":1.0},"370":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":52,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":2.23606797749979},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"365":{"tf":2.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"58":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"407":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"247":{"tf":1.0},"511":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"220":{"tf":1.0},"310":{"tf":1.0},"383":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"192":{"tf":1.0},"406":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":2.0},"163":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"191":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.4142135623730951},"230":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"268":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"426":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.4142135623730951},"500":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":2.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":6,"docs":{"111":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"309":{"tf":1.0},"383":{"tf":1.7320508075688772}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"383":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":43,"docs":{"113":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.0},"243":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.7320508075688772},"383":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"409":{"tf":1.0},"414":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"454":{"tf":1.0},"466":{"tf":1.4142135623730951},"507":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"194":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.7320508075688772},"343":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"143":{"tf":1.0},"163":{"tf":1.0},"322":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"192":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.4142135623730951},"47":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":3.605551275463989},"143":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"207":{"tf":1.0},"434":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"i":{"c":{"df":17,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"240":{"tf":1.0},"254":{"tf":1.7320508075688772},"326":{"tf":1.0},"343":{"tf":3.605551275463989},"369":{"tf":1.0},"383":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":14,"docs":{"104":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.7320508075688772},"2":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"328":{"tf":1.0},"369":{"tf":1.0},"407":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}},"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":2,"docs":{"340":{"tf":1.0},"409":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":1.4142135623730951},"369":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"220":{"tf":1.0},"383":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"383":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"381":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":3,"docs":{"104":{"tf":1.0},"287":{"tf":1.0},"297":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"143":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.0},"194":{"tf":1.7320508075688772},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"297":{"tf":1.0},"456":{"tf":1.0},"497":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"200":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"347":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":2.0},"392":{"tf":1.0},"398":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"389":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":2.0},"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.0},"455":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"485":{"tf":1.0},"66":{"tf":2.0}}}}},"k":{"!":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"160":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"165":{"tf":2.6457513110645907},"166":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"185":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"33":{"tf":1.0},"343":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":2.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}},"i":{"d":{"df":19,"docs":{"144":{"tf":2.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.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"66":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"150":{"tf":1.4142135623730951},"257":{"tf":1.0},"26":{"tf":1.0},"406":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"181":{"tf":1.0},"189":{"tf":4.0},"190":{"tf":2.0},"191":{"tf":2.449489742783178},"192":{"tf":2.6457513110645907},"193":{"tf":2.8284271247461903},"194":{"tf":2.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"194":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"194":{"tf":2.449489742783178}}}}}}}},"t":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.0},"240":{"tf":1.0},"313":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.3166247903554},"383":{"tf":1.0},"399":{"tf":1.0},"407":{"tf":1.4142135623730951},"454":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"189":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"294":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"383":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"442":{"tf":1.0}},"r":{"df":12,"docs":{"149":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"27":{"tf":1.0},"300":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"n":{"d":{"df":6,"docs":{"193":{"tf":1.4142135623730951},"25":{"tf":1.0},"276":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"128":{"tf":1.0},"41":{"tf":1.0}}},"t":{"df":1,"docs":{"407":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"164":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"401":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0},"415":{"tf":1.7320508075688772},"498":{"tf":1.0},"5":{"tf":1.0}}}}},"f":{"a":{"c":{"df":33,"docs":{"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":2.23606797749979},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":2.6457513110645907},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"344":{"tf":1.0},"396":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.0},"476":{"tf":1.0},"64":{"tf":2.449489742783178},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"391":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}},"l":{"a":{"c":{"df":3,"docs":{"190":{"tf":2.0},"191":{"tf":1.0},"194":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"190":{"tf":2.0},"191":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.7320508075688772},"193":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"345":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"32":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"185":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"483":{"tf":1.0},"96":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"186":{"tf":1.0},"454":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":42,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"329":{"tf":1.4142135623730951},"34":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":2.0},"383":{"tf":1.0},"385":{"tf":1.4142135623730951},"403":{"tf":2.0},"438":{"tf":2.0},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"477":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"t":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"250":{"tf":1.0},"293":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"262":{"tf":1.4142135623730951},"269":{"tf":1.0},"343":{"tf":2.23606797749979},"369":{"tf":1.4142135623730951},"400":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"357":{"tf":1.0},"383":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"185":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"390":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":11,"docs":{"122":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"401":{"tf":1.0},"449":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"217":{"tf":1.0},"220":{"tf":2.449489742783178},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":9,"docs":{"244":{"tf":1.0},"245":{"tf":1.0},"330":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"374":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"241":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"457":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"295":{"tf":1.0},"337":{"tf":1.0},"490":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}},"df":0,"docs":{}}},"df":22,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"262":{"tf":1.4142135623730951},"266":{"tf":1.0},"297":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"383":{"tf":1.0},"398":{"tf":1.0},"429":{"tf":1.0},"447":{"tf":1.0},"466":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"t":{"'":{"df":16,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"297":{"tf":1.0},"370":{"tf":1.4142135623730951},"383":{"tf":1.7320508075688772},"403":{"tf":1.0},"41":{"tf":1.0},"453":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":11,"docs":{"191":{"tf":1.7320508075688772},"209":{"tf":1.0},"3":{"tf":1.0},"326":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"366":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":2.0},"42":{"tf":2.449489742783178},"440":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"r":{"df":3,"docs":{"185":{"tf":1.0},"243":{"tf":1.0},"507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":16,"docs":{"184":{"tf":1.0},"208":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"407":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"df":3,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0}}},"x":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}}},"z":{"df":1,"docs":{"370":{"tf":1.0}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"278":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"230":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"215":{"tf":1.0},"249":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"220":{"tf":1.0},"253":{"tf":1.0},"281":{"tf":1.0},"314":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"n":{"a":{"df":2,"docs":{"379":{"tf":1.0},"401":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"121":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"512":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"193":{"tf":1.4142135623730951},"369":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"201":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"349":{"tf":1.0},"384":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"150":{"tf":1.0},"500":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}}},"k":{"+":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"238":{"tf":1.7320508075688772},"241":{"tf":1.0},"243":{"tf":1.0},"501":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":3,"docs":{"129":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"132":{"tf":1.0},"152":{"tf":1.0},"194":{"tf":1.0},"281":{"tf":1.0},"369":{"tf":1.0},"445":{"tf":1.4142135623730951},"499":{"tf":1.0},"51":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"143":{"tf":1.0},"176":{"tf":1.0},"241":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"343":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"343":{"tf":3.605551275463989}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":32,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.7320508075688772},"238":{"tf":2.449489742783178},"241":{"tf":2.0},"243":{"tf":1.4142135623730951},"262":{"tf":1.0},"343":{"tf":5.916079783099616},"367":{"tf":2.8284271247461903},"369":{"tf":4.47213595499958},"371":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":2.0},"472":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":2.6457513110645907},"483":{"tf":1.7320508075688772},"501":{"tf":2.8284271247461903},"505":{"tf":2.0},"507":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"53":{"tf":2.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"230":{"tf":1.0}}}},"b":{"df":3,"docs":{"129":{"tf":1.4142135623730951},"243":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"149":{"tf":1.0},"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"132":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"179":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"132":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"206":{"tf":1.0},"241":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"343":{"tf":2.0},"35":{"tf":1.0},"407":{"tf":1.0},"45":{"tf":1.0},"483":{"tf":1.4142135623730951},"50":{"tf":1.0},"64":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"233":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"365":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"m":{"df":5,"docs":{"169":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":3.0},"9":{"tf":3.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"a":{"'":{"df":2,"docs":{"297":{"tf":1.0},"298":{"tf":1.0}}},"df":33,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"239":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":3.0},"3":{"tf":1.4142135623730951},"307":{"tf":1.0},"367":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"ö":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"467":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"1":{"7":{"6":{"2":{"df":1,"docs":{"485":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"164":{"tf":1.0}}},"2":{"df":1,"docs":{"179":{"tf":1.0}}},"3":{"4":{"0":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"5":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"c":{"1":{"5":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"173":{"tf":1.0},"220":{"tf":1.0},"262":{"tf":1.0},"343":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"146":{"tf":1.4142135623730951},"155":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":17,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"168":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"216":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"297":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"404":{"tf":1.0},"450":{"tf":1.0},"487":{"tf":1.0},"505":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"109":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"298":{"tf":1.0},"343":{"tf":1.4142135623730951},"409":{"tf":1.0},"427":{"tf":1.4142135623730951},"486":{"tf":1.0},"50":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"390":{"tf":1.0},"391":{"tf":1.7320508075688772},"393":{"tf":1.0},"395":{"tf":1.0},"399":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"df":13,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"369":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"455":{"tf":1.0},"503":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}},"n":{"c":{"df":2,"docs":{"193":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":9,"docs":{"134":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.0},"407":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"421":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"293":{"tf":1.0}}},"df":4,"docs":{"106":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"485":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"129":{"tf":1.0},"195":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"123":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"357":{"tf":1.0}},"e":{"a":{"d":{"df":18,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"178":{"tf":1.0},"191":{"tf":1.0},"235":{"tf":1.0},"359":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":1.4142135623730951},"440":{"tf":1.0},"458":{"tf":1.0},"505":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"193":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"190":{"tf":1.7320508075688772},"193":{"tf":2.23606797749979},"199":{"tf":1.0},"403":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":4,"docs":{"102":{"tf":1.0},"106":{"tf":2.0},"108":{"tf":1.0},"109":{"tf":1.0}}},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}},"s":{"df":14,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"262":{"tf":2.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"408":{"tf":2.449489742783178}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"189":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0}}}},"b":{"1":{"2":{"8":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"328":{"tf":1.0}}},"2":{"df":1,"docs":{"328":{"tf":1.0}}},"3":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"415":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"357":{"tf":1.0}}},"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"190":{"tf":1.0},"25":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.7320508075688772},"359":{"tf":1.4142135623730951},"406":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"60":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"297":{"tf":1.0}}}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":2.0},"152":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"294":{"tf":1.0}}},"df":1,"docs":{"471":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":8,"docs":{"128":{"tf":1.0},"190":{"tf":1.0},"239":{"tf":1.7320508075688772},"325":{"tf":1.0},"328":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"357":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"185":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"209":{"tf":1.7320508075688772},"217":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"297":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"357":{"tf":1.0}}},"df":2,"docs":{"357":{"tf":1.0},"383":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"194":{"tf":1.4142135623730951},"198":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"327":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"472":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"130":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"359":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":3,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":1,"docs":{"406":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":21,"docs":{"235":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"303":{"tf":1.0},"365":{"tf":2.0},"366":{"tf":1.4142135623730951},"367":{"tf":2.449489742783178},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"441":{"tf":1.0},"455":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":1.0}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"217":{"tf":1.0},"254":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":31,"docs":{"129":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":3.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"257":{"tf":1.0},"298":{"tf":1.0},"343":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"373":{"tf":1.0},"440":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.0},"505":{"tf":1.0},"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"164":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"df":6,"docs":{"357":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"98":{"tf":1.0}}},"k":{"df":9,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"501":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"149":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"254":{"tf":1.0},"292":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":2.23606797749979},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"47":{"tf":1.0},"497":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":7,"docs":{"131":{"tf":1.0},"224":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"303":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951}}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":5,"docs":{"133":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"482":{"tf":1.0},"485":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"343":{"tf":1.4142135623730951},"367":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":19,"docs":{"120":{"tf":1.0},"223":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"343":{"tf":3.1622776601683795},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":4.58257569495584},"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}}}},"df":0,"docs":{},"k":{"df":20,"docs":{"184":{"tf":1.0},"260":{"tf":2.23606797749979},"261":{"tf":2.23606797749979},"262":{"tf":1.7320508075688772},"263":{"tf":1.7320508075688772},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":2.449489742783178},"267":{"tf":3.3166247903554},"268":{"tf":1.7320508075688772},"269":{"tf":2.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"297":{"tf":2.0},"391":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":3,"docs":{"133":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}},"i":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":24,"docs":{"146":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.0},"257":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"400":{"tf":1.4142135623730951},"429":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"468":{"tf":1.4142135623730951},"471":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":23,"docs":{"108":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"217":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.0},"343":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"497":{"tf":1.0},"505":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"208":{"tf":1.0},"262":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"344":{"tf":1.4142135623730951},"371":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"485":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"423":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"414":{"tf":1.0},"471":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"150":{"tf":1.0}}}}},"p":{"df":1,"docs":{"328":{"tf":1.0}}},"s":{"df":2,"docs":{"237":{"tf":1.0},"456":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"429":{"tf":1.0}}},"t":{"df":1,"docs":{"185":{"tf":1.0}}}},"t":{"df":1,"docs":{"237":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"df":13,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"165":{"tf":1.0},"194":{"tf":1.4142135623730951},"204":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"327":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"314":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"4":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"450":{"tf":1.0},"483":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"184":{"tf":1.0},"290":{"tf":1.0},"343":{"tf":3.4641016151377544},"440":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":14,"docs":{"128":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.0},"341":{"tf":1.0},"427":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"115":{"tf":1.0},"125":{"tf":1.0},"187":{"tf":1.0},"369":{"tf":2.23606797749979},"371":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"406":{"tf":1.0},"503":{"tf":2.0},"61":{"tf":1.0},"83":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"282":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":25,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.4142135623730951},"2":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"297":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"375":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"235":{"tf":1.7320508075688772},"255":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"387":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"168":{"tf":1.4142135623730951},"180":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0},"408":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":62,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"151":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"310":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":2.23606797749979},"371":{"tf":1.0},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.0},"440":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"466":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"371":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.4142135623730951},"185":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.7320508075688772},"225":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":2.23606797749979},"263":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"251":{"tf":1.0},"253":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"194":{"tf":1.0},"237":{"tf":1.0},"328":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":24,"docs":{"100":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.7320508075688772},"165":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.4142135623730951},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.4142135623730951},"369":{"tf":1.0},"403":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"253":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":2.0},"201":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"391":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"<":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":10,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"133":{"tf":2.6457513110645907},"162":{"tf":1.0},"169":{"tf":2.0},"174":{"tf":1.0},"194":{"tf":1.4142135623730951},"24":{"tf":1.0},"35":{"tf":1.0},"457":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}}}}},"k":{"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"14":{"tf":1.0},"185":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"402":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"402":{"tf":1.0},"406":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}},"df":30,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"401":{"tf":2.6457513110645907},"402":{"tf":2.0},"403":{"tf":3.3166247903554},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":3.872983346207417},"407":{"tf":2.8284271247461903},"408":{"tf":2.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"190":{"tf":2.0},"191":{"tf":3.872983346207417},"194":{"tf":6.6332495807108}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"164":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"1":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.4142135623730951},"201":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"248":{"tf":1.4142135623730951},"260":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"307":{"tf":1.4142135623730951},"324":{"tf":1.0},"337":{"tf":1.4142135623730951},"365":{"tf":1.0},"378":{"tf":1.4142135623730951},"384":{"tf":1.0},"400":{"tf":1.4142135623730951},"412":{"tf":1.0},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"437":{"tf":1.4142135623730951},"448":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"512":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"x":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"357":{"tf":1.0},"407":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"290":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":20,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"239":{"tf":1.0},"314":{"tf":1.4142135623730951},"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"403":{"tf":1.0},"406":{"tf":2.0},"407":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}},"y":{"b":{"df":5,"docs":{"151":{"tf":1.0},"155":{"tf":1.0},"243":{"tf":1.0},"270":{"tf":1.0},"507":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":3.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"98":{"tf":1.0}},"m":{"df":17,"docs":{"384":{"tf":2.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.7320508075688772},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":25,"docs":{"131":{"tf":1.0},"146":{"tf":1.0},"164":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"455":{"tf":1.4142135623730951},"471":{"tf":1.0},"500":{"tf":1.0}},"t":{"df":3,"docs":{"238":{"tf":1.0},"313":{"tf":1.0},"501":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"347":{"tf":1.0},"383":{"tf":1.0},"407":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":70,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.4142135623730951},"14":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":2.8284271247461903},"243":{"tf":1.0},"260":{"tf":2.23606797749979},"261":{"tf":1.4142135623730951},"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.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"310":{"tf":1.0},"351":{"tf":1.4142135623730951},"376":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"401":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.0},"495":{"tf":2.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":2.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"217":{"tf":1.0},"313":{"tf":1.0},"407":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"243":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"253":{"tf":2.449489742783178},"254":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":2.0},"339":{"tf":1.0},"340":{"tf":2.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":5.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"371":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":2.23606797749979},"485":{"tf":3.3166247903554},"486":{"tf":1.7320508075688772},"494":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"47":{"tf":1.0},"499":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}}},"g":{"df":8,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"250":{"tf":1.0},"398":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"k":{"df":0,"docs":{},"l":{"df":11,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"164":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"110":{"tf":1.0},"143":{"tf":1.0},"178":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":2.449489742783178},"207":{"tf":2.6457513110645907},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"239":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":2.6457513110645907},"72":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":30,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"102":{"tf":3.0},"103":{"tf":2.23606797749979},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":2.23606797749979},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"95":{"tf":2.449489742783178},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.8284271247461903},"99":{"tf":3.3166247903554}},"v":{"1":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":2,"docs":{"114":{"tf":1.0},"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":1,"docs":{"310":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"182":{"tf":1.4142135623730951},"23":{"tf":1.0},"343":{"tf":1.4142135623730951},"38":{"tf":1.0},"51":{"tf":3.1622776601683795},"52":{"tf":1.4142135623730951},"53":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"b":{"df":4,"docs":{"369":{"tf":1.0},"370":{"tf":2.23606797749979},"483":{"tf":1.0},"485":{"tf":1.0}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"168":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"196":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":2.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.23606797749979},"296":{"tf":1.7320508075688772},"297":{"tf":2.8284271247461903},"298":{"tf":2.0},"384":{"tf":1.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"391":{"tf":2.23606797749979},"396":{"tf":1.0},"398":{"tf":1.0},"453":{"tf":1.0},"512":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":2.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"499":{"tf":1.0}}},"df":1,"docs":{"414":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":29,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"186":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"395":{"tf":1.0},"399":{"tf":1.0},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"288":{"tf":1.0},"290":{"tf":1.0},"296":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"1":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"416":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}},"u":{"df":1,"docs":{"500":{"tf":1.0}},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"407":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":5,"docs":{"130":{"tf":1.0},"165":{"tf":1.0},"194":{"tf":1.0},"224":{"tf":1.0},"369":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"349":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":1.0},"134":{"tf":1.0},"18":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":2,"docs":{"454":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":2,"docs":{"391":{"tf":1.0},"399":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"11":{"tf":1.0}}},"df":45,"docs":{"1":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":2.0},"12":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.4142135623730951},"200":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":2.0},"352":{"tf":1.0},"355":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":2.0},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"440":{"tf":1.0},"448":{"tf":2.23606797749979},"449":{"tf":1.7320508075688772},"450":{"tf":2.8284271247461903},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":2.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":32,"docs":{"1":{"tf":1.0},"257":{"tf":1.0},"412":{"tf":2.23606797749979},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":2.23606797749979},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}},"i":{"df":16,"docs":{"130":{"tf":1.0},"14":{"tf":1.4142135623730951},"223":{"tf":1.0},"235":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"334":{"tf":1.4142135623730951},"343":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":1.0},"486":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"150":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"398":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.0},"240":{"tf":1.0},"455":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"164":{"tf":1.0},"18":{"tf":1.0},"195":{"tf":1.0},"440":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"173":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":2.0},"296":{"tf":1.0},"408":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"309":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"163":{"tf":1.0},"169":{"tf":1.7320508075688772},"173":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":67,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"164":{"tf":1.0},"185":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"2":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.4142135623730951},"276":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"326":{"tf":1.0},"329":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"359":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"369":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"396":{"tf":1.0},"399":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.0},"408":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.4142135623730951},"450":{"tf":2.0},"47":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"117":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":68,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"288":{"tf":1.0},"290":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"328":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.4142135623730951},"349":{"tf":1.0},"351":{"tf":1.4142135623730951},"365":{"tf":1.0},"367":{"tf":1.4142135623730951},"379":{"tf":1.0},"381":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.7320508075688772},"401":{"tf":1.0},"403":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.4142135623730951},"425":{"tf":1.0},"427":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":1.4142135623730951},"467":{"tf":1.0},"469":{"tf":1.4142135623730951},"481":{"tf":1.0},"483":{"tf":1.4142135623730951},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":17,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"157":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"340":{"tf":1.0},"400":{"tf":1.4142135623730951},"408":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"343":{"tf":2.449489742783178}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"14":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"293":{"tf":1.0},"343":{"tf":1.0},"359":{"tf":1.0},"409":{"tf":1.0},"45":{"tf":1.0},"503":{"tf":1.0},"511":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":9,"docs":{"146":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"190":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.4142135623730951},"386":{"tf":1.0},"429":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"326":{"tf":1.0}}}},"i":{"df":3,"docs":{"190":{"tf":1.0},"193":{"tf":1.0},"406":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"297":{"tf":1.0}}}},"df":1,"docs":{"44":{"tf":1.0}}}}},"n":{"+":{"1":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"/":{"3":{"df":3,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0}}},"8":{"df":1,"docs":{"33":{"tf":1.0}}},"a":{"df":8,"docs":{"317":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"393":{"tf":1.4142135623730951},"422":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0}}},"df":0,"docs":{}},"=":{"3":{"df":0,"docs":{},"f":{"+":{"df":0,"docs":{},"k":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"3":{"df":2,"docs":{"128":{"tf":1.0},"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"125":{"tf":1.0},"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"125":{"tf":1.0},"143":{"tf":1.0},"340":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"149":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":1.0},"295":{"tf":1.0},"343":{"tf":2.23606797749979},"344":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.4142135623730951},"399":{"tf":1.7320508075688772},"502":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"13":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"483":{"tf":2.23606797749979},"512":{"tf":1.0},"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"165":{"tf":1.0},"172":{"tf":1.0},"383":{"tf":1.4142135623730951},"406":{"tf":1.0},"98":{"tf":1.0}}}}},"y":{"df":2,"docs":{"414":{"tf":1.0},"418":{"tf":1.0}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"129":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":2.23606797749979},"357":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"165":{"tf":1.0},"189":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"137":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"216":{"tf":1.0},"26":{"tf":1.0},"289":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"407":{"tf":1.0},"454":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.4142135623730951},"94":{"tf":1.0},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"190":{"tf":1.0},"326":{"tf":1.0}}}}}}},"df":3,"docs":{"280":{"tf":1.0},"359":{"tf":1.0},"367":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"406":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":69,"docs":{"11":{"tf":1.4142135623730951},"125":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"217":{"tf":1.7320508075688772},"226":{"tf":1.0},"235":{"tf":2.0},"240":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"290":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"296":{"tf":2.0},"297":{"tf":2.23606797749979},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.7320508075688772},"344":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.4142135623730951},"359":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"411":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"446":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"440":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"178":{"tf":1.0},"243":{"tf":1.0},"347":{"tf":1.0},"489":{"tf":1.0},"507":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"426":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951}}}},"t":{"df":4,"docs":{"197":{"tf":1.0},"383":{"tf":1.0},"430":{"tf":1.0},"489":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"255":{"tf":1.0},"293":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":66,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"2":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":2.0},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":2.0},"254":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.4142135623730951},"326":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":2.23606797749979},"366":{"tf":1.4142135623730951},"367":{"tf":2.23606797749979},"368":{"tf":1.0},"369":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"383":{"tf":1.0},"427":{"tf":2.6457513110645907},"429":{"tf":1.7320508075688772},"437":{"tf":1.0},"459":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":2.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"149":{"tf":1.0},"190":{"tf":1.0},"268":{"tf":1.4142135623730951},"274":{"tf":1.0},"343":{"tf":2.0},"54":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"193":{"tf":1.7320508075688772},"358":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"df":85,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":2.23606797749979},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"173":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":2.23606797749979},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":2.449489742783178},"251":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":3.605551275463989},"344":{"tf":1.4142135623730951},"346":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"454":{"tf":2.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"469":{"tf":1.0},"473":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"511":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"512":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"235":{"tf":1.0},"343":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"132":{"tf":1.0},"156":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"30":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":2.8284271247461903},"406":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"t":{"df":24,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":2.0},"4":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"369":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"292":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":58,"docs":{"102":{"tf":3.1622776601683795},"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"109":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":2.8284271247461903},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"243":{"tf":2.23606797749979},"297":{"tf":1.4142135623730951},"343":{"tf":1.0},"367":{"tf":2.6457513110645907},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"397":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"447":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":2.23606797749979},"496":{"tf":1.4142135623730951},"497":{"tf":3.605551275463989},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":2.6457513110645907},"501":{"tf":2.23606797749979},"502":{"tf":1.7320508075688772},"503":{"tf":2.0},"504":{"tf":1.0},"505":{"tf":2.0},"506":{"tf":1.0},"507":{"tf":2.449489742783178},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":2.6457513110645907}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"176":{"tf":1.0},"191":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0}}}}},"n":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"146":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"217":{"tf":1.0},"235":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"343":{"tf":2.23606797749979},"406":{"tf":1.0}},"e":{"df":30,"docs":{"150":{"tf":1.4142135623730951},"158":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"231":{"tf":1.0},"246":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"286":{"tf":1.0},"323":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"343":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"504":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"240":{"tf":1.0}}}}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"145":{"tf":1.0},"150":{"tf":1.0},"207":{"tf":1.0},"399":{"tf":1.0}}}},"df":1,"docs":{"11":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"297":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"31":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":40,"docs":{"114":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.7320508075688772},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"371":{"tf":1.0},"383":{"tf":1.0},"392":{"tf":1.0},"406":{"tf":1.4142135623730951},"41":{"tf":1.0},"414":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.0},"457":{"tf":1.0},"466":{"tf":1.0},"51":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}}}}}}}},"i":{"c":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"194":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":15,"docs":{"194":{"tf":1.0},"324":{"tf":2.23606797749979},"325":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":3.0},"329":{"tf":1.7320508075688772},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0}},"i":{"df":2,"docs":{"204":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"v":{"a":{"df":2,"docs":{"421":{"tf":1.0},"434":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"b":{"df":5,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"308":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"146":{"tf":1.0},"164":{"tf":1.4142135623730951},"328":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"375":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0},"485":{"tf":1.0},"98":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"296":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"220":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"193":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":50,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.7320508075688772},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"204":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.3166247903554},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"359":{"tf":1.4142135623730951},"366":{"tf":1.0},"369":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"440":{"tf":1.0},"454":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":2.6457513110645907},"483":{"tf":1.0},"50":{"tf":1.4142135623730951},"505":{"tf":1.0},"51":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}},"}":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"d":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"161":{"tf":1.0},"2":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"406":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"487":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"143":{"tf":1.0},"369":{"tf":1.0},"407":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"240":{"tf":1.0},"343":{"tf":1.4142135623730951},"347":{"tf":1.0},"367":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":4,"docs":{"151":{"tf":1.4142135623730951},"154":{"tf":1.0},"220":{"tf":1.0},"340":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}},"i":{"df":2,"docs":{"134":{"tf":1.0},"143":{"tf":2.23606797749979}}}},"r":{"df":7,"docs":{"190":{"tf":1.0},"290":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.4142135623730951},"434":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"33":{"tf":3.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.449489742783178},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"33":{"tf":1.7320508075688772},"42":{"tf":1.0}}}},"o":{"b":{"df":4,"docs":{"425":{"tf":1.0},"438":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":4,"docs":{"309":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"146":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"409":{"tf":1.0},"423":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"294":{"tf":1.0},"297":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"298":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":20,"docs":{"13":{"tf":1.0},"154":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"29":{"tf":1.0},"290":{"tf":1.7320508075688772},"3":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":29,"docs":{"100":{"tf":1.7320508075688772},"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.7320508075688772},"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.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"48":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":2.8284271247461903}}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"193":{"tf":2.449489742783178},"357":{"tf":1.4142135623730951},"358":{"tf":1.7320508075688772},"360":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"146":{"tf":1.0},"191":{"tf":1.7320508075688772},"207":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"100":{"tf":1.0},"119":{"tf":1.0},"133":{"tf":1.4142135623730951},"348":{"tf":1.0},"375":{"tf":1.0},"500":{"tf":1.0},"512":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"384":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"262":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":20,"docs":{"125":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"152":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"194":{"tf":1.0},"251":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"347":{"tf":1.0},"367":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":77,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.7320508075688772},"243":{"tf":1.0},"257":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"280":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"310":{"tf":1.0},"312":{"tf":1.0},"324":{"tf":2.23606797749979},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"343":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.4142135623730951},"455":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"186":{"tf":1.0},"194":{"tf":1.0},"235":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"389":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"369":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"185":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"440":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"164":{"tf":1.7320508075688772},"174":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.4142135623730951},"208":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"325":{"tf":1.0},"437":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"16":{"tf":1.0},"293":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0}}}}}},"r":{"df":21,"docs":{"14":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.0},"191":{"tf":2.449489742783178},"193":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"35":{"tf":1.0},"383":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"247":{"tf":1.0},"369":{"tf":1.0},"511":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"307":{"tf":1.0},"406":{"tf":1.0},"453":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":15,"docs":{"118":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.0},"421":{"tf":1.0},"476":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"142":{"tf":1.0}},"t":{"df":2,"docs":{"164":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"194":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"110":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.0},"173":{"tf":1.0},"239":{"tf":1.0},"369":{"tf":2.449489742783178},"381":{"tf":1.0},"383":{"tf":1.4142135623730951},"393":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.4142135623730951},"455":{"tf":1.0},"47":{"tf":1.4142135623730951},"485":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":45,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.7320508075688772},"143":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"268":{"tf":1.0},"279":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.8284271247461903},"35":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"400":{"tf":1.0},"403":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.4142135623730951},"456":{"tf":1.0},"471":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"252":{"tf":1.0},"253":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"162":{"tf":1.0},"191":{"tf":3.1622776601683795},"220":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"297":{"tf":1.0},"326":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"454":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"239":{"tf":1.0},"257":{"tf":1.0},"293":{"tf":1.0},"312":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"102":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"190":{"tf":1.0},"262":{"tf":1.0},"360":{"tf":1.0},"391":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"499":{"tf":1.0},"52":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"383":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"22":{"tf":1.0},"483":{"tf":1.0}}}}},"df":16,"docs":{"114":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"281":{"tf":1.0},"343":{"tf":8.12403840463596},"348":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"31":{"tf":1.0},"383":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"51":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"122":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"343":{"tf":3.4641016151377544},"397":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"184":{"tf":1.0},"383":{"tf":1.4142135623730951},"430":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"80":{"tf":1.0}}}},"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"407":{"tf":1.0}}},"df":0,"docs":{}}},"df":23,"docs":{"12":{"tf":1.0},"129":{"tf":1.0},"154":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"200":{"tf":1.0},"223":{"tf":1.0},"295":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.4142135623730951},"386":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"485":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"440":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":10,"docs":{"114":{"tf":1.7320508075688772},"130":{"tf":1.0},"243":{"tf":1.0},"262":{"tf":1.0},"395":{"tf":1.0},"407":{"tf":1.0},"507":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"131":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"297":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"466":{"tf":1.0}}},"o":{"a":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"181":{"tf":1.0},"189":{"tf":1.4142135623730951},"349":{"tf":1.0},"355":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"189":{"tf":2.0},"190":{"tf":1.7320508075688772},"191":{"tf":2.8284271247461903},"194":{"tf":4.69041575982343},"39":{"tf":1.0},"403":{"tf":1.0},"43":{"tf":1.0},"468":{"tf":1.4142135623730951},"471":{"tf":1.0},"473":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":25,"docs":{"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"194":{"tf":1.0},"23":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"467":{"tf":2.23606797749979},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"51":{"tf":2.23606797749979},"53":{"tf":1.0}}}}}}}}}},"y":{"df":1,"docs":{"95":{"tf":1.0}}}},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}}},"0":{"df":1,"docs":{"194":{"tf":1.0}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"357":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"133":{"tf":1.0}}}},"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":15,"docs":{"481":{"tf":2.23606797749979},"482":{"tf":1.0},"483":{"tf":2.23606797749979},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"61":{"tf":1.0}}}},"i":{"d":{"df":13,"docs":{"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"253":{"tf":1.0},"383":{"tf":1.7320508075688772},"448":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.7320508075688772},"455":{"tf":1.7320508075688772},"456":{"tf":1.7320508075688772},"457":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"429":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"220":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":49,"docs":{"102":{"tf":1.0},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":2.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":2.0},"247":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.7320508075688772},"266":{"tf":1.0},"281":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":2.449489742783178},"3":{"tf":1.0},"304":{"tf":1.0},"313":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"426":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.0},"454":{"tf":1.7320508075688772},"456":{"tf":2.6457513110645907},"457":{"tf":1.0},"511":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"266":{"tf":1.0}}},"(":{"1":{"0":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":95,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":2.6457513110645907},"195":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"233":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"235":{"tf":2.449489742783178},"236":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":2.0},"239":{"tf":2.6457513110645907},"240":{"tf":2.449489742783178},"241":{"tf":2.8284271247461903},"242":{"tf":1.0},"243":{"tf":2.449489742783178},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":2.23606797749979},"261":{"tf":2.8284271247461903},"262":{"tf":4.69041575982343},"263":{"tf":2.8284271247461903},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":4.242640687119285},"267":{"tf":3.4641016151377544},"268":{"tf":2.6457513110645907},"269":{"tf":3.872983346207417},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":3.872983346207417},"298":{"tf":2.23606797749979},"303":{"tf":1.4142135623730951},"353":{"tf":1.0},"387":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":2.6457513110645907},"452":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":3.0},"455":{"tf":3.0},"456":{"tf":1.0},"457":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"485":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"415":{"tf":1.0}}}}},"df":12,"docs":{"133":{"tf":1.0},"194":{"tf":1.4142135623730951},"229":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"30":{"tf":1.0},"448":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":2.0},"457":{"tf":2.0},"66":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"d":{"df":10,"docs":{"164":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"204":{"tf":1.0},"207":{"tf":1.0},"254":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.23606797749979},"457":{"tf":1.4142135623730951},"458":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"129":{"tf":1.0},"177":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"m":{"df":2,"docs":{"149":{"tf":2.449489742783178},"343":{"tf":11.269427669584644}},"e":{"df":0,"docs":{},"t":{"df":21,"docs":{"102":{"tf":1.0},"190":{"tf":1.7320508075688772},"193":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"343":{"tf":3.1622776601683795},"349":{"tf":1.0},"356":{"tf":1.4142135623730951},"360":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.7320508075688772},"416":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":2.0},"471":{"tf":1.0},"48":{"tf":1.7320508075688772},"85":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":2,"docs":{"131":{"tf":1.0},"182":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"309":{"tf":1.0},"310":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"72":{"tf":2.23606797749979}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"187":{"tf":1.4142135623730951},"404":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":2,"docs":{"129":{"tf":1.0},"143":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"370":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}},"t":{"df":24,"docs":{"102":{"tf":1.7320508075688772},"109":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"156":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"216":{"tf":1.4142135623730951},"220":{"tf":1.0},"251":{"tf":1.7320508075688772},"253":{"tf":1.0},"33":{"tf":1.0},"400":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"220":{"tf":1.0},"269":{"tf":2.0},"3":{"tf":1.0},"383":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"429":{"tf":2.0},"437":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.7320508075688772},"503":{"tf":2.0},"512":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"125":{"tf":1.0},"14":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"217":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"429":{"tf":1.7320508075688772},"486":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"486":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"132":{"tf":1.0},"303":{"tf":1.0},"450":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"154":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"t":{"df":4,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"5":{"7":{"6":{"0":{"0":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"111":{"tf":1.0},"143":{"tf":1.0},"191":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"314":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0}}}}},"t":{"df":2,"docs":{"207":{"tf":1.0},"369":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"123":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"251":{"tf":1.0},"380":{"tf":1.0},"485":{"tf":2.23606797749979},"486":{"tf":1.7320508075688772},"489":{"tf":1.7320508075688772},"491":{"tf":1.0},"494":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"383":{"tf":1.0},"421":{"tf":1.0},"445":{"tf":1.0},"476":{"tf":1.0},"72":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"172":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":1,"docs":{"454":{"tf":1.0}}}}}}},"df":7,"docs":{"194":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":2.23606797749979},"451":{"tf":1.0}},"e":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"110":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"194":{"tf":1.0},"316":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"454":{"tf":2.0},"462":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"194":{"tf":1.0},"298":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"239":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"129":{"tf":1.0},"234":{"tf":1.4142135623730951},"239":{"tf":1.0},"243":{"tf":1.0},"325":{"tf":1.0},"367":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"512":{"tf":2.0}},"i":{"d":{"df":5,"docs":{"235":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.0},"343":{"tf":1.4142135623730951},"505":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"13":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"395":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":7,"docs":{"219":{"tf":1.0},"236":{"tf":1.0},"295":{"tf":1.4142135623730951},"307":{"tf":1.0},"314":{"tf":1.0},"369":{"tf":1.0},"498":{"tf":1.0}}}}},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{},"s":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"2":{"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":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"185":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"199":{"tf":1.0},"454":{"tf":1.0}}}},"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":35,"docs":{"125":{"tf":1.0},"131":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"369":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"466":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":96,"docs":{"1":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":2.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"18":{"tf":2.0},"181":{"tf":1.0},"196":{"tf":1.4142135623730951},"201":{"tf":1.0},"210":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.7320508075688772},"260":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"277":{"tf":1.0},"284":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"308":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.7320508075688772},"384":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"395":{"tf":2.0},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.7320508075688772},"425":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"481":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":2.23606797749979},"495":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"298":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":40,"docs":{"18":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"190":{"tf":4.242640687119285},"191":{"tf":2.6457513110645907},"192":{"tf":1.0},"193":{"tf":2.0},"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"241":{"tf":1.0},"294":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":2.23606797749979},"352":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"383":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":3.4641016151377544},"412":{"tf":2.23606797749979},"413":{"tf":1.4142135623730951},"414":{"tf":2.6457513110645907},"415":{"tf":1.0},"416":{"tf":2.0},"417":{"tf":1.4142135623730951},"418":{"tf":2.23606797749979},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.449489742783178},"424":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"491":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"185":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"185":{"tf":1.0},"223":{"tf":1.0},"262":{"tf":1.0},"293":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}},"t":{"df":2,"docs":{"453":{"tf":1.0},"455":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"124":{"tf":1.0},"131":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"216":{"tf":1.0},"403":{"tf":1.0},"409":{"tf":1.0},"72":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"215":{"tf":1.0},"249":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"143":{"tf":1.0},"195":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"200":{"tf":1.0},"497":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"355":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"233":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"365":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.7320508075688772},"408":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":15,"docs":{"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"198":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"269":{"tf":1.0},"280":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"406":{"tf":1.4142135623730951},"456":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":5,"docs":{"162":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"293":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":3,"docs":{"355":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"14":{"tf":1.0},"164":{"tf":2.0},"168":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":2.0},"5":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"399":{"tf":1.4142135623730951},"48":{"tf":1.0},"499":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"191":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"295":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"14":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"344":{"tf":1.0},"391":{"tf":1.4142135623730951},"401":{"tf":1.0},"408":{"tf":1.4142135623730951},"42":{"tf":1.0},"429":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"340":{"tf":1.7320508075688772},"343":{"tf":3.4641016151377544}}}}}}},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"'":{"df":9,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"173":{"tf":1.0},"217":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"383":{"tf":1.0}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":128,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":2.23606797749979},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":2.8284271247461903},"161":{"tf":2.0},"162":{"tf":2.8284271247461903},"163":{"tf":2.8284271247461903},"164":{"tf":3.1622776601683795},"165":{"tf":1.7320508075688772},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"168":{"tf":2.6457513110645907},"169":{"tf":2.23606797749979},"17":{"tf":1.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":2.0},"184":{"tf":2.0},"185":{"tf":2.6457513110645907},"186":{"tf":2.449489742783178},"187":{"tf":2.0},"189":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"251":{"tf":2.23606797749979},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"27":{"tf":2.0},"281":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":2.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"301":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"364":{"tf":1.0},"367":{"tf":1.4142135623730951},"380":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"387":{"tf":1.4142135623730951},"398":{"tf":1.0},"4":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"452":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.4142135623730951},"483":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":2.0},"501":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"421":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"162":{"tf":1.0},"172":{"tf":1.0}}},"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":2,"docs":{"386":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"164":{"tf":1.0},"178":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"189":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"191":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":2.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"292":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"194":{"tf":2.8284271247461903}}}}}},"r":{"df":1,"docs":{"151":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"427":{"tf":1.0}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"370":{"tf":1.0},"455":{"tf":1.0},"99":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"125":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"407":{"tf":1.0},"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"217":{"tf":1.0},"343":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"489":{"tf":1.0},"69":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"132":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"50":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":45,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"269":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"294":{"tf":1.0},"297":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"348":{"tf":1.7320508075688772},"349":{"tf":1.0},"352":{"tf":1.0},"363":{"tf":1.4142135623730951},"367":{"tf":3.1622776601683795},"369":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"402":{"tf":1.0},"407":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"497":{"tf":1.7320508075688772},"512":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"399":{"tf":1.0}}}}}}}},"df":6,"docs":{"258":{"tf":1.0},"364":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":25,"docs":{"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"18":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":1.0},"360":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"437":{"tf":1.0},"458":{"tf":1.0},"67":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"129":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"189":{"tf":1.0},"225":{"tf":1.4142135623730951},"298":{"tf":1.0},"447":{"tf":1.4142135623730951}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"164":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":2.23606797749979}}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"343":{"tf":1.0}}}},"r":{"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.0},"343":{"tf":1.0},"44":{"tf":1.0},"511":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"297":{"tf":1.0},"310":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"140":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"61":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":2.0}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"189":{"tf":1.0},"343":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}},"s":{"df":1,"docs":{"237":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"150":{"tf":1.4142135623730951}},"t":{"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"241":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.7320508075688772},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"189":{"tf":1.0}}}}}}},"df":7,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"451":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.7320508075688772},"486":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"159":{"tf":1.0},"296":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"399":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0}},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"169":{"tf":1.0},"239":{"tf":1.0},"343":{"tf":2.0},"367":{"tf":2.0},"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"130":{"tf":1.0},"137":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"403":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"217":{"tf":1.0},"406":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"348":{"tf":1.0},"384":{"tf":2.23606797749979},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"101":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"213":{"tf":1.0},"3":{"tf":1.0},"323":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"407":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"483":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"128":{"tf":1.0},"402":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"326":{"tf":1.0},"328":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"340":{"tf":1.0},"94":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.4142135623730951},"2":{"tf":1.0},"241":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"429":{"tf":1.0},"451":{"tf":1.0},"48":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":13,"docs":{"14":{"tf":1.7320508075688772},"190":{"tf":2.449489742783178},"191":{"tf":1.0},"193":{"tf":2.0},"343":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"5":{"tf":1.0}},"s":{"df":5,"docs":{"191":{"tf":1.0},"269":{"tf":1.0},"343":{"tf":1.0},"401":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}}}}}}}}},"df":40,"docs":{"1":{"tf":1.0},"12":{"tf":2.449489742783178},"13":{"tf":1.4142135623730951},"168":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":3.605551275463989},"191":{"tf":3.605551275463989},"192":{"tf":1.4142135623730951},"193":{"tf":4.795831523312719},"199":{"tf":2.449489742783178},"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"349":{"tf":2.449489742783178},"350":{"tf":2.8284271247461903},"351":{"tf":2.449489742783178},"352":{"tf":2.8284271247461903},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":2.0},"358":{"tf":1.0},"359":{"tf":3.3166247903554},"360":{"tf":3.7416573867739413},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"383":{"tf":1.7320508075688772},"4":{"tf":1.0},"402":{"tf":2.23606797749979},"403":{"tf":3.7416573867739413},"406":{"tf":4.123105625617661},"407":{"tf":3.7416573867739413},"409":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":20,"docs":{"18":{"tf":1.0},"187":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"290":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"353":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"217":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"297":{"tf":1.0},"41":{"tf":2.0},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":66,"docs":{"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"140":{"tf":1.4142135623730951},"144":{"tf":1.0},"157":{"tf":1.4142135623730951},"181":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.0},"346":{"tf":1.4142135623730951},"349":{"tf":1.0},"362":{"tf":1.4142135623730951},"365":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"464":{"tf":1.7320508075688772},"467":{"tf":1.0},"478":{"tf":1.4142135623730951},"481":{"tf":1.0},"492":{"tf":1.4142135623730951},"495":{"tf":1.0},"510":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"297":{"tf":1.0},"409":{"tf":1.0}},"i":{"df":4,"docs":{"189":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":53,"docs":{"1":{"tf":1.0},"115":{"tf":1.4142135623730951},"123":{"tf":1.0},"135":{"tf":1.7320508075688772},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"160":{"tf":1.0},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"197":{"tf":1.7320508075688772},"201":{"tf":1.0},"211":{"tf":1.7320508075688772},"215":{"tf":1.0},"223":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.4142135623730951},"249":{"tf":1.0},"256":{"tf":1.4142135623730951},"260":{"tf":1.0},"270":{"tf":1.7320508075688772},"277":{"tf":1.0},"283":{"tf":1.4142135623730951},"288":{"tf":1.0},"300":{"tf":1.4142135623730951},"308":{"tf":1.0},"317":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.4142135623730951},"365":{"tf":1.0},"371":{"tf":1.4142135623730951},"384":{"tf":1.0},"393":{"tf":1.7320508075688772},"412":{"tf":1.0},"418":{"tf":1.4142135623730951},"425":{"tf":1.0},"431":{"tf":1.4142135623730951},"448":{"tf":1.0},"459":{"tf":1.7320508075688772},"467":{"tf":1.0},"473":{"tf":1.4142135623730951},"481":{"tf":1.0},"487":{"tf":1.4142135623730951},"495":{"tf":1.0},"505":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"192":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"220":{"tf":1.0},"266":{"tf":1.0},"414":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"348":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":20,"docs":{"134":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.7320508075688772},"217":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.4142135623730951},"343":{"tf":1.0},"365":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.4142135623730951},"512":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"128":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"184":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":43,"docs":{"101":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"343":{"tf":1.4142135623730951},"37":{"tf":1.0},"391":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":12,"docs":{"261":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":7,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"294":{"tf":1.0},"39":{"tf":1.0},"408":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"383":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"146":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"251":{"tf":1.0},"296":{"tf":1.0},"343":{"tf":1.0},"346":{"tf":1.0},"429":{"tf":1.0}},"m":{"df":2,"docs":{"161":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"310":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"120":{"tf":1.4142135623730951},"186":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"151":{"tf":1.0},"9":{"tf":1.0}}},"s":{"df":3,"docs":{"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"269":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"253":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.0},"403":{"tf":1.0},"408":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":38,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"132":{"tf":2.6457513110645907},"164":{"tf":2.0},"166":{"tf":2.0},"168":{"tf":1.0},"36":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":2.23606797749979},"37":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":2.0},"442":{"tf":2.23606797749979},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"467":{"tf":2.23606797749979},"468":{"tf":2.23606797749979},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":3.1622776601683795},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951},"83":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"119":{"tf":1.0},"191":{"tf":1.0},"326":{"tf":1.0},"459":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"189":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"381":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"131":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"349":{"tf":1.0},"359":{"tf":1.4142135623730951},"440":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.7320508075688772}}}},"s":{"a":{"df":0,"docs":{},"l":{"(":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":115,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"10":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":2.8284271247461903},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"202":{"tf":1.4142135623730951},"207":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":2.0},"22":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"325":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":2.449489742783178},"406":{"tf":1.4142135623730951},"409":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"429":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.0},"476":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"496":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.23606797749979},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":2.449489742783178},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"429":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"371":{"tf":1.4142135623730951},"407":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"2":{"df":1,"docs":{"239":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"239":{"tf":1.0},"369":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":2,"docs":{"26":{"tf":1.0},"415":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}}},"df":103,"docs":{"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"123":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.0},"143":{"tf":1.7320508075688772},"187":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":2.6457513110645907},"233":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":2.6457513110645907},"24":{"tf":2.0},"240":{"tf":1.0},"25":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"30":{"tf":1.4142135623730951},"304":{"tf":1.0},"31":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":2.23606797749979},"353":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":2.6457513110645907},"37":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.4142135623730951},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"51":{"tf":1.4142135623730951},"512":{"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.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"195":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"367":{"tf":1.4142135623730951},"99":{"tf":1.0}},"n":{"df":4,"docs":{"137":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0}}}},"i":{"d":{"df":71,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":2.0},"243":{"tf":1.7320508075688772},"253":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"343":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"369":{"tf":2.0},"386":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"495":{"tf":1.4142135623730951},"500":{"tf":3.605551275463989},"501":{"tf":3.0},"502":{"tf":1.4142135623730951},"503":{"tf":2.23606797749979},"505":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"512":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"406":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"190":{"tf":2.0},"191":{"tf":1.4142135623730951}}}}}}}}},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":8,"docs":{"448":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":2.6457513110645907},"457":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"33":{"tf":1.4142135623730951},"349":{"tf":1.0},"358":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":10,"docs":{"131":{"tf":1.0},"132":{"tf":3.3166247903554},"294":{"tf":1.0},"304":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":8,"docs":{"184":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"343":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"243":{"tf":1.0},"253":{"tf":1.0},"281":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"235":{"tf":1.0},"447":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"189":{"tf":2.0},"190":{"tf":3.605551275463989},"191":{"tf":3.3166247903554},"192":{"tf":2.8284271247461903},"193":{"tf":2.23606797749979},"196":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"455":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":8,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"173":{"tf":1.0},"234":{"tf":1.0},"297":{"tf":1.0},"369":{"tf":1.0},"512":{"tf":1.0},"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"173":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"185":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"391":{"tf":1.0},"410":{"tf":1.0}}}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"457":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"190":{"tf":1.0},"406":{"tf":1.7320508075688772}}}},"z":{"df":1,"docs":{"190":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"143":{"tf":1.0},"243":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":2.0},"369":{"tf":2.23606797749979},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"507":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"367":{"tf":2.0},"369":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":57,"docs":{"1":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"179":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"275":{"tf":1.4142135623730951},"277":{"tf":1.0},"286":{"tf":1.4142135623730951},"288":{"tf":1.0},"306":{"tf":1.7320508075688772},"308":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"336":{"tf":1.4142135623730951},"338":{"tf":1.0},"340":{"tf":1.0},"347":{"tf":1.4142135623730951},"365":{"tf":1.0},"377":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"399":{"tf":1.4142135623730951},"401":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.0},"423":{"tf":1.4142135623730951},"425":{"tf":1.0},"436":{"tf":1.4142135623730951},"448":{"tf":1.0},"465":{"tf":1.4142135623730951},"467":{"tf":1.0},"479":{"tf":1.4142135623730951},"481":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.4142135623730951},"495":{"tf":1.0},"511":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"193":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"106":{"tf":2.0},"193":{"tf":1.4142135623730951}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"131":{"tf":1.0},"360":{"tf":1.4142135623730951},"400":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"359":{"tf":1.0},"360":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.0},"473":{"tf":1.0}}}},"o":{"df":2,"docs":{"260":{"tf":1.0},"266":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"226":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"466":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"383":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"129":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":2.23606797749979},"243":{"tf":1.0},"47":{"tf":3.1622776601683795},"48":{"tf":1.7320508075688772},"501":{"tf":2.6457513110645907},"507":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"129":{"tf":1.0},"241":{"tf":1.0},"497":{"tf":1.4142135623730951},"505":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"54":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":2.0},"54":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"54":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"208":{"tf":1.4142135623730951},"343":{"tf":3.7416573867739413},"355":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"308":{"tf":1.0},"313":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"409":{"tf":1.0},"497":{"tf":1.0}}}},"t":{"a":{"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"185":{"tf":1.0},"352":{"tf":1.4142135623730951},"407":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"250":{"tf":1.0}}}},"o":{"df":5,"docs":{"189":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"315":{"tf":1.0},"47":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"150":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"235":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"df":2,"docs":{"343":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"343":{"tf":1.4142135623730951},"352":{"tf":1.0},"406":{"tf":1.0},"486":{"tf":1.0}}},"t":{"df":3,"docs":{"360":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0}}}},"d":{"df":9,"docs":{"164":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.7320508075688772},"365":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"503":{"tf":1.0},"512":{"tf":1.0}},"i":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"185":{"tf":1.4142135623730951},"362":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"201":{"tf":1.0},"209":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"298":{"tf":1.0},"370":{"tf":1.0},"505":{"tf":1.0}}}},"z":{"df":2,"docs":{"236":{"tf":1.0},"357":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"131":{"tf":1.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"391":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":12,"docs":{"132":{"tf":2.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"326":{"tf":1.0},"334":{"tf":1.0},"370":{"tf":1.0},"403":{"tf":1.0},"507":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"164":{"tf":1.4142135623730951},"193":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"439":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"303":{"tf":1.0},"313":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"297":{"tf":1.0},"98":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"22":{"tf":1.0},"253":{"tf":1.0},"397":{"tf":1.0},"48":{"tf":1.0}}},"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":6,"docs":{"109":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":14,"docs":{"104":{"tf":1.0},"143":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":2.23606797749979},"194":{"tf":1.7320508075688772},"243":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"50":{"tf":1.0},"507":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"124":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"123":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"276":{"tf":1.0},"58":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"u":{"c":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"172":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"224":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.4142135623730951},"429":{"tf":1.0},"458":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"444":{"tf":1.0},"458":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"243":{"tf":1.0},"451":{"tf":1.0},"48":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}},"df":13,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"194":{"tf":1.0},"369":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":2.23606797749979},"486":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":68,"docs":{"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.4142135623730951},"181":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"258":{"tf":1.4142135623730951},"260":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"335":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"356":{"tf":1.0},"362":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"376":{"tf":1.4142135623730951},"384":{"tf":1.0},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.4142135623730951},"425":{"tf":1.0},"43":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"467":{"tf":1.0},"47":{"tf":1.0},"478":{"tf":1.4142135623730951},"48":{"tf":2.0},"481":{"tf":1.0},"492":{"tf":1.4142135623730951},"495":{"tf":1.0},"50":{"tf":1.0},"510":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":3,"docs":{"253":{"tf":1.0},"292":{"tf":1.0},"427":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"133":{"tf":1.0},"253":{"tf":1.7320508075688772},"255":{"tf":1.0},"281":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"401":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"192":{"tf":1.0},"407":{"tf":1.0},"421":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"407":{"tf":1.0}}}},"m":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"407":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"146":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"133":{"tf":1.0},"207":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"191":{"tf":3.0}}},"df":9,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":5.196152422706632},"191":{"tf":6.082762530298219},"193":{"tf":1.0},"194":{"tf":4.0},"351":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"355":{"tf":1.0},"356":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"191":{"tf":2.449489742783178},"194":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"165":{"tf":1.0},"172":{"tf":1.0},"220":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"294":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":3.1622776601683795},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":2.6457513110645907},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0}}}},"df":25,"docs":{"233":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"448":{"tf":2.449489742783178},"449":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.7320508075688772},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":2.449489742783178},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"107":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.6457513110645907},"191":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"454":{"tf":1.7320508075688772},"457":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"297":{"tf":1.0},"298":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"217":{"tf":1.0},"218":{"tf":1.0}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"253":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":62,"docs":{"1":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"198":{"tf":1.4142135623730951},"201":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.0},"337":{"tf":1.4142135623730951},"365":{"tf":1.0},"378":{"tf":1.4142135623730951},"384":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.4142135623730951},"41":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"437":{"tf":1.4142135623730951},"448":{"tf":1.0},"455":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"494":{"tf":1.7320508075688772},"495":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"x":{"df":1,"docs":{"486":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"262":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":64,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":3.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"193":{"tf":2.0},"194":{"tf":2.449489742783178},"198":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.0},"233":{"tf":2.23606797749979},"234":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"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},"288":{"tf":2.23606797749979},"289":{"tf":1.4142135623730951},"290":{"tf":2.23606797749979},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"297":{"tf":2.6457513110645907},"298":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"306":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"499":{"tf":1.0},"500":{"tf":1.7320508075688772}}}},"df":16,"docs":{"131":{"tf":1.0},"14":{"tf":1.0},"173":{"tf":1.0},"191":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"47":{"tf":1.0},"497":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.4142135623730951},"72":{"tf":3.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"115":{"tf":1.0},"133":{"tf":1.0},"165":{"tf":1.0},"195":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"96":{"tf":1.0}}}},"df":1,"docs":{"403":{"tf":1.0}},"v":{"df":8,"docs":{"120":{"tf":1.0},"194":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"216":{"tf":1.0},"512":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"13":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"262":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"238":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.0},"383":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"98":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":17,"docs":{"106":{"tf":1.4142135623730951},"163":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"306":{"tf":1.0},"343":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"457":{"tf":1.0},"50":{"tf":1.4142135623730951},"63":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"297":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"369":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.7320508075688772}},"v":{"2":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"369":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":54,"docs":{"100":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":2.0},"194":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":2.449489742783178},"261":{"tf":1.0},"276":{"tf":1.0},"297":{"tf":1.4142135623730951},"302":{"tf":1.0},"338":{"tf":2.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.7320508075688772},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":2.0},"375":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"429":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"399":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"297":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"402":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"189":{"tf":2.8284271247461903},"190":{"tf":2.8284271247461903},"191":{"tf":4.123105625617661},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"262":{"tf":1.4142135623730951},"274":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":2.23606797749979},"406":{"tf":2.8284271247461903},"407":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}}}}}}}}},"df":1,"docs":{"454":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":19,"docs":{"448":{"tf":2.449489742783178},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.0},"452":{"tf":1.0},"453":{"tf":2.23606797749979},"454":{"tf":2.6457513110645907},"455":{"tf":2.0},"456":{"tf":2.23606797749979},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"239":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":24,"docs":{"220":{"tf":1.0},"241":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"347":{"tf":1.0},"369":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":3,"docs":{"367":{"tf":1.7320508075688772},"369":{"tf":1.4142135623730951},"371":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"369":{"tf":2.0},"371":{"tf":1.4142135623730951}}}}}},"o":{"df":6,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"285":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"279":{"tf":1.0},"8":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":18,"docs":{"111":{"tf":1.7320508075688772},"184":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"207":{"tf":1.4142135623730951},"241":{"tf":1.0},"251":{"tf":1.0},"307":{"tf":1.0},"33":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"369":{"tf":1.0},"404":{"tf":1.0},"442":{"tf":1.4142135623730951},"483":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"q":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"1":{"df":1,"docs":{"133":{"tf":1.0}}},"2":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"343":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":34,"docs":{"0":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":3.7416573867739413},"143":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"343":{"tf":2.8284271247461903},"365":{"tf":2.23606797749979},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":3.605551275463989},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"380":{"tf":1.0},"383":{"tf":1.0},"398":{"tf":1.0},"447":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":84,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.7320508075688772},"134":{"tf":1.0},"14":{"tf":2.0},"150":{"tf":1.0},"164":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"235":{"tf":1.7320508075688772},"260":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"281":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.4142135623730951},"362":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":1.0},"386":{"tf":1.4142135623730951},"39":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.0},"4":{"tf":1.4142135623730951},"403":{"tf":1.0},"407":{"tf":1.0},"409":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"454":{"tf":2.23606797749979},"457":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"296":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":2,"docs":{"262":{"tf":1.4142135623730951},"263":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"187":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"353":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"459":{"tf":1.0},"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"111":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"406":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":2.0},"455":{"tf":1.0},"458":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"403":{"tf":1.0},"406":{"tf":3.1622776601683795},"407":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"184":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":23,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"190":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.0},"288":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"299":{"tf":1.0},"302":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"143":{"tf":1.0},"169":{"tf":1.0},"292":{"tf":1.0},"3":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"389":{"tf":1.0},"414":{"tf":1.0},"433":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"132":{"tf":1.4142135623730951},"239":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":17,"docs":{"11":{"tf":1.7320508075688772},"132":{"tf":2.0},"14":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"202":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":1.0},"29":{"tf":1.0},"343":{"tf":1.4142135623730951},"369":{"tf":2.23606797749979},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"407":{"tf":1.0},"450":{"tf":1.0},"505":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":4,"docs":{"110":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"185":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"402":{"tf":1.0},"406":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":29,"docs":{"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.0},"343":{"tf":3.0},"344":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"165":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"193":{"tf":1.0},"310":{"tf":1.0},"455":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"439":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":20,"docs":{"132":{"tf":1.0},"150":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"207":{"tf":1.0},"266":{"tf":1.0},"33":{"tf":2.8284271247461903},"340":{"tf":1.0},"343":{"tf":7.280109889280518},"385":{"tf":1.0},"389":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"42":{"tf":1.0},"442":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"189":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"407":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":21,"docs":{"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.23606797749979},"379":{"tf":2.23606797749979},"380":{"tf":2.23606797749979},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":2.8284271247461903},"407":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"403":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"197":{"tf":1.4142135623730951},"280":{"tf":1.0},"392":{"tf":1.0},"427":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"253":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"229":{"tf":1.0},"401":{"tf":2.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"485":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"122":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"204":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"269":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"453":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"c":{"#":{"0":{"0":{"0":{"1":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":513,"docs":{"0":{"tf":1.0},"1":{"tf":2.0},"10":{"tf":1.0},"100":{"tf":1.7320508075688772},"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},"11":{"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},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.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},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"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.7320508075688772},"16":{"tf":1.0},"160":{"tf":2.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"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},"17":{"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},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":2.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":2.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"237":{"tf":2.449489742783178},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":2.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":2.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":2.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.7320508075688772},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":2.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.7320508075688772},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.7320508075688772},"349":{"tf":2.0},"35":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":2.449489742783178},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"365":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":2.0},"38":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"384":{"tf":2.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":2.23606797749979},"402":{"tf":1.0},"403":{"tf":1.7320508075688772},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"410":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.7320508075688772},"425":{"tf":2.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"429":{"tf":1.4142135623730951},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.0},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.7320508075688772},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"46":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":2.0},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":2.449489742783178},"487":{"tf":1.7320508075688772},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":2.0},"496":{"tf":2.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"51":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":15,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"328":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"392":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"61":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":4,"docs":{"146":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"172":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"355":{"tf":1.0}}},"k":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"184":{"tf":1.0},"269":{"tf":1.7320508075688772},"282":{"tf":1.0},"296":{"tf":1.0},"360":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"296":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"298":{"tf":1.0},"403":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"270":{"tf":1.0},"459":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"252":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"84":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"195":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"p":{"df":11,"docs":{"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":4.898979485566356},"166":{"tf":3.1622776601683795},"168":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"162":{"tf":1.0}}},"t":{"df":26,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"266":{"tf":1.7320508075688772},"297":{"tf":1.0},"369":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"132":{"tf":1.0},"243":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"128":{"tf":1.0},"131":{"tf":1.0},"190":{"tf":1.0},"35":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"296":{"tf":1.0},"366":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"296":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"p":{"c":{"df":4,"docs":{"102":{"tf":1.0},"235":{"tf":1.7320508075688772},"421":{"tf":1.0},"512":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"457":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}},"n":{"df":18,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":103,"docs":{"102":{"tf":1.4142135623730951},"115":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":2.6457513110645907},"145":{"tf":2.23606797749979},"146":{"tf":2.6457513110645907},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"151":{"tf":2.23606797749979},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"247":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"277":{"tf":2.449489742783178},"278":{"tf":1.0},"279":{"tf":2.0},"280":{"tf":1.7320508075688772},"281":{"tf":2.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"287":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.7320508075688772},"338":{"tf":2.23606797749979},"339":{"tf":1.4142135623730951},"340":{"tf":3.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":4.58257569495584},"344":{"tf":2.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"359":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":2.23606797749979},"385":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"387":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.7320508075688772},"390":{"tf":1.7320508075688772},"391":{"tf":2.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":2.23606797749979},"429":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"445":{"tf":1.0},"457":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":3.0},"484":{"tf":1.0},"485":{"tf":2.6457513110645907},"486":{"tf":2.0},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"494":{"tf":1.0},"511":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"399":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"81":{"tf":2.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"121":{"tf":1.0},"33":{"tf":1.0},"485":{"tf":1.0}}}}},"·":{"df":1,"docs":{"48":{"tf":1.0}},"s":{")":{"/":{"(":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{")":{"/":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"/":{"2":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"143":{"tf":1.0},"42":{"tf":1.0},"455":{"tf":1.0}}}},"k":{"a":{"c":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"193":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"253":{"tf":1.0},"255":{"tf":1.0},"308":{"tf":2.449489742783178},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":2.8284271247461903},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"190":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":29,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"189":{"tf":2.449489742783178},"190":{"tf":4.58257569495584},"191":{"tf":3.0},"193":{"tf":3.3166247903554},"199":{"tf":1.7320508075688772},"208":{"tf":1.0},"349":{"tf":2.23606797749979},"350":{"tf":2.0},"351":{"tf":2.0},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"383":{"tf":2.6457513110645907},"406":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"191":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"391":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.7320508075688772},"47":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"494":{"tf":1.0},"505":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":45,"docs":{"23":{"tf":2.6457513110645907},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"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.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.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}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"340":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"130":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"328":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"356":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":2.0}}}}},"df":21,"docs":{"102":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"217":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"290":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"343":{"tf":1.4142135623730951},"355":{"tf":1.0},"360":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":2.0},"51":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"251":{"tf":1.0}}},"n":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":7,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":9,"docs":{"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"194":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"296":{"tf":1.7320508075688772}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"194":{"tf":1.0},"369":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":9,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"27":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"494":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"#":{"1":{"7":{"8":{"1":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"7":{"9":{"6":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"3":{"3":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"2":{"1":{"7":{"7":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"154":{"tf":1.0},"196":{"tf":1.0}}}},"df":2,"docs":{"343":{"tf":1.0},"48":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"132":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"438":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"182":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"238":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.4142135623730951},"408":{"tf":1.0},"429":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":2.449489742783178},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0}}}}},"df":11,"docs":{"106":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"391":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"107":{"tf":1.0},"139":{"tf":1.0},"149":{"tf":2.0},"162":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"41":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":74,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":2.0},"201":{"tf":1.0},"211":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.7320508075688772},"249":{"tf":1.0},"256":{"tf":1.4142135623730951},"260":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"277":{"tf":1.0},"283":{"tf":1.4142135623730951},"288":{"tf":1.0},"290":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"308":{"tf":1.0},"317":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.4142135623730951},"365":{"tf":1.0},"371":{"tf":1.7320508075688772},"384":{"tf":1.0},"393":{"tf":1.7320508075688772},"402":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.7320508075688772},"423":{"tf":1.0},"425":{"tf":1.0},"431":{"tf":1.4142135623730951},"448":{"tf":1.0},"459":{"tf":1.4142135623730951},"467":{"tf":1.0},"473":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.0},"487":{"tf":1.4142135623730951},"495":{"tf":1.0},"505":{"tf":1.7320508075688772},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"196":{"tf":1.0}},"e":{"d":{"df":4,"docs":{"253":{"tf":1.0},"343":{"tf":1.7320508075688772},"43":{"tf":1.0},"471":{"tf":1.0}}},"df":27,"docs":{"101":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"258":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.0},"326":{"tf":1.0},"343":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":5,"docs":{"253":{"tf":1.0},"262":{"tf":1.0},"279":{"tf":1.0},"402":{"tf":1.0},"450":{"tf":1.0}}},"m":{"df":4,"docs":{"152":{"tf":1.0},"403":{"tf":1.0},"408":{"tf":1.4142135623730951},"423":{"tf":1.0}}},"n":{"df":4,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"173":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"35":{"tf":1.4142135623730951},"406":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"190":{"tf":1.0},"215":{"tf":2.23606797749979},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":3.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.0},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{"df":9,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"194":{"tf":1.4142135623730951},"253":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"l":{"df":4,"docs":{"182":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"351":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"193":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"217":{"tf":1.0},"296":{"tf":1.0}}}},"n":{"d":{"df":17,"docs":{"132":{"tf":1.0},"164":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"243":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":2.0},"371":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"328":{"tf":1.0},"334":{"tf":1.0},"471":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"313":{"tf":1.0}}}}},"s":{"df":6,"docs":{"297":{"tf":1.0},"383":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"298":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"406":{"tf":1.0}}}}},"t":{"df":7,"docs":{"106":{"tf":1.0},"208":{"tf":1.0},"239":{"tf":1.0},"328":{"tf":1.0},"369":{"tf":1.4142135623730951},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":1.0},"189":{"tf":1.0},"240":{"tf":1.0},"280":{"tf":1.0},"402":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"23":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":9,"docs":{"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":1,"docs":{"448":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"367":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":15,"docs":{"200":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":2.449489742783178},"503":{"tf":1.0},"512":{"tf":1.7320508075688772},"54":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"373":{"tf":1.0}}}},"i":{"c":{"df":7,"docs":{"184":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"125":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"225":{"tf":1.0},"298":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"477":{"tf":1.0},"500":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":14,"docs":{"467":{"tf":2.23606797749979},"468":{"tf":2.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":2.23606797749979},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"471":{"tf":1.0}},"s":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"471":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":47,"docs":{"111":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":2.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":1.7320508075688772},"193":{"tf":2.0},"205":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"308":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.7320508075688772},"404":{"tf":1.0},"416":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":2.0},"471":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.7320508075688772},"485":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"166":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"185":{"tf":1.0}}},"r":{"df":9,"docs":{"10":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"220":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0}}}}}},"h":{"a":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"0":{"df":0,"docs":{},"f":{"1":{"2":{"8":{"7":{"2":{"4":{"4":{"7":{"9":{"5":{"8":{"d":{"5":{"0":{"a":{"a":{"7":{"b":{"9":{"3":{"7":{"b":{"0":{"1":{"0":{"6":{"5":{"6":{"1":{"a":{"5":{"8":{"8":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"2":{"6":{"2":{"8":{"d":{"3":{"3":{"df":0,"docs":{},"f":{"8":{"1":{"b":{"5":{"3":{"6":{"1":{"b":{"1":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"8":{"d":{"df":0,"docs":{},"f":{"7":{"0":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"241":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"156":{"tf":1.4142135623730951},"191":{"tf":3.0},"233":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.7320508075688772},"359":{"tf":1.0},"363":{"tf":1.0},"439":{"tf":1.0},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"355":{"tf":1.0},"357":{"tf":1.0},"406":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"184":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"192":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"162":{"tf":1.0},"408":{"tf":1.0}}}},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"276":{"tf":1.0},"370":{"tf":1.0},"408":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":2.0},"121":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"137":{"tf":1.0}},"n":{"df":3,"docs":{"314":{"tf":1.0},"444":{"tf":1.0},"51":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"352":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":41,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.4142135623730951},"203":{"tf":1.0},"239":{"tf":1.7320508075688772},"270":{"tf":1.0},"281":{"tf":1.0},"328":{"tf":1.0},"338":{"tf":2.23606797749979},"339":{"tf":1.4142135623730951},"340":{"tf":2.23606797749979},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":2.0},"356":{"tf":1.4142135623730951},"357":{"tf":2.449489742783178},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.0},"423":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"343":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"99":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"23":{"tf":1.4142135623730951},"343":{"tf":2.449489742783178},"344":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"442":{"tf":1.0},"45":{"tf":5.0},"471":{"tf":2.6457513110645907},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":2.8284271247461903},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":17,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"191":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"471":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"108":{"tf":1.0},"45":{"tf":1.0}}},"df":29,"docs":{"100":{"tf":1.7320508075688772},"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.4142135623730951},"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":2.0},"43":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"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":4,"docs":{"168":{"tf":1.0},"329":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0}}}}}}},"df":6,"docs":{"164":{"tf":1.0},"177":{"tf":1.0},"274":{"tf":1.0},"3":{"tf":1.0},"406":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":1,"docs":{"230":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"190":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"43":{"tf":1.0},"485":{"tf":1.0},"499":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"293":{"tf":1.0},"344":{"tf":1.0},"369":{"tf":1.0},"502":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":13,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"250":{"tf":1.0},"297":{"tf":1.0},"337":{"tf":1.0},"362":{"tf":1.0},"398":{"tf":1.0},"420":{"tf":1.0},"51":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"293":{"tf":1.0},"297":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"369":{"tf":1.0},"407":{"tf":1.0}}},"df":10,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"293":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"407":{"tf":1.0}},"f":{"df":1,"docs":{"483":{"tf":1.0}},"i":{"df":3,"docs":{"297":{"tf":1.0},"400":{"tf":1.0},"44":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"297":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":19,"docs":{"111":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"204":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.0},"253":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"426":{"tf":1.0},"429":{"tf":2.0},"48":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"122":{"tf":1.0},"145":{"tf":1.0},"193":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"355":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"43":{"tf":1.0},"486":{"tf":1.7320508075688772},"497":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"408":{"tf":1.0}}},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":27,"docs":{"113":{"tf":1.7320508075688772},"129":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"239":{"tf":1.0},"328":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":4.898979485566356},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"371":{"tf":2.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":2.23606797749979},"442":{"tf":1.7320508075688772},"445":{"tf":1.4142135623730951},"453":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"393":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"369":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"295":{"tf":1.0},"296":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"395":{"tf":1.0},"406":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"114":{"tf":1.0},"347":{"tf":1.0},"360":{"tf":1.0},"407":{"tf":1.0},"472":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"357":{"tf":1.0},"359":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":22,"docs":{"184":{"tf":1.7320508075688772},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.7320508075688772},"23":{"tf":2.0},"24":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":3.872983346207417},"51":{"tf":4.123105625617661},"52":{"tf":2.0},"53":{"tf":1.0}}},"w":{"df":4,"docs":{"151":{"tf":1.0},"165":{"tf":1.0},"255":{"tf":1.0},"352":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"373":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"359":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"129":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"239":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":1.0},"414":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"194":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.0},"50":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"160":{"tf":2.23606797749979},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"168":{"tf":3.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"454":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"187":{"tf":1.4142135623730951},"205":{"tf":1.0},"216":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"195":{"tf":1.4142135623730951},"196":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":15,"docs":{"189":{"tf":1.7320508075688772},"190":{"tf":2.23606797749979},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"359":{"tf":2.0},"406":{"tf":1.0},"408":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}},"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"t":{"df":19,"docs":{"150":{"tf":1.0},"169":{"tf":1.0},"186":{"tf":2.6457513110645907},"193":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"240":{"tf":1.0},"276":{"tf":1.0},"352":{"tf":2.23606797749979},"362":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":2.6457513110645907},"453":{"tf":1.4142135623730951},"466":{"tf":1.0},"485":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"143":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"497":{"tf":1.0},"512":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"194":{"tf":1.0}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"2":{"df":1,"docs":{"194":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"254":{"tf":1.4142135623730951},"312":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"134":{"tf":1.0},"512":{"tf":1.0},"85":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"165":{"tf":1.0},"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"491":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":36,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"182":{"tf":1.0},"485":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}},"n":{"df":5,"docs":{"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"194":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"128":{"tf":1.0},"184":{"tf":1.0}}}},"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":8,"docs":{"114":{"tf":1.0},"129":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"235":{"tf":1.4142135623730951},"253":{"tf":1.0},"410":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"202":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":43,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"235":{"tf":2.449489742783178},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"326":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.4142135623730951},"393":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":2.6457513110645907},"198":{"tf":1.0},"237":{"tf":1.0},"313":{"tf":1.0},"369":{"tf":1.4142135623730951},"454":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"151":{"tf":1.0},"347":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"254":{"tf":1.0},"297":{"tf":1.0},"383":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"414":{"tf":2.23606797749979},"416":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"296":{"tf":1.0},"386":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"391":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"407":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"23":{"tf":1.0},"230":{"tf":1.0},"66":{"tf":2.23606797749979}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"313":{"tf":1.4142135623730951},"316":{"tf":1.0},"383":{"tf":1.0}}}},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"190":{"tf":1.0},"235":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"162":{"tf":1.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"164":{"tf":1.7320508075688772},"174":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"240":{"tf":1.7320508075688772},"340":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":5,"docs":{"150":{"tf":1.0},"187":{"tf":1.0},"275":{"tf":1.0},"298":{"tf":1.0},"455":{"tf":1.7320508075688772}}}},"k":{"df":0,"docs":{},"e":{"df":15,"docs":{"122":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":2.23606797749979},"230":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.7320508075688772},"295":{"tf":2.23606797749979},"297":{"tf":4.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"427":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":67,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":2.0},"195":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"23":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.4142135623730951},"249":{"tf":1.0},"252":{"tf":1.7320508075688772},"260":{"tf":1.0},"264":{"tf":1.4142135623730951},"277":{"tf":1.0},"28":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"288":{"tf":1.0},"291":{"tf":1.4142135623730951},"3":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.4142135623730951},"338":{"tf":1.0},"341":{"tf":1.7320508075688772},"349":{"tf":1.0},"353":{"tf":1.7320508075688772},"365":{"tf":1.0},"368":{"tf":1.4142135623730951},"379":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"387":{"tf":1.4142135623730951},"401":{"tf":1.0},"404":{"tf":1.7320508075688772},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"425":{"tf":1.0},"428":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.4142135623730951},"448":{"tf":1.0},"452":{"tf":1.4142135623730951},"467":{"tf":1.0},"470":{"tf":1.4142135623730951},"481":{"tf":1.0},"484":{"tf":1.4142135623730951},"495":{"tf":1.0},"498":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":6,"docs":{"206":{"tf":1.0},"211":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":1,"docs":{"5":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}}}},"t":{"df":51,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":2.23606797749979},"349":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"449":{"tf":1.0},"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"367":{"tf":1.0},"369":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":27,"docs":{"133":{"tf":1.0},"14":{"tf":2.0},"164":{"tf":1.0},"18":{"tf":1.4142135623730951},"290":{"tf":2.449489742783178},"293":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"343":{"tf":1.0},"378":{"tf":1.0},"403":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"72":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":2,"docs":{"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"189":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.4142135623730951},"343":{"tf":1.0},"456":{"tf":1.0}}}},"y":{"df":3,"docs":{"190":{"tf":1.0},"297":{"tf":1.0},"356":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.0}}}},"m":{"df":1,"docs":{"18":{"tf":1.0}}},"p":{"df":13,"docs":{"106":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":2.449489742783178},"255":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"334":{"tf":1.0},"39":{"tf":1.0},"429":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":19,"docs":{"130":{"tf":1.0},"133":{"tf":1.4142135623730951},"151":{"tf":1.0},"159":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"262":{"tf":1.0},"281":{"tf":1.4142135623730951},"294":{"tf":1.0},"397":{"tf":1.0},"403":{"tf":1.7320508075688772},"408":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"297":{"tf":1.0},"343":{"tf":3.4641016151377544}}},"r":{"a":{"df":0,"docs":{},"g":{"df":33,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"191":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"297":{"tf":1.0},"343":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"369":{"tf":2.23606797749979},"370":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"407":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":2.6457513110645907},"442":{"tf":1.4142135623730951},"453":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":10,"docs":{"438":{"tf":2.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"_":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"132":{"tf":1.0},"233":{"tf":2.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"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},"367":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.7320508075688772},"455":{"tf":1.7320508075688772},"456":{"tf":1.0},"457":{"tf":1.7320508075688772},"47":{"tf":1.0},"497":{"tf":1.7320508075688772},"505":{"tf":1.0}}},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"326":{"tf":1.0},"357":{"tf":1.0}}}}},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":9,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"407":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"370":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"280":{"tf":1.4142135623730951},"281":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"403":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"125":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.0},"290":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"186":{"tf":1.0},"240":{"tf":1.4142135623730951},"257":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"485":{"tf":1.0},"489":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"239":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":2,"docs":{"104":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"185":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"458":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"437":{"tf":1.0},"485":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"194":{"tf":2.23606797749979},"239":{"tf":1.0},"369":{"tf":1.0},"471":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"279":{"tf":1.0},"32":{"tf":2.23606797749979},"410":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"b":{"0":{"df":1,"docs":{"437":{"tf":1.0}}},"df":4,"docs":{"189":{"tf":1.0},"294":{"tf":1.0},"304":{"tf":1.0},"326":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"200":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"t":{"df":10,"docs":{"164":{"tf":1.7320508075688772},"297":{"tf":1.0},"36":{"tf":1.0},"406":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"22":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}},"t":{"df":6,"docs":{"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"38":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"a":{"c":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"421":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"170":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"340":{"tf":1.0},"466":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"173":{"tf":1.0},"237":{"tf":2.0},"326":{"tf":1.0},"328":{"tf":1.0},"345":{"tf":1.0},"387":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"239":{"tf":1.0},"325":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":12,"docs":{"143":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"455":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"486":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"191":{"tf":1.0},"209":{"tf":1.4142135623730951},"298":{"tf":1.0},"343":{"tf":3.1622776601683795},"383":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"191":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.4142135623730951},"457":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":36,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"217":{"tf":1.4142135623730951},"22":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"254":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"371":{"tf":1.7320508075688772},"373":{"tf":1.0},"383":{"tf":1.0},"408":{"tf":1.0},"434":{"tf":1.4142135623730951},"449":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"243":{"tf":1.0},"360":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"185":{"tf":1.0},"189":{"tf":1.0},"367":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"102":{"tf":1.0},"178":{"tf":1.0},"241":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"427":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"22":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.0},"399":{"tf":1.0},"402":{"tf":1.0},"450":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"150":{"tf":1.0},"16":{"tf":1.0},"279":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"185":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":60,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.4142135623730951},"425":{"tf":1.0},"426":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"343":{"tf":1.7320508075688772},"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"343":{"tf":1.0},"500":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"351":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":44,"docs":{"117":{"tf":1.0},"133":{"tf":1.7320508075688772},"144":{"tf":2.23606797749979},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"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.7320508075688772},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.4142135623730951},"297":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":3,"docs":{"373":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.0},"239":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":1.0},"483":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}},"g":{"df":1,"docs":{"360":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"163":{"tf":1.0},"343":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"383":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"162":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"378":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"348":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"280":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"239":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"223":{"tf":1.0},"295":{"tf":1.0}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"391":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"386":{"tf":1.0},"391":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"s":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"128":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"132":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":93,"docs":{"11":{"tf":1.4142135623730951},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"164":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"189":{"tf":2.6457513110645907},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":2.23606797749979},"216":{"tf":1.4142135623730951},"217":{"tf":2.8284271247461903},"218":{"tf":2.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"238":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":2.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"296":{"tf":1.4142135623730951},"297":{"tf":3.1622776601683795},"298":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.0},"35":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}}},"·":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"0":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"50":{"tf":1.0}}},"4":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"df":1,"docs":{"50":{"tf":1.0}}},":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"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":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":32,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":20,"docs":{"117":{"tf":1.0},"182":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"207":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"343":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.4142135623730951},"417":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":3,"docs":{"225":{"tf":1.0},"343":{"tf":1.0},"74":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"384":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"k":{"df":1,"docs":{"489":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":17,"docs":{"155":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"241":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":2.23606797749979},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":2.23606797749979},"505":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"100":{"tf":1.0},"143":{"tf":1.0},"189":{"tf":2.8284271247461903},"190":{"tf":1.4142135623730951},"191":{"tf":2.0},"194":{"tf":4.58257569495584},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"262":{"tf":1.0},"406":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"193":{"tf":1.0},"33":{"tf":2.449489742783178},"357":{"tf":1.7320508075688772},"48":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":18,"docs":{"100":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.7320508075688772},"25":{"tf":1.0},"251":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"281":{"tf":1.0},"353":{"tf":1.0},"387":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"441":{"tf":1.0},"446":{"tf":1.0},"450":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":21,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"172":{"tf":1.0},"194":{"tf":1.0},"216":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"310":{"tf":1.4142135623730951},"326":{"tf":1.0},"407":{"tf":1.4142135623730951},"411":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":8,"docs":{"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"404":{"tf":1.0},"95":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"429":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"152":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"402":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":2.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"241":{"tf":1.0},"255":{"tf":1.0},"276":{"tf":1.4142135623730951},"400":{"tf":1.0},"402":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.4142135623730951},"505":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":57,"docs":{"1":{"tf":1.0},"115":{"tf":1.7320508075688772},"123":{"tf":1.0},"135":{"tf":1.7320508075688772},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"160":{"tf":1.0},"174":{"tf":1.7320508075688772},"181":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":2.6457513110645907},"201":{"tf":1.0},"211":{"tf":1.7320508075688772},"215":{"tf":1.0},"223":{"tf":2.0},"225":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.4142135623730951},"249":{"tf":1.0},"256":{"tf":1.4142135623730951},"260":{"tf":1.0},"270":{"tf":1.7320508075688772},"277":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"288":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.7320508075688772},"308":{"tf":1.0},"317":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.4142135623730951},"365":{"tf":1.0},"371":{"tf":1.4142135623730951},"384":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":2.0},"412":{"tf":1.0},"418":{"tf":1.4142135623730951},"425":{"tf":1.0},"431":{"tf":1.7320508075688772},"448":{"tf":1.0},"459":{"tf":1.7320508075688772},"467":{"tf":1.0},"473":{"tf":2.0},"481":{"tf":1.0},"487":{"tf":1.4142135623730951},"495":{"tf":1.0},"505":{"tf":1.4142135623730951},"56":{"tf":2.0},"68":{"tf":1.0},"74":{"tf":2.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"197":{"tf":1.0},"270":{"tf":1.0},"298":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"253":{"tf":1.0},"254":{"tf":1.0}},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"357":{"tf":1.4142135623730951}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"367":{"tf":1.0},"371":{"tf":1.0},"410":{"tf":1.0}}}},"t":{"'":{"df":1,"docs":{"326":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"220":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.4142135623730951},"383":{"tf":1.0},"495":{"tf":1.0},"501":{"tf":2.449489742783178},"502":{"tf":1.0},"503":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}},"i":{"df":2,"docs":{"240":{"tf":1.0},"407":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"13":{"tf":1.0},"282":{"tf":1.0},"486":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":1.0},"406":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"192":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.0},"383":{"tf":1.0},"429":{"tf":1.0},"440":{"tf":1.0},"458":{"tf":1.0},"47":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"132":{"tf":1.0},"325":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.4142135623730951},"489":{"tf":1.0}}},"k":{"df":2,"docs":{"220":{"tf":1.0},"236":{"tf":1.0}}}},"r":{"d":{"df":3,"docs":{"154":{"tf":1.0},"207":{"tf":1.0},"312":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"119":{"tf":1.0},"166":{"tf":1.7320508075688772},"202":{"tf":1.0},"262":{"tf":1.0},"290":{"tf":1.0},"310":{"tf":1.0},"383":{"tf":1.0},"429":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"162":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"340":{"tf":1.0},"458":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"410":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"296":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"391":{"tf":1.0},"454":{"tf":1.0},"485":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"131":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"427":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"371":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"220":{"tf":1.0},"262":{"tf":1.0},"340":{"tf":1.0},"383":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.4142135623730951},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"406":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"164":{"tf":1.0},"179":{"tf":1.0},"296":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.0},"25":{"tf":1.0},"250":{"tf":1.0},"257":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.0},"367":{"tf":2.0},"371":{"tf":1.0},"427":{"tf":1.0},"477":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":15,"docs":{"23":{"tf":3.0},"35":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"38":{"tf":2.0},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"48":{"tf":5.291502622129181},"49":{"tf":2.449489742783178},"50":{"tf":3.7416573867739413},"51":{"tf":2.6457513110645907},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"i":{"d":{"df":2,"docs":{"48":{"tf":2.23606797749979},"50":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"326":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"400":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"456":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"e":{"df":61,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.7320508075688772},"150":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"267":{"tf":1.0},"274":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"310":{"tf":1.7320508075688772},"312":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.8284271247461903},"367":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"381":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":1.4142135623730951},"427":{"tf":2.0},"429":{"tf":1.4142135623730951},"440":{"tf":2.23606797749979},"450":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"415":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"190":{"tf":2.6457513110645907},"191":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":3.872983346207417}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.4142135623730951}}}}}}},"k":{"df":1,"docs":{"50":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"159":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"99":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"164":{"tf":1.0},"166":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"353":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":2.23606797749979},"404":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"217":{"tf":1.0},"269":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"349":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"114":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"149":{"tf":1.0},"165":{"tf":1.0},"262":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"137":{"tf":1.0},"163":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"237":{"tf":1.0},"464":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":3.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"194":{"tf":1.4142135623730951},"243":{"tf":1.0},"314":{"tf":1.0},"380":{"tf":1.0},"454":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"507":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"391":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"190":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0}}},"df":29,"docs":{"132":{"tf":1.0},"140":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"297":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":2.23606797749979},"413":{"tf":1.4142135623730951},"414":{"tf":3.0},"415":{"tf":1.4142135623730951},"416":{"tf":2.23606797749979},"417":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.449489742783178},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"122":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"194":{"tf":1.0},"353":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"160":{"tf":1.0},"173":{"tf":1.4142135623730951}}}}},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"243":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}},"t":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"392":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":37,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":2.0},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"206":{"tf":1.0},"217":{"tf":2.449489742783178},"218":{"tf":1.0},"220":{"tf":1.0},"262":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"324":{"tf":2.449489742783178},"325":{"tf":2.0},"326":{"tf":2.8284271247461903},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"329":{"tf":1.7320508075688772},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"42":{"tf":1.0},"44":{"tf":2.449489742783178},"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":9,"docs":{"113":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"367":{"tf":1.0},"406":{"tf":1.4142135623730951},"444":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":2,"docs":{"207":{"tf":1.0},"406":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"105":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.4142135623730951},"121":{"tf":1.0},"164":{"tf":1.0},"189":{"tf":1.0},"290":{"tf":2.23606797749979},"367":{"tf":1.0},"408":{"tf":1.0},"491":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"109":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":3,"docs":{"110":{"tf":2.0},"132":{"tf":1.0},"99":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"343":{"tf":1.0}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"412":{"tf":2.23606797749979},"413":{"tf":1.4142135623730951},"414":{"tf":2.23606797749979},"415":{"tf":1.4142135623730951},"416":{"tf":2.0},"417":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"424":{"tf":1.0}},"i":{"df":16,"docs":{"120":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.4142135623730951},"292":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"380":{"tf":1.0},"383":{"tf":3.1622776601683795},"414":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"104":{"tf":1.0},"194":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"102":{"tf":2.6457513110645907},"103":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"132":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"497":{"tf":1.0}}}},"df":5,"docs":{"129":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"399":{"tf":1.0},"407":{"tf":1.0},"497":{"tf":1.0}},"e":{"df":6,"docs":{"129":{"tf":1.0},"235":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":3.872983346207417},"370":{"tf":1.0},"440":{"tf":2.0}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"143":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"194":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"366":{"tf":1.0}},"l":{"df":1,"docs":{"360":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.0},"193":{"tf":1.4142135623730951},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"427":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"132":{"tf":1.4142135623730951},"163":{"tf":1.0},"369":{"tf":2.0},"407":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"184":{"tf":1.0},"217":{"tf":1.7320508075688772},"240":{"tf":1.0},"248":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"403":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"471":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"429":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"427":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"238":{"tf":1.0},"340":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":37,"docs":{"149":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.0},"206":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"295":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"334":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"367":{"tf":1.7320508075688772},"369":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"454":{"tf":1.4142135623730951},"483":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"72":{"tf":1.0}},"x":{"6":{"4":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"104":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"104":{"tf":1.0}}}}},"df":30,"docs":{"102":{"tf":2.0},"104":{"tf":3.605551275463989},"149":{"tf":1.4142135623730951},"181":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"194":{"tf":3.7416573867739413},"201":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"23":{"tf":1.0},"253":{"tf":1.0},"294":{"tf":1.0},"32":{"tf":1.4142135623730951},"326":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"369":{"tf":1.0},"407":{"tf":1.4142135623730951},"421":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":2.0},"476":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":9,"docs":{"204":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"370":{"tf":1.0},"423":{"tf":1.0},"445":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":1,"docs":{"357":{"tf":1.0}}}}},"·":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{".":{"df":1,"docs":{"313":{"tf":1.0}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"454":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"131":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":2.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"442":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"442":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"102":{"tf":1.7320508075688772},"194":{"tf":1.0},"42":{"tf":1.4142135623730951},"471":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.7320508075688772}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0}}}}}}}},"c":{"'":{"df":1,"docs":{"402":{"tf":1.0}}},"df":11,"docs":{"184":{"tf":1.0},"186":{"tf":2.23606797749979},"189":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"350":{"tf":1.0},"380":{"tf":1.0},"403":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0}}},"df":1,"docs":{"357":{"tf":1.0}},"i":{"df":2,"docs":{"257":{"tf":1.0},"291":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"122":{"tf":1.0},"251":{"tf":1.0},"403":{"tf":1.0},"417":{"tf":1.0},"427":{"tf":1.0},"99":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"189":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.4142135623730951}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"269":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"243":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"189":{"tf":1.0},"207":{"tf":1.0},"457":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"347":{"tf":1.4142135623730951},"373":{"tf":1.0},"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"349":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"429":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"426":{"tf":1.0},"429":{"tf":1.7320508075688772}}}}},"r":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"173":{"tf":1.0}}}}},"df":11,"docs":{"130":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"221":{"tf":1.0},"362":{"tf":1.0},"383":{"tf":1.0},"429":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.0},"501":{"tf":1.7320508075688772},"82":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"37":{"tf":1.0},"408":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"189":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"434":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"203":{"tf":1.0},"207":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"297":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"164":{"tf":1.0},"383":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":1,"docs":{"391":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"326":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"146":{"tf":1.0},"400":{"tf":1.0},"70":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"296":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":10,"docs":{"13":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.4142135623730951},"204":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"450":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"223":{"tf":1.0},"322":{"tf":1.0},"406":{"tf":1.0},"7":{"tf":2.0},"74":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}}}}}}},"df":1,"docs":{"72":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":7,"docs":{"165":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.7320508075688772},"201":{"tf":1.0},"213":{"tf":1.4142135623730951},"440":{"tf":1.0},"510":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"32":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"164":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"184":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":2.0},"268":{"tf":1.0},"274":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"326":{"tf":1.0},"383":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"125":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"307":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"449":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":52,"docs":{"1":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"179":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.0},"275":{"tf":1.4142135623730951},"277":{"tf":1.0},"286":{"tf":1.4142135623730951},"288":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"336":{"tf":1.4142135623730951},"338":{"tf":1.0},"347":{"tf":1.4142135623730951},"365":{"tf":1.0},"377":{"tf":1.4142135623730951},"384":{"tf":1.0},"399":{"tf":1.4142135623730951},"401":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.0},"423":{"tf":1.4142135623730951},"425":{"tf":1.0},"436":{"tf":1.4142135623730951},"448":{"tf":1.0},"465":{"tf":1.4142135623730951},"467":{"tf":1.0},"479":{"tf":1.4142135623730951},"481":{"tf":1.0},"493":{"tf":1.4142135623730951},"495":{"tf":1.0},"511":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"442":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"292":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"24":{"tf":1.0},"241":{"tf":1.0},"267":{"tf":1.0},"343":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.4142135623730951},"505":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"192":{"tf":1.0},"240":{"tf":1.0},"439":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"270":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"194":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"48":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"134":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"194":{"tf":1.7320508075688772},"223":{"tf":1.0},"235":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"266":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.7320508075688772},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.0},"397":{"tf":1.0},"421":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.7320508075688772},"54":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.0},"220":{"tf":1.4142135623730951},"235":{"tf":1.0},"241":{"tf":1.0},"262":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"355":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.4142135623730951},"48":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.4142135623730951},"505":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":16,"docs":{"119":{"tf":1.0},"123":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":3.1622776601683795},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"156":{"tf":1.0},"195":{"tf":1.4142135623730951},"227":{"tf":1.0},"266":{"tf":1.0},"281":{"tf":1.0},"359":{"tf":1.0},"446":{"tf":1.0},"457":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"371":{"tf":1.0},"457":{"tf":1.0},"486":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"120":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"280":{"tf":1.0},"403":{"tf":1.0},"450":{"tf":1.0},"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"129":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":21,"docs":{"118":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"168":{"tf":2.449489742783178},"169":{"tf":1.0},"176":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"366":{"tf":1.0},"383":{"tf":1.0},"41":{"tf":1.0},"421":{"tf":1.0},"445":{"tf":1.0},"476":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"21":{"tf":1.0}}}},"c":{"df":2,"docs":{"162":{"tf":1.0},"163":{"tf":1.0}}},"df":3,"docs":{"13":{"tf":1.4142135623730951},"177":{"tf":1.0},"313":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"313":{"tf":1.7320508075688772}}}},"df":116,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":2.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"240":{"tf":2.0},"241":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.4142135623730951},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":2.23606797749979},"343":{"tf":2.449489742783178},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"357":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.7320508075688772},"373":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"403":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.7320508075688772},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"462":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"48":{"tf":2.6457513110645907},"485":{"tf":1.7320508075688772},"49":{"tf":1.0},"501":{"tf":1.4142135623730951},"51":{"tf":2.449489742783178},"511":{"tf":1.0},"512":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":2.449489742783178},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"297":{"tf":1.0}}},"df":30,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"297":{"tf":1.4142135623730951},"303":{"tf":1.0},"391":{"tf":1.0},"397":{"tf":1.0},"404":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.4142135623730951},"454":{"tf":1.0},"469":{"tf":1.7320508075688772},"472":{"tf":1.0},"476":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"471":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":27,"docs":{"164":{"tf":1.4142135623730951},"166":{"tf":2.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"35":{"tf":1.0},"383":{"tf":1.4142135623730951},"396":{"tf":1.0},"403":{"tf":1.0},"438":{"tf":2.0},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.0},"52":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"235":{"tf":1.0}}}},"v":{"0":{"df":2,"docs":{"102":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},".":{"0":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"149":{"tf":2.0},"150":{"tf":2.0},"152":{"tf":1.4142135623730951},"156":{"tf":1.0},"163":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"2":{"+":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"454":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"454":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"457":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":59,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"133":{"tf":2.8284271247461903},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.8284271247461903},"191":{"tf":1.0},"217":{"tf":2.0},"218":{"tf":1.0},"23":{"tf":1.7320508075688772},"234":{"tf":1.0},"24":{"tf":1.4142135623730951},"262":{"tf":1.0},"290":{"tf":1.7320508075688772},"294":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"429":{"tf":1.0},"45":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"451":{"tf":2.0},"453":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":2.449489742783178},"456":{"tf":1.0},"457":{"tf":2.0},"458":{"tf":1.0},"47":{"tf":2.0},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":3.1622776601683795},"49":{"tf":2.0},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"295":{"tf":1.0},"296":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"407":{"tf":1.4142135623730951}}}},"df":59,"docs":{"1":{"tf":1.0},"102":{"tf":2.23606797749979},"103":{"tf":1.0},"111":{"tf":2.0},"113":{"tf":1.0},"13":{"tf":2.449489742783178},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"193":{"tf":2.449489742783178},"194":{"tf":2.0},"207":{"tf":2.23606797749979},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":5.196152422706632},"351":{"tf":1.0},"356":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":3.605551275463989},"369":{"tf":2.6457513110645907},"371":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"468":{"tf":1.0},"47":{"tf":2.0},"471":{"tf":1.4142135623730951},"48":{"tf":2.8284271247461903},"482":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.0},"501":{"tf":1.4142135623730951},"507":{"tf":1.0},"54":{"tf":1.7320508075688772},"7":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"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":{"343":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"239":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"104":{"tf":3.1622776601683795},"235":{"tf":1.0},"406":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"190":{"tf":1.0},"217":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":11,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"235":{"tf":1.0},"262":{"tf":1.0},"401":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"409":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"146":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"343":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{"c":{"!":{"[":{"(":{"a":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"325":{"tf":1.0},"326":{"tf":1.7320508075688772},"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"8":{"df":3,"docs":{"102":{"tf":2.0},"132":{"tf":1.4142135623730951},"471":{"tf":2.0}}},"df":0,"docs":{}}},"df":3,"docs":{"194":{"tf":3.0},"325":{"tf":1.0},"328":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":27,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"224":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"262":{"tf":1.4142135623730951},"303":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.7320508075688772},"383":{"tf":1.0},"406":{"tf":1.0},"409":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"499":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":13,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"23":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"468":{"tf":1.0},"473":{"tf":1.0},"52":{"tf":2.0},"83":{"tf":1.0},"95":{"tf":1.4142135623730951}},"i":{"df":17,"docs":{"122":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"240":{"tf":1.0},"343":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"144":{"tf":1.0},"145":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":39,"docs":{"102":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.449489742783178},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"156":{"tf":1.0},"235":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":5.916079783099616},"348":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.0},"434":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":3.4641016151377544},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"l":{"df":2,"docs":{"450":{"tf":1.0},"485":{"tf":1.0}}}},"df":22,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"139":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"227":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"355":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"187":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}},"i":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"390":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"169":{"tf":1.0},"184":{"tf":1.0},"343":{"tf":3.4641016151377544}}}},"df":1,"docs":{"191":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"350":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"165":{"tf":1.0}},"p":{"df":1,"docs":{"204":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"295":{"tf":1.0},"298":{"tf":1.0}}},"d":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"383":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":20,"docs":{"143":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"262":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"425":{"tf":2.23606797749979},"426":{"tf":3.4641016151377544},"427":{"tf":2.449489742783178},"428":{"tf":1.0},"429":{"tf":4.47213595499958},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0}},"r":{"df":4,"docs":{"220":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}},"s":{"(":{"1":{"6":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}},"s":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":9,"docs":{"23":{"tf":2.23606797749979},"41":{"tf":2.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"61":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"42":{"tf":2.0},"43":{"tf":2.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"43":{"tf":2.23606797749979},"44":{"tf":1.0},"45":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"51":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":2.0},"45":{"tf":2.8284271247461903},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"423":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"217":{"tf":1.0}}}}}}},"·":{"2":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"310":{"tf":1.0},"322":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"193":{"tf":1.4142135623730951},"367":{"tf":1.0},"407":{"tf":1.0},"455":{"tf":1.0},"491":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"367":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.7320508075688772},"241":{"tf":1.0},"254":{"tf":1.0},"360":{"tf":1.0},"410":{"tf":1.0},"434":{"tf":1.0},"466":{"tf":1.0},"497":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":3,"docs":{"378":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"329":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"262":{"tf":1.7320508075688772},"263":{"tf":1.4142135623730951},"269":{"tf":1.0}}}}}}}}},"df":10,"docs":{"146":{"tf":1.7320508075688772},"150":{"tf":2.0},"155":{"tf":1.0},"165":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"340":{"tf":1.0},"483":{"tf":2.23606797749979},"485":{"tf":2.0},"486":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"162":{"tf":1.0},"296":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"48":{"tf":1.0}}}},"y":{"df":36,"docs":{"111":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"22":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"262":{"tf":1.0},"269":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"414":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"505":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":2,"docs":{"485":{"tf":1.0},"489":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772}}}},"b":{"3":{"df":6,"docs":{"162":{"tf":1.0},"197":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"190":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"407":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"160":{"tf":1.0},"168":{"tf":2.449489742783178},"176":{"tf":1.0},"194":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":2.23606797749979},"442":{"tf":1.0},"447":{"tf":1.0},"475":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"169":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"434":{"tf":1.0},"455":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"281":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"189":{"tf":1.0},"191":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"192":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"132":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"423":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"253":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"190":{"tf":1.0},"217":{"tf":1.0},"424":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"207":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"312":{"tf":1.0},"369":{"tf":1.7320508075688772},"500":{"tf":1.0},"502":{"tf":1.0},"505":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"164":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"185":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"407":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"48":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"407":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"328":{"tf":1.0},"369":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"420":{"tf":1.0}}},"h":{"df":4,"docs":{"253":{"tf":1.0},"406":{"tf":1.0},"415":{"tf":1.0},"429":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":3,"docs":{"164":{"tf":1.7320508075688772},"168":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"163":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"235":{"tf":1.0},"247":{"tf":1.0},"27":{"tf":1.0},"295":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"328":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.4142135623730951},"35":{"tf":1.0},"383":{"tf":1.0},"403":{"tf":2.0},"407":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"511":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"122":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"184":{"tf":1.0},"203":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"408":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"453":{"tf":1.0},"455":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":5,"docs":{"181":{"tf":1.0},"201":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"437":{"tf":1.0}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"131":{"tf":1.0},"328":{"tf":1.0},"369":{"tf":1.7320508075688772},"406":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":26,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.7320508075688772},"241":{"tf":1.0},"280":{"tf":1.4142135623730951},"293":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"367":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"194":{"tf":3.1622776601683795},"209":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"191":{"tf":1.4142135623730951},"194":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"185":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"165":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"340":{"tf":1.0},"373":{"tf":1.0},"403":{"tf":1.0},"409":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"177":{"tf":1.0},"190":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"343":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"164":{"tf":1.0},"238":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":5.656854249492381}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"163":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.4142135623730951},"326":{"tf":1.0},"343":{"tf":2.6457513110645907}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{".":{"0":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"d":{"df":1,"docs":{"357":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"169":{"tf":1.4142135623730951}},"m":{"df":25,"docs":{"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.4142135623730951},"223":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}},"df":3,"docs":{"33":{"tf":2.6457513110645907},"357":{"tf":1.0},"48":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"238":{"tf":1.0},"501":{"tf":1.0}}},"df":1,"docs":{"191":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"357":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"156":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"408":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"144":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"128":{"tf":1.4142135623730951},"177":{"tf":1.0},"193":{"tf":1.4142135623730951},"208":{"tf":1.0},"343":{"tf":2.0}}}}},"k":{"df":6,"docs":{"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"164":{"tf":1.0},"178":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"title":{"root":{"0":{"0":{"0":{"0":{"df":2,"docs":{"1":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":1,"docs":{"338":{"tf":1.0}}},"6":{"df":1,"docs":{"349":{"tf":1.0}}},"7":{"df":1,"docs":{"215":{"tf":1.0}}},"8":{"df":1,"docs":{"233":{"tf":1.0}}},"9":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"379":{"tf":1.0}}},"2":{"df":1,"docs":{"249":{"tf":1.0}}},"3":{"df":1,"docs":{"384":{"tf":1.0}}},"4":{"df":1,"docs":{"260":{"tf":1.0}}},"5":{"df":1,"docs":{"401":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"412":{"tf":1.0}}},"2":{"df":1,"docs":{"277":{"tf":1.0}}},"6":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"288":{"tf":1.0}}},"5":{"df":1,"docs":{"425":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"81":{"tf":1.0}}},"3":{"df":1,"docs":{"438":{"tf":1.0}}},"4":{"df":1,"docs":{"448":{"tf":1.0}}},"7":{"df":1,"docs":{"123":{"tf":1.0}}},"8":{"df":1,"docs":{"467":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"308":{"tf":1.0}}},"4":{"df":1,"docs":{"481":{"tf":1.0}}},"6":{"df":1,"docs":{"324":{"tf":1.0}}},"9":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"144":{"tf":1.0}}},"6":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"61":{"tf":1.0}}},"1":{"df":1,"docs":{"62":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"64":{"tf":1.0}}},"2":{"df":1,"docs":{"65":{"tf":1.0}}},"3":{"df":1,"docs":{"66":{"tf":1.0}}},"4":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"63":{"tf":1.0}}},"df":2,"docs":{"181":{"tf":1.0},"25":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"2":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"3":{".":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"2":{"df":1,"docs":{"33":{"tf":1.0}}},"3":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"2":{"df":1,"docs":{"37":{"tf":1.0}}},"3":{"df":1,"docs":{"38":{"tf":1.0}}},"4":{"df":1,"docs":{"39":{"tf":1.0}}},"5":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}},"5":{".":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"2":{"df":1,"docs":{"43":{"tf":1.0}}},"3":{"df":1,"docs":{"44":{"tf":1.0}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"201":{"tf":1.0},"41":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.0}}},"3":{"df":1,"docs":{"49":{"tf":1.0}}},"4":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"df":1,"docs":{"51":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}}},"7":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}}},"7":{"df":1,"docs":{"55":{"tf":1.0}}},"8":{"df":1,"docs":{"56":{"tf":1.0}}},"9":{".":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"3":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"57":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"d":{"df":3,"docs":{"160":{"tf":1.0},"495":{"tf":1.0},"81":{"tf":1.0}}},"df":1,"docs":{"249":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"144":{"tf":1.0},"168":{"tf":1.0},"296":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"213":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"384":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":28,"docs":{"120":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"305":{"tf":1.0},"322":{"tf":1.0},"335":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0},"376":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0},"422":{"tf":1.0},"435":{"tf":1.0},"447":{"tf":1.0},"464":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0},"510":{"tf":1.0},"61":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"313":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":5,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"123":{"tf":1.0},"131":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"129":{"tf":1.0},"130":{"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":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"169":{"tf":1.0},"448":{"tf":1.0},"495":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"407":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"d":{"df":2,"docs":{"38":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"384":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"438":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"349":{"tf":1.0},"406":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"495":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"111":{"tf":1.0},"191":{"tf":1.0},"233":{"tf":1.0},"503":{"tf":1.0},"64":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"267":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"123":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"150":{"tf":1.0},"365":{"tf":1.0},"481":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"128":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"249":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":49,"docs":{"116":{"tf":1.0},"119":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"196":{"tf":1.0},"20":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"273":{"tf":1.0},"284":{"tf":1.0},"301":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"443":{"tf":1.0},"446":{"tf":1.0},"460":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"488":{"tf":1.0},"491":{"tf":1.0},"506":{"tf":1.0},"509":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"481":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"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":{"360":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"412":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"389":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"384":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"181":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"349":{"tf":1.0},"379":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"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":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"+":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"32":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"425":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"297":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"8":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"401":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"165":{"tf":1.0},"29":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"233":{"tf":1.0},"238":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":23,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"337":{"tf":1.0},"378":{"tf":1.0},"400":{"tf":1.0},"424":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"480":{"tf":1.0},"494":{"tf":1.0},"512":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"495":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"229":{"tf":1.0},"408":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"208":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":29,"docs":{"112":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"173":{"tf":1.0},"199":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0},"240":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0},"329":{"tf":1.0},"345":{"tf":1.0},"361":{"tf":1.0},"370":{"tf":1.0},"392":{"tf":1.0},"409":{"tf":1.0},"417":{"tf":1.0},"430":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"412":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"456":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"128":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":49,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"257":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"m":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"df":2,"docs":{"169":{"tf":1.0},"171":{"tf":1.0}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":30,"docs":{"101":{"tf":1.0},"127":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"188":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0},"237":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"312":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"354":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"388":{"tf":1.0},"405":{"tf":1.0},"416":{"tf":1.0},"429":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"485":{"tf":1.0},"499":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"12":{"tf":1.0},"131":{"tf":1.0},"191":{"tf":1.0},"295":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"357":{"tf":1.0},"438":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"408":{"tf":1.0},"9":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":25,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"337":{"tf":1.0},"348":{"tf":1.0},"363":{"tf":1.0},"378":{"tf":1.0},"400":{"tf":1.0},"424":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"480":{"tf":1.0},"494":{"tf":1.0},"512":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"467":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":1,"docs":{"481":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"338":{"tf":1.0},"343":{"tf":1.0},"438":{"tf":1.0}}}}},"u":{"b":{"df":2,"docs":{"1":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"260":{"tf":1.0},"365":{"tf":1.0},"438":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"!":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"165":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"230":{"tf":1.0},"42":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"144":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"201":{"tf":1.0},"294":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"438":{"tf":1.0}},"t":{"df":3,"docs":{"0":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"1":{"tf":1.0},"298":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"209":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"192":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"337":{"tf":1.0},"378":{"tf":1.0},"400":{"tf":1.0},"424":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"480":{"tf":1.0},"494":{"tf":1.0},"512":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"m":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"260":{"tf":1.0},"495":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"338":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"105":{"tf":1.0}}},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"207":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"293":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"169":{"tf":1.0},"448":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"412":{"tf":1.0},"425":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":31,"docs":{"125":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"183":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"262":{"tf":1.0},"279":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.0},"310":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"403":{"tf":1.0},"414":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"469":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"97":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"132":{"tf":1.0},"239":{"tf":1.0},"365":{"tf":1.0}}}}}}},"w":{"df":6,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.0},"343":{"tf":1.0}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"495":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"95":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"324":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"189":{"tf":1.0},"355":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"467":{"tf":1.0}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"481":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"456":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"233":{"tf":1.0},"260":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"457":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":49,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.0},"284":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"412":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"160":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"348":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"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":{"43":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"184":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"349":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":29,"docs":{"120":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"305":{"tf":1.0},"322":{"tf":1.0},"335":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0},"376":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0},"422":{"tf":1.0},"435":{"tf":1.0},"447":{"tf":1.0},"464":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0},"510":{"tf":1.0},"61":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":26,"docs":{"115":{"tf":1.0},"135":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"393":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"473":{"tf":1.0},"487":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"249":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"467":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"267":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"132":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"35":{"tf":1.0},"365":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"238":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"33":{"tf":1.0},"358":{"tf":1.0}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"121":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"21":{"tf":1.0},"231":{"tf":1.0},"247":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"286":{"tf":1.0},"306":{"tf":1.0},"323":{"tf":1.0},"336":{"tf":1.0},"347":{"tf":1.0},"377":{"tf":1.0},"399":{"tf":1.0},"411":{"tf":1.0},"423":{"tf":1.0},"436":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"o":{"df":1,"docs":{"266":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}}}}},"df":1,"docs":{"457":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"120":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"246":{"tf":1.0},"258":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"305":{"tf":1.0},"322":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"376":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0},"422":{"tf":1.0},"435":{"tf":1.0},"447":{"tf":1.0},"464":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0},"510":{"tf":1.0},"61":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}},"r":{"df":4,"docs":{"238":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"501":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"337":{"tf":1.0},"378":{"tf":1.0},"400":{"tf":1.0},"424":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"480":{"tf":1.0},"494":{"tf":1.0},"512":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}},"y":{"df":2,"docs":{"233":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"254":{"tf":1.0},"338":{"tf":1.0},"481":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"448":{"tf":1.0},"456":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"365":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"186":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"263":{"tf":1.0},"352":{"tf":1.0},"4":{"tf":1.0},"451":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"379":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"401":{"tf":1.0}}}}}}}},"f":{"c":{"df":31,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"349":{"tf":1.0},"365":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"277":{"tf":1.0},"338":{"tf":1.0},"384":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}}}}}},"s":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"308":{"tf":1.0},"313":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"349":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"502":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":27,"docs":{"115":{"tf":1.0},"135":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"174":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"393":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"473":{"tf":1.0},"487":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"467":{"tf":1.0}}}}}}}}}},"t":{"df":1,"docs":{"221":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"113":{"tf":1.0},"221":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"38":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"149":{"tf":1.0},"150":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"66":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":31,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"187":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"236":{"tf":1.0},"252":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"291":{"tf":1.0},"311":{"tf":1.0},"327":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"368":{"tf":1.0},"382":{"tf":1.0},"387":{"tf":1.0},"404":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"470":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"438":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"233":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"36":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":30,"docs":{"124":{"tf":1.0},"145":{"tf":1.0},"161":{"tf":1.0},"182":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"250":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.0},"339":{"tf":1.0},"350":{"tf":1.0},"366":{"tf":1.0},"380":{"tf":1.0},"385":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"439":{"tf":1.0},"449":{"tf":1.0},"468":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"130":{"tf":1.0}}}},"df":5,"docs":{"184":{"tf":1.0},"215":{"tf":1.0},"249":{"tf":1.0},"407":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"115":{"tf":1.0},"135":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"174":{"tf":1.0},"197":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"270":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"393":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"473":{"tf":1.0},"487":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"412":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"173":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"113":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"412":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"34":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"207":{"tf":1.0}}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"213":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":26,"docs":{"121":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"21":{"tf":1.0},"231":{"tf":1.0},"247":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"286":{"tf":1.0},"306":{"tf":1.0},"323":{"tf":1.0},"336":{"tf":1.0},"347":{"tf":1.0},"377":{"tf":1.0},"399":{"tf":1.0},"411":{"tf":1.0},"423":{"tf":1.0},"436":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"123":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"425":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":5,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"x":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"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":["introduction.html#introduction","proposed/000x-lowering-deposits-assethub.html#rfc-0000-lowering-nft-deposits-on-polkadot-and-kusama-asset-hubs","proposed/000x-lowering-deposits-assethub.html#summary","proposed/000x-lowering-deposits-assethub.html#motivation","proposed/000x-lowering-deposits-assethub.html#requirements","proposed/000x-lowering-deposits-assethub.html#stakeholders","proposed/000x-lowering-deposits-assethub.html#explanation","proposed/000x-lowering-deposits-assethub.html#current-code-structure","proposed/000x-lowering-deposits-assethub.html#proposed-modification-using-the-deposit-function","proposed/000x-lowering-deposits-assethub.html#enhanced-approach-to-further-lower-barriers-for-entry","proposed/000x-lowering-deposits-assethub.html#discussion-of-other-proposals","proposed/000x-lowering-deposits-assethub.html#enhanced-weak-governance-origin-model","proposed/000x-lowering-deposits-assethub.html#function-based-pricing-model","proposed/000x-lowering-deposits-assethub.html#linking-deposit-to-usdx-value","proposed/000x-lowering-deposits-assethub.html#drawbacks","proposed/000x-lowering-deposits-assethub.html#testing-security-and-privacy","proposed/000x-lowering-deposits-assethub.html#security-concerns","proposed/000x-lowering-deposits-assethub.html#performance-ergonomics-and-compatibility","proposed/000x-lowering-deposits-assethub.html#performance","proposed/000x-lowering-deposits-assethub.html#ergonomics","proposed/000x-lowering-deposits-assethub.html#compatibility","proposed/000x-lowering-deposits-assethub.html#unresolved-questions","proposed/000x-lowering-deposits-assethub.html#future-directions-and-related-material","proposed/0026-sassafras-consensus.html#rfc-0026-sassafras-consensus-protocol","proposed/0026-sassafras-consensus.html#abstract","proposed/0026-sassafras-consensus.html#1-motivation","proposed/0026-sassafras-consensus.html#11-relevance-to-implementors","proposed/0026-sassafras-consensus.html#12-supporting-sassafras-for-polkadot","proposed/0026-sassafras-consensus.html#2-stakeholders","proposed/0026-sassafras-consensus.html#21-blockchain-developers","proposed/0026-sassafras-consensus.html#22-polkadot-ecosystem-contributors","proposed/0026-sassafras-consensus.html#3-notation-and-convention","proposed/0026-sassafras-consensus.html#31-data-structures-definitions-and-encoding","proposed/0026-sassafras-consensus.html#32-pseudo-code","proposed/0026-sassafras-consensus.html#33-incremental-introduction-of-types-and-functions","proposed/0026-sassafras-consensus.html#4-protocol-introduction","proposed/0026-sassafras-consensus.html#41-submission-of-candidate-tickets","proposed/0026-sassafras-consensus.html#42-validation-of-candidate-tickets","proposed/0026-sassafras-consensus.html#43-tickets-and-slots-binding","proposed/0026-sassafras-consensus.html#44-claim-of-ticket-ownership","proposed/0026-sassafras-consensus.html#45-validation-of-ticket-ownership","proposed/0026-sassafras-consensus.html#5-bandersnatch-vrfs-cryptographic-primitives","proposed/0026-sassafras-consensus.html#51-vrf-input","proposed/0026-sassafras-consensus.html#52-vrf-preoutput","proposed/0026-sassafras-consensus.html#53-vrf-signature-data","proposed/0026-sassafras-consensus.html#54-vrf-signature","proposed/0026-sassafras-consensus.html#6-sassafras-protocol","proposed/0026-sassafras-consensus.html#61-epochs-first-block","proposed/0026-sassafras-consensus.html#62-creation-and-submission-of-candidate-tickets","proposed/0026-sassafras-consensus.html#63-validation-of-candidate-tickets","proposed/0026-sassafras-consensus.html#64-ticket-slot-binding","proposed/0026-sassafras-consensus.html#65-slot-claim-production","proposed/0026-sassafras-consensus.html#66-slot-claim-verification","proposed/0026-sassafras-consensus.html#661-primary-method","proposed/0026-sassafras-consensus.html#67-randomness-accumulator","proposed/0026-sassafras-consensus.html#7-drawbacks","proposed/0026-sassafras-consensus.html#8-testing-security-and-privacy","proposed/0026-sassafras-consensus.html#9-performance-ergonomics-and-compatibility","proposed/0026-sassafras-consensus.html#91-performance","proposed/0026-sassafras-consensus.html#92-ergonomics","proposed/0026-sassafras-consensus.html#93-compatibility","proposed/0026-sassafras-consensus.html#10-prior-art-and-references","proposed/0026-sassafras-consensus.html#11-unresolved-questions","proposed/0026-sassafras-consensus.html#12-future-directions-and-related-material","proposed/0026-sassafras-consensus.html#121-interactions-with-on-chain-code","proposed/0026-sassafras-consensus.html#122-deployment-strategies","proposed/0026-sassafras-consensus.html#123-zk-snark-srs-initialization","proposed/0026-sassafras-consensus.html#124-anonymous-submission-of-tickets","proposed/0034-xcm-absolute-location-account-derivation.html#rfc-34-xcm-absolute-location-account-derivation","proposed/0034-xcm-absolute-location-account-derivation.html#summary","proposed/0034-xcm-absolute-location-account-derivation.html#motivation","proposed/0034-xcm-absolute-location-account-derivation.html#stakeholders","proposed/0034-xcm-absolute-location-account-derivation.html#explanation","proposed/0034-xcm-absolute-location-account-derivation.html#drawbacks","proposed/0034-xcm-absolute-location-account-derivation.html#testing-security-and-privacy","proposed/0034-xcm-absolute-location-account-derivation.html#performance-ergonomics-and-compatibility","proposed/0034-xcm-absolute-location-account-derivation.html#performance","proposed/0034-xcm-absolute-location-account-derivation.html#ergonomics","proposed/0034-xcm-absolute-location-account-derivation.html#compatibility","proposed/0034-xcm-absolute-location-account-derivation.html#prior-art-and-references","proposed/0034-xcm-absolute-location-account-derivation.html#unresolved-questions","proposed/0042-extrinsics-state-version.html#rfc-0042-add-system-version-that-replaces-stateversion-on-runtimeversion","proposed/0042-extrinsics-state-version.html#summary","proposed/0042-extrinsics-state-version.html#motivation","proposed/0042-extrinsics-state-version.html#stakeholders","proposed/0042-extrinsics-state-version.html#explanation","proposed/0042-extrinsics-state-version.html#drawbacks","proposed/0042-extrinsics-state-version.html#testing-security-and-privacy","proposed/0042-extrinsics-state-version.html#performance-ergonomics-and-compatibility","proposed/0042-extrinsics-state-version.html#performance","proposed/0042-extrinsics-state-version.html#ergonomics","proposed/0042-extrinsics-state-version.html#compatibility","proposed/0042-extrinsics-state-version.html#prior-art-and-references","proposed/0042-extrinsics-state-version.html#unresolved-questions","proposed/0042-extrinsics-state-version.html#future-directions-and-related-material","proposed/0046-metadata-for-offline-signers.html#rfc-0000-metadata-for-offline-signers","proposed/0046-metadata-for-offline-signers.html#summary","proposed/0046-metadata-for-offline-signers.html#motivation","proposed/0046-metadata-for-offline-signers.html#background","proposed/0046-metadata-for-offline-signers.html#solution-requirements","proposed/0046-metadata-for-offline-signers.html#stakeholders","proposed/0046-metadata-for-offline-signers.html#explanation","proposed/0046-metadata-for-offline-signers.html#definitions","proposed/0046-metadata-for-offline-signers.html#general-flow","proposed/0046-metadata-for-offline-signers.html#metadata-modularization","proposed/0046-metadata-for-offline-signers.html#merging-protocol","proposed/0046-metadata-for-offline-signers.html#complete-binary-merkle-tree-construction-protocol","proposed/0046-metadata-for-offline-signers.html#digest","proposed/0046-metadata-for-offline-signers.html#chain-verification","proposed/0046-metadata-for-offline-signers.html#drawbacks","proposed/0046-metadata-for-offline-signers.html#increased-transaction-size","proposed/0046-metadata-for-offline-signers.html#transition-overhead","proposed/0046-metadata-for-offline-signers.html#testing-security-and-privacy","proposed/0046-metadata-for-offline-signers.html#performance-ergonomics-and-compatibility","proposed/0046-metadata-for-offline-signers.html#performance","proposed/0046-metadata-for-offline-signers.html#ergonomics","proposed/0046-metadata-for-offline-signers.html#compatibility","proposed/0046-metadata-for-offline-signers.html#prior-art-and-references","proposed/0046-metadata-for-offline-signers.html#unresolved-questions","proposed/0046-metadata-for-offline-signers.html#future-directions-and-related-material","proposed/0047-assignment-of-availability-chunks.html#rfc-0047-assignment-of-availability-chunks-to-validators","proposed/0047-assignment-of-availability-chunks.html#summary","proposed/0047-assignment-of-availability-chunks.html#motivation","proposed/0047-assignment-of-availability-chunks.html#stakeholders","proposed/0047-assignment-of-availability-chunks.html#explanation","proposed/0047-assignment-of-availability-chunks.html#systematic-erasure-codes","proposed/0047-assignment-of-availability-chunks.html#availability-recovery-at-present","proposed/0047-assignment-of-availability-chunks.html#availability-recovery-from-systematic-chunks","proposed/0047-assignment-of-availability-chunks.html#chunk-assignment-function","proposed/0047-assignment-of-availability-chunks.html#network-protocol","proposed/0047-assignment-of-availability-chunks.html#upgrade-path","proposed/0047-assignment-of-availability-chunks.html#drawbacks","proposed/0047-assignment-of-availability-chunks.html#testing-security-and-privacy","proposed/0047-assignment-of-availability-chunks.html#performance-ergonomics-and-compatibility","proposed/0047-assignment-of-availability-chunks.html#performance","proposed/0047-assignment-of-availability-chunks.html#ergonomics","proposed/0047-assignment-of-availability-chunks.html#compatibility","proposed/0047-assignment-of-availability-chunks.html#prior-art-and-references","proposed/0047-assignment-of-availability-chunks.html#unresolved-questions","proposed/0047-assignment-of-availability-chunks.html#future-directions-and-related-material","proposed/0047-assignment-of-availability-chunks.html#appendix-a","proposed/0059-nodes-capabilities-discovery.html#rfc-0059-add-a-discovery-mechanism-for-nodes-based-on-their-capabilities","proposed/0059-nodes-capabilities-discovery.html#summary","proposed/0059-nodes-capabilities-discovery.html#motivation","proposed/0059-nodes-capabilities-discovery.html#stakeholders","proposed/0059-nodes-capabilities-discovery.html#explanation","proposed/0059-nodes-capabilities-discovery.html#capabilities","proposed/0059-nodes-capabilities-discovery.html#dht-provider-registration","proposed/0059-nodes-capabilities-discovery.html#secondary-dhts","proposed/0059-nodes-capabilities-discovery.html#head-of-the-chain-providers","proposed/0059-nodes-capabilities-discovery.html#drawbacks","proposed/0059-nodes-capabilities-discovery.html#testing-security-and-privacy","proposed/0059-nodes-capabilities-discovery.html#performance-ergonomics-and-compatibility","proposed/0059-nodes-capabilities-discovery.html#performance","proposed/0059-nodes-capabilities-discovery.html#ergonomics","proposed/0059-nodes-capabilities-discovery.html#compatibility","proposed/0059-nodes-capabilities-discovery.html#prior-art-and-references","proposed/0059-nodes-capabilities-discovery.html#unresolved-questions","proposed/0059-nodes-capabilities-discovery.html#future-directions-and-related-material","proposed/0061-allocator-inside-of-runtime.html#rfc-0061-support-allocator-inside-of-runtime","proposed/0061-allocator-inside-of-runtime.html#summary","proposed/0061-allocator-inside-of-runtime.html#motivation","proposed/0061-allocator-inside-of-runtime.html#stakeholders","proposed/0061-allocator-inside-of-runtime.html#explanation","proposed/0061-allocator-inside-of-runtime.html#runtime-side-spec","proposed/0061-allocator-inside-of-runtime.html#client-side-spec","proposed/0061-allocator-inside-of-runtime.html#drawbacks","proposed/0061-allocator-inside-of-runtime.html#testing-security-and-privacy","proposed/0061-allocator-inside-of-runtime.html#performance-ergonomics-and-compatibility","proposed/0061-allocator-inside-of-runtime.html#performance","proposed/0061-allocator-inside-of-runtime.html#ergonomics","proposed/0061-allocator-inside-of-runtime.html#compatibility","proposed/0061-allocator-inside-of-runtime.html#prior-art-and-references","proposed/0061-allocator-inside-of-runtime.html#unresolved-questions","proposed/0061-allocator-inside-of-runtime.html#future-directions-and-related-material","proposed/0066-add-smartcontracts-to-assethub.html#rfc-0066-add-evmink-contracts-pallets-to-asset-hub-for-polkadot","proposed/0066-add-smartcontracts-to-assethub.html#summary","proposed/0066-add-smartcontracts-to-assethub.html#motivation","proposed/0066-add-smartcontracts-to-assethub.html#definft-applications-need-smart-contracts-on-assethub","proposed/0066-add-smartcontracts-to-assethub.html#rollups-need-smart-contracts-on-assethub","proposed/0066-add-smartcontracts-to-assethub.html#ink-on-assethub-will-lead-to-coreplay-developers--on-assethub","proposed/0066-add-smartcontracts-to-assethub.html#stakeholders","proposed/0066-add-smartcontracts-to-assethub.html#explanation","proposed/0066-add-smartcontracts-to-assethub.html#limit-smart-contract-weight-allocation","proposed/0066-add-smartcontracts-to-assethub.html#model-assethub-assets-inside-evm-smart-contracts-based-on-astar","proposed/0066-add-smartcontracts-to-assethub.html#new-dot-revenue-sources","proposed/0066-add-smartcontracts-to-assethub.html#new-revenue-from-assethub-evm-contracts","proposed/0066-add-smartcontracts-to-assethub.html#new-revenue-for-inkcoreplay-contracts","proposed/0066-add-smartcontracts-to-assethub.html#drawbacks-and-tradeoffs","proposed/0066-add-smartcontracts-to-assethub.html#testing-security-and-privacy","proposed/0066-add-smartcontracts-to-assethub.html#performance-ergonomics-and-compatibility","proposed/0066-add-smartcontracts-to-assethub.html#performance","proposed/0066-add-smartcontracts-to-assethub.html#ergonomics","proposed/0066-add-smartcontracts-to-assethub.html#compatibility","proposed/0066-add-smartcontracts-to-assethub.html#unresolved-questions","proposed/0066-add-smartcontracts-to-assethub.html#future-directions-and-related-material","approved/0001-agile-coretime.html#rfc-1-agile-coretime","approved/0001-agile-coretime.html#summary","approved/0001-agile-coretime.html#motivation","approved/0001-agile-coretime.html#present-system","approved/0001-agile-coretime.html#problems","approved/0001-agile-coretime.html#requirements","approved/0001-agile-coretime.html#stakeholders","approved/0001-agile-coretime.html#explanation","approved/0001-agile-coretime.html#overview","approved/0001-agile-coretime.html#detail","approved/0001-agile-coretime.html#specific-functions-of-the-coretime-chain","approved/0001-agile-coretime.html#notes-on-the-instantaneous-coretime-market","approved/0001-agile-coretime.html#notes-on-economics","approved/0001-agile-coretime.html#notes-on-types","approved/0001-agile-coretime.html#rollout","approved/0001-agile-coretime.html#performance-ergonomics-and-compatibility","approved/0001-agile-coretime.html#testing-security-and-privacy","approved/0001-agile-coretime.html#future-directions-and-related-material","approved/0001-agile-coretime.html#drawbacks-alternatives-and-unknowns","approved/0001-agile-coretime.html#prior-art-and-references","approved/0005-coretime-interface.html#rfc-5-coretime-interface","approved/0005-coretime-interface.html#summary","approved/0005-coretime-interface.html#motivation","approved/0005-coretime-interface.html#requirements","approved/0005-coretime-interface.html#stakeholders","approved/0005-coretime-interface.html#explanation","approved/0005-coretime-interface.html#ump-message-types","approved/0005-coretime-interface.html#dmp-message-types","approved/0005-coretime-interface.html#realistic-limits-of-the-usage","approved/0005-coretime-interface.html#performance-ergonomics-and-compatibility","approved/0005-coretime-interface.html#testing-security-and-privacy","approved/0005-coretime-interface.html#future-directions-and-related-material","approved/0005-coretime-interface.html#drawbacks-alternatives-and-unknowns","approved/0005-coretime-interface.html#prior-art-and-references","approved/0007-system-collator-selection.html#rfc-0007-system-collator-selection","approved/0007-system-collator-selection.html#summary","approved/0007-system-collator-selection.html#motivation","approved/0007-system-collator-selection.html#requirements","approved/0007-system-collator-selection.html#stakeholders","approved/0007-system-collator-selection.html#explanation","approved/0007-system-collator-selection.html#set-size","approved/0007-system-collator-selection.html#drawbacks","approved/0007-system-collator-selection.html#testing-security-and-privacy","approved/0007-system-collator-selection.html#performance-ergonomics-and-compatibility","approved/0007-system-collator-selection.html#performance","approved/0007-system-collator-selection.html#ergonomics","approved/0007-system-collator-selection.html#compatibility","approved/0007-system-collator-selection.html#prior-art-and-references","approved/0007-system-collator-selection.html#written-discussions","approved/0007-system-collator-selection.html#prior-feedback-and-input-from","approved/0007-system-collator-selection.html#unresolved-questions","approved/0007-system-collator-selection.html#future-directions-and-related-material","approved/0008-parachain-bootnodes-dht.html#rfc-0008-store-parachain-bootnodes-in-relay-chain-dht","approved/0008-parachain-bootnodes-dht.html#summary","approved/0008-parachain-bootnodes-dht.html#motivation","approved/0008-parachain-bootnodes-dht.html#stakeholders","approved/0008-parachain-bootnodes-dht.html#explanation","approved/0008-parachain-bootnodes-dht.html#dht-provider-registration","approved/0008-parachain-bootnodes-dht.html#new-networking-protocol","approved/0008-parachain-bootnodes-dht.html#drawbacks","approved/0008-parachain-bootnodes-dht.html#testing-security-and-privacy","approved/0008-parachain-bootnodes-dht.html#performance-ergonomics-and-compatibility","approved/0008-parachain-bootnodes-dht.html#performance","approved/0008-parachain-bootnodes-dht.html#ergonomics","approved/0008-parachain-bootnodes-dht.html#compatibility","approved/0008-parachain-bootnodes-dht.html#prior-art-and-references","approved/0008-parachain-bootnodes-dht.html#unresolved-questions","approved/0008-parachain-bootnodes-dht.html#future-directions-and-related-material","approved/0012-process-for-adding-new-collectives.html#rfc-0012-process-for-adding-new-system-collectives","approved/0012-process-for-adding-new-collectives.html#summary","approved/0012-process-for-adding-new-collectives.html#motivation","approved/0012-process-for-adding-new-collectives.html#stakeholders","approved/0012-process-for-adding-new-collectives.html#explanation","approved/0012-process-for-adding-new-collectives.html#removing-collectives","approved/0012-process-for-adding-new-collectives.html#drawbacks","approved/0012-process-for-adding-new-collectives.html#testing-security-and-privacy","approved/0012-process-for-adding-new-collectives.html#performance-ergonomics-and-compatibility","approved/0012-process-for-adding-new-collectives.html#prior-art-and-references","approved/0012-process-for-adding-new-collectives.html#unresolved-questions","approved/0014-improve-locking-mechanism-for-parachains.html#rfc-0014-improve-locking-mechanism-for-parachains","approved/0014-improve-locking-mechanism-for-parachains.html#summary","approved/0014-improve-locking-mechanism-for-parachains.html#motivation","approved/0014-improve-locking-mechanism-for-parachains.html#requirements","approved/0014-improve-locking-mechanism-for-parachains.html#stakeholders","approved/0014-improve-locking-mechanism-for-parachains.html#explanation","approved/0014-improve-locking-mechanism-for-parachains.html#status-quo","approved/0014-improve-locking-mechanism-for-parachains.html#proposed-changes","approved/0014-improve-locking-mechanism-for-parachains.html#migration","approved/0014-improve-locking-mechanism-for-parachains.html#drawbacks","approved/0014-improve-locking-mechanism-for-parachains.html#testing-security-and-privacy","approved/0014-improve-locking-mechanism-for-parachains.html#performance","approved/0014-improve-locking-mechanism-for-parachains.html#ergonomics","approved/0014-improve-locking-mechanism-for-parachains.html#compatibility","approved/0014-improve-locking-mechanism-for-parachains.html#prior-art-and-references","approved/0014-improve-locking-mechanism-for-parachains.html#unresolved-questions","approved/0014-improve-locking-mechanism-for-parachains.html#future-directions-and-related-material","approved/0022-adopt-encointer-runtime.html#rfc-0022-adopt-encointer-runtime","approved/0022-adopt-encointer-runtime.html#summary","approved/0022-adopt-encointer-runtime.html#motivation","approved/0022-adopt-encointer-runtime.html#stakeholders","approved/0022-adopt-encointer-runtime.html#explanation","approved/0022-adopt-encointer-runtime.html#drawbacks","approved/0022-adopt-encointer-runtime.html#testing-security-and-privacy","approved/0022-adopt-encointer-runtime.html#performance-ergonomics-and-compatibility","approved/0022-adopt-encointer-runtime.html#prior-art-and-references","approved/0022-adopt-encointer-runtime.html#unresolved-questions","approved/0022-adopt-encointer-runtime.html#future-directions-and-related-material","approved/0032-minimal-relay.html#rfc-0032-minimal-relay","approved/0032-minimal-relay.html#summary","approved/0032-minimal-relay.html#motivation","approved/0032-minimal-relay.html#stakeholders","approved/0032-minimal-relay.html#explanation","approved/0032-minimal-relay.html#migrations","approved/0032-minimal-relay.html#interfaces","approved/0032-minimal-relay.html#functional-architecture","approved/0032-minimal-relay.html#resource-allocation","approved/0032-minimal-relay.html#deployment","approved/0032-minimal-relay.html#kusama","approved/0032-minimal-relay.html#drawbacks","approved/0032-minimal-relay.html#testing-security-and-privacy","approved/0032-minimal-relay.html#performance-ergonomics-and-compatibility","approved/0032-minimal-relay.html#performance","approved/0032-minimal-relay.html#ergonomics","approved/0032-minimal-relay.html#compatibility","approved/0032-minimal-relay.html#prior-art-and-references","approved/0032-minimal-relay.html#unresolved-questions","approved/0032-minimal-relay.html#future-directions-and-related-material","approved/0050-fellowship-salaries.html#rfc-0050-fellowship-salaries","approved/0050-fellowship-salaries.html#summary","approved/0050-fellowship-salaries.html#motivation","approved/0050-fellowship-salaries.html#stakeholders","approved/0050-fellowship-salaries.html#explanation","approved/0050-fellowship-salaries.html#salary-asset","approved/0050-fellowship-salaries.html#projections","approved/0050-fellowship-salaries.html#updates","approved/0050-fellowship-salaries.html#drawbacks","approved/0050-fellowship-salaries.html#testing-security-and-privacy","approved/0050-fellowship-salaries.html#performance-ergonomics-and-compatibility","approved/0050-fellowship-salaries.html#performance","approved/0050-fellowship-salaries.html#ergonomics","approved/0050-fellowship-salaries.html#compatibility","approved/0050-fellowship-salaries.html#prior-art-and-references","approved/0050-fellowship-salaries.html#unresolved-questions","approved/0056-one-transaction-per-notification.html#rfc-0056-enforce-only-one-transaction-per-notification","approved/0056-one-transaction-per-notification.html#summary","approved/0056-one-transaction-per-notification.html#motivation","approved/0056-one-transaction-per-notification.html#stakeholders","approved/0056-one-transaction-per-notification.html#explanation","approved/0056-one-transaction-per-notification.html#drawbacks","approved/0056-one-transaction-per-notification.html#testing-security-and-privacy","approved/0056-one-transaction-per-notification.html#performance-ergonomics-and-compatibility","approved/0056-one-transaction-per-notification.html#performance","approved/0056-one-transaction-per-notification.html#ergonomics","approved/0056-one-transaction-per-notification.html#compatibility","approved/0056-one-transaction-per-notification.html#prior-art-and-references","approved/0056-one-transaction-per-notification.html#unresolved-questions","approved/0056-one-transaction-per-notification.html#future-directions-and-related-material","stale/0004-remove-unnecessary-allocator-usage.html#rfc-0004-remove-the-host-side-runtime-memory-allocator","stale/0004-remove-unnecessary-allocator-usage.html#summary","stale/0004-remove-unnecessary-allocator-usage.html#motivation","stale/0004-remove-unnecessary-allocator-usage.html#stakeholders","stale/0004-remove-unnecessary-allocator-usage.html#explanation","stale/0004-remove-unnecessary-allocator-usage.html#new-host-functions","stale/0004-remove-unnecessary-allocator-usage.html#other-changes","stale/0004-remove-unnecessary-allocator-usage.html#drawbacks","stale/0004-remove-unnecessary-allocator-usage.html#prior-art","stale/0004-remove-unnecessary-allocator-usage.html#unresolved-questions","stale/0004-remove-unnecessary-allocator-usage.html#future-possibilities","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#rfc-0006-dynamic-pricing-for-bulk-coretime-sales","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#summary","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#motivation","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#requirements","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#stakeholders","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#explanation","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#overview","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#parameters","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#function","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#pseudo-code","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#properties-of-the-curve","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#example-configurations","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#drawbacks","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#prior-art-and-references","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#future-possibilities","stale/0006-dynamic-pricing-for-bulk-coretime-sales.html#references","stale/0009-improved-net-light-client-requests.html#rfc-0009-improved-light-client-requests-networking-protocol","stale/0009-improved-net-light-client-requests.html#summary","stale/0009-improved-net-light-client-requests.html#motivation","stale/0009-improved-net-light-client-requests.html#stakeholders","stale/0009-improved-net-light-client-requests.html#explanation","stale/0009-improved-net-light-client-requests.html#drawbacks","stale/0009-improved-net-light-client-requests.html#testing-security-and-privacy","stale/0009-improved-net-light-client-requests.html#performance-ergonomics-and-compatibility","stale/0009-improved-net-light-client-requests.html#performance","stale/0009-improved-net-light-client-requests.html#ergonomics","stale/0009-improved-net-light-client-requests.html#compatibility","stale/0009-improved-net-light-client-requests.html#prior-art-and-references","stale/0009-improved-net-light-client-requests.html#unresolved-questions","stale/0009-improved-net-light-client-requests.html#future-directions-and-related-material","stale/0010-burn-coretime-revenue.html#rfc-0010-burn-coretime-revenue","stale/0010-burn-coretime-revenue.html#summary","stale/0010-burn-coretime-revenue.html#motivation","stale/0010-burn-coretime-revenue.html#stakeholders","stale/0010-burn-coretime-revenue.html#explanation","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#rfc-0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#summary","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#motivation","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#stakeholders","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#explanation","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#coreinitialize_block","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#blockbuilderlast_inherent","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#combined","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#drawbacks","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#testing-security-and-privacy","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#performance-ergonomics-and-compatibility","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#performance","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#ergonomics","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#compatibility","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#prior-art-and-references","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#unresolved-questions","stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html#future-directions-and-related-material","stale/0015-market-design-revisit.html#rfc-0015-market-design-revisit","stale/0015-market-design-revisit.html#summary","stale/0015-market-design-revisit.html#motivation","stale/0015-market-design-revisit.html#stakeholders","stale/0015-market-design-revisit.html#explanation","stale/0015-market-design-revisit.html#bulk-markets","stale/0015-market-design-revisit.html#benefits-of-this-system","stale/0015-market-design-revisit.html#further-discussion-points","stale/0015-market-design-revisit.html#drawbacks","stale/0015-market-design-revisit.html#prior-art-and-references","stale/0015-market-design-revisit.html#unresolved-questions","stale/0020-treasurer-track-confirmation-period-duration-modification.html#rfc-0020-treasurer-track-confirmation-period-duration-modification","stale/0020-treasurer-track-confirmation-period-duration-modification.html#summary","stale/0020-treasurer-track-confirmation-period-duration-modification.html#motivation","stale/0020-treasurer-track-confirmation-period-duration-modification.html#stakeholders","stale/0020-treasurer-track-confirmation-period-duration-modification.html#explanation","stale/0020-treasurer-track-confirmation-period-duration-modification.html#drawbacks","stale/0020-treasurer-track-confirmation-period-duration-modification.html#testing-security-and-privacy","stale/0020-treasurer-track-confirmation-period-duration-modification.html#performance-ergonomics-and-compatibility","stale/0020-treasurer-track-confirmation-period-duration-modification.html#performance","stale/0020-treasurer-track-confirmation-period-duration-modification.html#ergonomics--compatibility","stale/0020-treasurer-track-confirmation-period-duration-modification.html#prior-art-and-references","stale/0020-treasurer-track-confirmation-period-duration-modification.html#unresolved-questions","stale/0020-treasurer-track-confirmation-period-duration-modification.html#future-directions-and-related-material","stale/0035-conviction-voting-delegation-modifications.html#rfc-0035-conviction-voting-delegation-modifications","stale/0035-conviction-voting-delegation-modifications.html#summary","stale/0035-conviction-voting-delegation-modifications.html#motivation","stale/0035-conviction-voting-delegation-modifications.html#stakeholders","stale/0035-conviction-voting-delegation-modifications.html#explanation","stale/0035-conviction-voting-delegation-modifications.html#drawbacks","stale/0035-conviction-voting-delegation-modifications.html#testing-security-and-privacy","stale/0035-conviction-voting-delegation-modifications.html#performance-ergonomics-and-compatibility","stale/0035-conviction-voting-delegation-modifications.html#performance","stale/0035-conviction-voting-delegation-modifications.html#ergonomics--compatibility","stale/0035-conviction-voting-delegation-modifications.html#prior-art-and-references","stale/0035-conviction-voting-delegation-modifications.html#unresolved-questions","stale/0035-conviction-voting-delegation-modifications.html#future-directions-and-related-material","stale/0043-storage-proof-size-hostfunction.html#rfc-0043-introduce-storage_proof_size-host-function-for-improved-parachain-block-utilization","stale/0043-storage-proof-size-hostfunction.html#summary","stale/0043-storage-proof-size-hostfunction.html#motivation","stale/0043-storage-proof-size-hostfunction.html#stakeholders","stale/0043-storage-proof-size-hostfunction.html#explanation","stale/0043-storage-proof-size-hostfunction.html#performance-ergonomics-and-compatibility","stale/0043-storage-proof-size-hostfunction.html#performance","stale/0043-storage-proof-size-hostfunction.html#ergonomics","stale/0043-storage-proof-size-hostfunction.html#compatibility","stale/0043-storage-proof-size-hostfunction.html#prior-art-and-references","stale/0044-rent-based-registration.html#rfc-0044-rent-based-registration-model","stale/0044-rent-based-registration.html#summary","stale/0044-rent-based-registration.html#motivation","stale/0044-rent-based-registration.html#requirements","stale/0044-rent-based-registration.html#stakeholders","stale/0044-rent-based-registration.html#explanation","stale/0044-rent-based-registration.html#registering-an-on-demand-parachain","stale/0044-rent-based-registration.html#on-demand-parachain-pruning","stale/0044-rent-based-registration.html#ensuring-rent-is-paid","stale/0044-rent-based-registration.html#on-demand-para-re-registration","stale/0044-rent-based-registration.html#drawbacks","stale/0044-rent-based-registration.html#testing-security-and-privacy","stale/0044-rent-based-registration.html#performance-ergonomics-and-compatibility","stale/0044-rent-based-registration.html#performance","stale/0044-rent-based-registration.html#ergonomics","stale/0044-rent-based-registration.html#compatibility","stale/0044-rent-based-registration.html#prior-art-and-references","stale/0044-rent-based-registration.html#unresolved-questions","stale/0044-rent-based-registration.html#future-directions-and-related-material","stale/0048-session-keys-runtime-api.html#rfc-0048-generate-ownership-proof-for-sessionkeys","stale/0048-session-keys-runtime-api.html#summary","stale/0048-session-keys-runtime-api.html#motivation","stale/0048-session-keys-runtime-api.html#stakeholders","stale/0048-session-keys-runtime-api.html#explanation","stale/0048-session-keys-runtime-api.html#drawbacks","stale/0048-session-keys-runtime-api.html#testing-security-and-privacy","stale/0048-session-keys-runtime-api.html#performance-ergonomics-and-compatibility","stale/0048-session-keys-runtime-api.html#performance","stale/0048-session-keys-runtime-api.html#ergonomics","stale/0048-session-keys-runtime-api.html#compatibility","stale/0048-session-keys-runtime-api.html#prior-art-and-references","stale/0048-session-keys-runtime-api.html#unresolved-questions","stale/0048-session-keys-runtime-api.html#future-directions-and-related-material","stale/0054-remove-heap-pages.html#rfc-0054-remove-the-concept-of-heap-pages-from-the-client","stale/0054-remove-heap-pages.html#summary","stale/0054-remove-heap-pages.html#motivation","stale/0054-remove-heap-pages.html#stakeholders","stale/0054-remove-heap-pages.html#explanation","stale/0054-remove-heap-pages.html#drawbacks","stale/0054-remove-heap-pages.html#testing-security-and-privacy","stale/0054-remove-heap-pages.html#performance-ergonomics-and-compatibility","stale/0054-remove-heap-pages.html#performance","stale/0054-remove-heap-pages.html#ergonomics","stale/0054-remove-heap-pages.html#compatibility","stale/0054-remove-heap-pages.html#prior-art-and-references","stale/0054-remove-heap-pages.html#unresolved-questions","stale/0054-remove-heap-pages.html#future-directions-and-related-material"],"index":{"documentStore":{"docInfo":{"0":{"body":16,"breadcrumbs":2,"title":1},"1":{"body":92,"breadcrumbs":18,"title":9},"10":{"body":12,"breadcrumbs":11,"title":2},"100":{"body":53,"breadcrumbs":6,"title":1},"101":{"body":19,"breadcrumbs":6,"title":1},"102":{"body":232,"breadcrumbs":6,"title":1},"103":{"body":28,"breadcrumbs":7,"title":2},"104":{"body":133,"breadcrumbs":7,"title":2},"105":{"body":9,"breadcrumbs":7,"title":2},"106":{"body":104,"breadcrumbs":11,"title":6},"107":{"body":42,"breadcrumbs":6,"title":1},"108":{"body":80,"breadcrumbs":7,"title":2},"109":{"body":0,"breadcrumbs":6,"title":1},"11":{"body":79,"breadcrumbs":14,"title":5},"110":{"body":15,"breadcrumbs":8,"title":3},"111":{"body":31,"breadcrumbs":7,"title":2},"112":{"body":40,"breadcrumbs":8,"title":3},"113":{"body":0,"breadcrumbs":8,"title":3},"114":{"body":23,"breadcrumbs":6,"title":1},"115":{"body":10,"breadcrumbs":6,"title":1},"116":{"body":18,"breadcrumbs":6,"title":1},"117":{"body":14,"breadcrumbs":8,"title":3},"118":{"body":12,"breadcrumbs":7,"title":2},"119":{"body":42,"breadcrumbs":9,"title":4},"12":{"body":60,"breadcrumbs":13,"title":4},"120":{"body":67,"breadcrumbs":12,"title":6},"121":{"body":20,"breadcrumbs":7,"title":1},"122":{"body":66,"breadcrumbs":7,"title":1},"123":{"body":5,"breadcrumbs":7,"title":1},"124":{"body":0,"breadcrumbs":7,"title":1},"125":{"body":77,"breadcrumbs":9,"title":3},"126":{"body":94,"breadcrumbs":9,"title":3},"127":{"body":82,"breadcrumbs":10,"title":4},"128":{"body":99,"breadcrumbs":9,"title":3},"129":{"body":261,"breadcrumbs":8,"title":2},"13":{"body":89,"breadcrumbs":13,"title":4},"130":{"body":172,"breadcrumbs":8,"title":2},"131":{"body":59,"breadcrumbs":7,"title":1},"132":{"body":11,"breadcrumbs":9,"title":3},"133":{"body":0,"breadcrumbs":9,"title":3},"134":{"body":45,"breadcrumbs":7,"title":1},"135":{"body":1,"breadcrumbs":7,"title":1},"136":{"body":19,"breadcrumbs":7,"title":1},"137":{"body":6,"breadcrumbs":9,"title":3},"138":{"body":1,"breadcrumbs":8,"title":2},"139":{"body":13,"breadcrumbs":10,"title":4},"14":{"body":161,"breadcrumbs":10,"title":1},"140":{"body":217,"breadcrumbs":7,"title":1},"141":{"body":60,"breadcrumbs":16,"title":8},"142":{"body":32,"breadcrumbs":9,"title":1},"143":{"body":98,"breadcrumbs":9,"title":1},"144":{"body":9,"breadcrumbs":9,"title":1},"145":{"body":23,"breadcrumbs":9,"title":1},"146":{"body":225,"breadcrumbs":9,"title":1},"147":{"body":125,"breadcrumbs":11,"title":3},"148":{"body":44,"breadcrumbs":10,"title":2},"149":{"body":65,"breadcrumbs":11,"title":3},"15":{"body":0,"breadcrumbs":12,"title":3},"150":{"body":2,"breadcrumbs":9,"title":1},"151":{"body":94,"breadcrumbs":11,"title":3},"152":{"body":0,"breadcrumbs":11,"title":3},"153":{"body":91,"breadcrumbs":9,"title":1},"154":{"body":1,"breadcrumbs":9,"title":1},"155":{"body":1,"breadcrumbs":9,"title":1},"156":{"body":1,"breadcrumbs":11,"title":3},"157":{"body":21,"breadcrumbs":10,"title":2},"158":{"body":74,"breadcrumbs":12,"title":4},"159":{"body":56,"breadcrumbs":12,"title":6},"16":{"body":9,"breadcrumbs":11,"title":2},"160":{"body":33,"breadcrumbs":7,"title":1},"161":{"body":122,"breadcrumbs":7,"title":1},"162":{"body":4,"breadcrumbs":7,"title":1},"163":{"body":0,"breadcrumbs":7,"title":1},"164":{"body":150,"breadcrumbs":9,"title":3},"165":{"body":100,"breadcrumbs":9,"title":3},"166":{"body":34,"breadcrumbs":7,"title":1},"167":{"body":33,"breadcrumbs":9,"title":3},"168":{"body":0,"breadcrumbs":9,"title":3},"169":{"body":19,"breadcrumbs":7,"title":1},"17":{"body":0,"breadcrumbs":12,"title":3},"170":{"body":16,"breadcrumbs":7,"title":1},"171":{"body":47,"breadcrumbs":7,"title":1},"172":{"body":8,"breadcrumbs":9,"title":3},"173":{"body":2,"breadcrumbs":8,"title":2},"174":{"body":22,"breadcrumbs":10,"title":4},"175":{"body":108,"breadcrumbs":18,"title":9},"176":{"body":53,"breadcrumbs":10,"title":1},"177":{"body":89,"breadcrumbs":10,"title":1},"178":{"body":122,"breadcrumbs":15,"title":6},"179":{"body":273,"breadcrumbs":14,"title":5},"18":{"body":35,"breadcrumbs":10,"title":1},"180":{"body":107,"breadcrumbs":15,"title":6},"181":{"body":83,"breadcrumbs":10,"title":1},"182":{"body":0,"breadcrumbs":10,"title":1},"183":{"body":170,"breadcrumbs":14,"title":5},"184":{"body":91,"breadcrumbs":18,"title":9},"185":{"body":23,"breadcrumbs":13,"title":4},"186":{"body":24,"breadcrumbs":14,"title":5},"187":{"body":43,"breadcrumbs":13,"title":4},"188":{"body":76,"breadcrumbs":11,"title":2},"189":{"body":25,"breadcrumbs":12,"title":3},"19":{"body":20,"breadcrumbs":10,"title":1},"190":{"body":0,"breadcrumbs":12,"title":3},"191":{"body":20,"breadcrumbs":10,"title":1},"192":{"body":40,"breadcrumbs":10,"title":1},"193":{"body":34,"breadcrumbs":10,"title":1},"194":{"body":22,"breadcrumbs":11,"title":2},"195":{"body":17,"breadcrumbs":13,"title":4},"196":{"body":65,"breadcrumbs":8,"title":4},"197":{"body":50,"breadcrumbs":5,"title":1},"198":{"body":0,"breadcrumbs":5,"title":1},"199":{"body":124,"breadcrumbs":6,"title":2},"2":{"body":38,"breadcrumbs":10,"title":1},"20":{"body":7,"breadcrumbs":10,"title":1},"200":{"body":153,"breadcrumbs":5,"title":1},"201":{"body":90,"breadcrumbs":5,"title":1},"202":{"body":54,"breadcrumbs":5,"title":1},"203":{"body":0,"breadcrumbs":5,"title":1},"204":{"body":438,"breadcrumbs":5,"title":1},"205":{"body":562,"breadcrumbs":5,"title":1},"206":{"body":630,"breadcrumbs":8,"title":4},"207":{"body":103,"breadcrumbs":8,"title":4},"208":{"body":410,"breadcrumbs":6,"title":2},"209":{"body":905,"breadcrumbs":6,"title":2},"21":{"body":25,"breadcrumbs":11,"title":2},"210":{"body":52,"breadcrumbs":5,"title":1},"211":{"body":33,"breadcrumbs":7,"title":3},"212":{"body":40,"breadcrumbs":7,"title":3},"213":{"body":35,"breadcrumbs":8,"title":4},"214":{"body":49,"breadcrumbs":7,"title":3},"215":{"body":34,"breadcrumbs":7,"title":3},"216":{"body":55,"breadcrumbs":8,"title":4},"217":{"body":43,"breadcrumbs":5,"title":1},"218":{"body":37,"breadcrumbs":5,"title":1},"219":{"body":73,"breadcrumbs":5,"title":1},"22":{"body":35,"breadcrumbs":13,"title":4},"220":{"body":21,"breadcrumbs":5,"title":1},"221":{"body":39,"breadcrumbs":5,"title":1},"222":{"body":235,"breadcrumbs":7,"title":3},"223":{"body":86,"breadcrumbs":7,"title":3},"224":{"body":32,"breadcrumbs":7,"title":3},"225":{"body":2,"breadcrumbs":7,"title":3},"226":{"body":11,"breadcrumbs":7,"title":3},"227":{"body":20,"breadcrumbs":8,"title":4},"228":{"body":2,"breadcrumbs":7,"title":3},"229":{"body":1,"breadcrumbs":7,"title":3},"23":{"body":176,"breadcrumbs":10,"title":5},"230":{"body":53,"breadcrumbs":10,"title":5},"231":{"body":40,"breadcrumbs":6,"title":1},"232":{"body":203,"breadcrumbs":6,"title":1},"233":{"body":34,"breadcrumbs":6,"title":1},"234":{"body":8,"breadcrumbs":6,"title":1},"235":{"body":176,"breadcrumbs":6,"title":1},"236":{"body":18,"breadcrumbs":7,"title":2},"237":{"body":11,"breadcrumbs":6,"title":1},"238":{"body":25,"breadcrumbs":8,"title":3},"239":{"body":14,"breadcrumbs":8,"title":3},"24":{"body":38,"breadcrumbs":6,"title":1},"240":{"body":21,"breadcrumbs":6,"title":1},"241":{"body":16,"breadcrumbs":6,"title":1},"242":{"body":8,"breadcrumbs":6,"title":1},"243":{"body":0,"breadcrumbs":8,"title":3},"244":{"body":16,"breadcrumbs":7,"title":2},"245":{"body":21,"breadcrumbs":8,"title":3},"246":{"body":2,"breadcrumbs":7,"title":2},"247":{"body":13,"breadcrumbs":9,"title":4},"248":{"body":57,"breadcrumbs":16,"title":8},"249":{"body":29,"breadcrumbs":9,"title":1},"25":{"body":34,"breadcrumbs":7,"title":2},"250":{"body":185,"breadcrumbs":9,"title":1},"251":{"body":15,"breadcrumbs":9,"title":1},"252":{"body":60,"breadcrumbs":9,"title":1},"253":{"body":110,"breadcrumbs":11,"title":3},"254":{"body":153,"breadcrumbs":11,"title":3},"255":{"body":96,"breadcrumbs":9,"title":1},"256":{"body":144,"breadcrumbs":11,"title":3},"257":{"body":0,"breadcrumbs":11,"title":3},"258":{"body":110,"breadcrumbs":9,"title":1},"259":{"body":1,"breadcrumbs":9,"title":1},"26":{"body":21,"breadcrumbs":8,"title":3},"260":{"body":1,"breadcrumbs":9,"title":1},"261":{"body":1,"breadcrumbs":11,"title":3},"262":{"body":21,"breadcrumbs":10,"title":2},"263":{"body":11,"breadcrumbs":12,"title":4},"264":{"body":44,"breadcrumbs":14,"title":7},"265":{"body":43,"breadcrumbs":8,"title":1},"266":{"body":81,"breadcrumbs":8,"title":1},"267":{"body":10,"breadcrumbs":8,"title":1},"268":{"body":101,"breadcrumbs":8,"title":1},"269":{"body":70,"breadcrumbs":9,"title":2},"27":{"body":24,"breadcrumbs":9,"title":4},"270":{"body":16,"breadcrumbs":8,"title":1},"271":{"body":1,"breadcrumbs":10,"title":3},"272":{"body":39,"breadcrumbs":10,"title":3},"273":{"body":7,"breadcrumbs":10,"title":3},"274":{"body":2,"breadcrumbs":9,"title":2},"275":{"body":48,"breadcrumbs":12,"title":6},"276":{"body":35,"breadcrumbs":7,"title":1},"277":{"body":152,"breadcrumbs":7,"title":1},"278":{"body":32,"breadcrumbs":7,"title":1},"279":{"body":4,"breadcrumbs":7,"title":1},"28":{"body":0,"breadcrumbs":7,"title":2},"280":{"body":0,"breadcrumbs":7,"title":1},"281":{"body":92,"breadcrumbs":8,"title":2},"282":{"body":52,"breadcrumbs":8,"title":2},"283":{"body":32,"breadcrumbs":7,"title":1},"284":{"body":111,"breadcrumbs":7,"title":1},"285":{"body":19,"breadcrumbs":9,"title":3},"286":{"body":4,"breadcrumbs":7,"title":1},"287":{"body":8,"breadcrumbs":7,"title":1},"288":{"body":5,"breadcrumbs":7,"title":1},"289":{"body":26,"breadcrumbs":9,"title":3},"29":{"body":10,"breadcrumbs":8,"title":3},"290":{"body":2,"breadcrumbs":8,"title":2},"291":{"body":34,"breadcrumbs":10,"title":4},"292":{"body":48,"breadcrumbs":10,"title":5},"293":{"body":20,"breadcrumbs":6,"title":1},"294":{"body":30,"breadcrumbs":6,"title":1},"295":{"body":52,"breadcrumbs":6,"title":1},"296":{"body":73,"breadcrumbs":6,"title":1},"297":{"body":38,"breadcrumbs":6,"title":1},"298":{"body":7,"breadcrumbs":8,"title":3},"299":{"body":1,"breadcrumbs":8,"title":3},"3":{"body":72,"breadcrumbs":10,"title":1},"30":{"body":18,"breadcrumbs":9,"title":4},"300":{"body":4,"breadcrumbs":8,"title":3},"301":{"body":2,"breadcrumbs":7,"title":2},"302":{"body":4,"breadcrumbs":9,"title":4},"303":{"body":54,"breadcrumbs":8,"title":4},"304":{"body":22,"breadcrumbs":5,"title":1},"305":{"body":85,"breadcrumbs":5,"title":1},"306":{"body":16,"breadcrumbs":5,"title":1},"307":{"body":42,"breadcrumbs":5,"title":1},"308":{"body":62,"breadcrumbs":5,"title":1},"309":{"body":62,"breadcrumbs":5,"title":1},"31":{"body":10,"breadcrumbs":8,"title":3},"310":{"body":127,"breadcrumbs":6,"title":2},"311":{"body":101,"breadcrumbs":6,"title":2},"312":{"body":324,"breadcrumbs":5,"title":1},"313":{"body":117,"breadcrumbs":5,"title":1},"314":{"body":12,"breadcrumbs":5,"title":1},"315":{"body":13,"breadcrumbs":7,"title":3},"316":{"body":6,"breadcrumbs":7,"title":3},"317":{"body":12,"breadcrumbs":5,"title":1},"318":{"body":35,"breadcrumbs":5,"title":1},"319":{"body":17,"breadcrumbs":5,"title":1},"32":{"body":46,"breadcrumbs":10,"title":5},"320":{"body":7,"breadcrumbs":7,"title":3},"321":{"body":14,"breadcrumbs":6,"title":2},"322":{"body":23,"breadcrumbs":8,"title":4},"323":{"body":48,"breadcrumbs":8,"title":4},"324":{"body":16,"breadcrumbs":5,"title":1},"325":{"body":70,"breadcrumbs":5,"title":1},"326":{"body":4,"breadcrumbs":5,"title":1},"327":{"body":78,"breadcrumbs":5,"title":1},"328":{"body":92,"breadcrumbs":6,"title":2},"329":{"body":67,"breadcrumbs":5,"title":1},"33":{"body":109,"breadcrumbs":8,"title":3},"330":{"body":12,"breadcrumbs":5,"title":1},"331":{"body":13,"breadcrumbs":5,"title":1},"332":{"body":1,"breadcrumbs":7,"title":3},"333":{"body":0,"breadcrumbs":7,"title":3},"334":{"body":1,"breadcrumbs":5,"title":1},"335":{"body":1,"breadcrumbs":5,"title":1},"336":{"body":1,"breadcrumbs":5,"title":1},"337":{"body":12,"breadcrumbs":7,"title":3},"338":{"body":2,"breadcrumbs":6,"title":2},"339":{"body":51,"breadcrumbs":14,"title":7},"34":{"body":22,"breadcrumbs":10,"title":5},"340":{"body":44,"breadcrumbs":8,"title":1},"341":{"body":100,"breadcrumbs":8,"title":1},"342":{"body":3,"breadcrumbs":8,"title":1},"343":{"body":121,"breadcrumbs":8,"title":1},"344":{"body":33,"breadcrumbs":8,"title":1},"345":{"body":1,"breadcrumbs":10,"title":3},"346":{"body":0,"breadcrumbs":10,"title":3},"347":{"body":1,"breadcrumbs":8,"title":1},"348":{"body":1,"breadcrumbs":8,"title":1},"349":{"body":19,"breadcrumbs":8,"title":1},"35":{"body":35,"breadcrumbs":8,"title":3},"350":{"body":1,"breadcrumbs":10,"title":3},"351":{"body":1,"breadcrumbs":9,"title":2},"352":{"body":4,"breadcrumbs":11,"title":4},"353":{"body":45,"breadcrumbs":16,"title":8},"354":{"body":10,"breadcrumbs":9,"title":1},"355":{"body":156,"breadcrumbs":9,"title":1},"356":{"body":4,"breadcrumbs":9,"title":1},"357":{"body":0,"breadcrumbs":9,"title":1},"358":{"body":1723,"breadcrumbs":11,"title":3},"359":{"body":52,"breadcrumbs":9,"title":1},"36":{"body":16,"breadcrumbs":9,"title":4},"360":{"body":12,"breadcrumbs":9,"title":1},"361":{"body":10,"breadcrumbs":10,"title":2},"362":{"body":71,"breadcrumbs":10,"title":2},"363":{"body":26,"breadcrumbs":10,"title":2},"364":{"body":54,"breadcrumbs":14,"title":7},"365":{"body":68,"breadcrumbs":8,"title":1},"366":{"body":87,"breadcrumbs":8,"title":1},"367":{"body":59,"breadcrumbs":8,"title":1},"368":{"body":18,"breadcrumbs":8,"title":1},"369":{"body":0,"breadcrumbs":8,"title":1},"37":{"body":13,"breadcrumbs":9,"title":4},"370":{"body":64,"breadcrumbs":8,"title":1},"371":{"body":66,"breadcrumbs":8,"title":1},"372":{"body":142,"breadcrumbs":8,"title":1},"373":{"body":19,"breadcrumbs":9,"title":2},"374":{"body":104,"breadcrumbs":9,"title":2},"375":{"body":151,"breadcrumbs":9,"title":2},"376":{"body":2,"breadcrumbs":8,"title":1},"377":{"body":28,"breadcrumbs":10,"title":3},"378":{"body":7,"breadcrumbs":9,"title":2},"379":{"body":10,"breadcrumbs":8,"title":1},"38":{"body":14,"breadcrumbs":9,"title":4},"380":{"body":52,"breadcrumbs":16,"title":8},"381":{"body":16,"breadcrumbs":9,"title":1},"382":{"body":224,"breadcrumbs":9,"title":1},"383":{"body":5,"breadcrumbs":9,"title":1},"384":{"body":482,"breadcrumbs":9,"title":1},"385":{"body":87,"breadcrumbs":9,"title":1},"386":{"body":137,"breadcrumbs":11,"title":3},"387":{"body":0,"breadcrumbs":11,"title":3},"388":{"body":23,"breadcrumbs":9,"title":1},"389":{"body":1,"breadcrumbs":9,"title":1},"39":{"body":16,"breadcrumbs":9,"title":4},"390":{"body":11,"breadcrumbs":9,"title":1},"391":{"body":6,"breadcrumbs":11,"title":3},"392":{"body":1,"breadcrumbs":10,"title":2},"393":{"body":17,"breadcrumbs":12,"title":4},"394":{"body":23,"breadcrumbs":10,"title":5},"395":{"body":36,"breadcrumbs":6,"title":1},"396":{"body":21,"breadcrumbs":6,"title":1},"397":{"body":4,"breadcrumbs":6,"title":1},"398":{"body":290,"breadcrumbs":6,"title":1},"399":{"body":55,"breadcrumbs":16,"title":8},"4":{"body":8,"breadcrumbs":10,"title":1},"40":{"body":7,"breadcrumbs":9,"title":4},"400":{"body":24,"breadcrumbs":9,"title":1},"401":{"body":67,"breadcrumbs":9,"title":1},"402":{"body":27,"breadcrumbs":9,"title":1},"403":{"body":0,"breadcrumbs":9,"title":1},"404":{"body":27,"breadcrumbs":9,"title":1},"405":{"body":15,"breadcrumbs":9,"title":1},"406":{"body":106,"breadcrumbs":9,"title":1},"407":{"body":13,"breadcrumbs":9,"title":1},"408":{"body":29,"breadcrumbs":11,"title":3},"409":{"body":0,"breadcrumbs":11,"title":3},"41":{"body":48,"breadcrumbs":10,"title":5},"410":{"body":17,"breadcrumbs":9,"title":1},"411":{"body":17,"breadcrumbs":9,"title":1},"412":{"body":16,"breadcrumbs":9,"title":1},"413":{"body":24,"breadcrumbs":11,"title":3},"414":{"body":30,"breadcrumbs":10,"title":2},"415":{"body":37,"breadcrumbs":12,"title":4},"416":{"body":48,"breadcrumbs":10,"title":5},"417":{"body":65,"breadcrumbs":6,"title":1},"418":{"body":190,"breadcrumbs":6,"title":1},"419":{"body":25,"breadcrumbs":6,"title":1},"42":{"body":91,"breadcrumbs":8,"title":3},"420":{"body":0,"breadcrumbs":6,"title":1},"421":{"body":367,"breadcrumbs":7,"title":2},"422":{"body":218,"breadcrumbs":7,"title":2},"423":{"body":80,"breadcrumbs":8,"title":3},"424":{"body":46,"breadcrumbs":6,"title":1},"425":{"body":23,"breadcrumbs":8,"title":3},"426":{"body":4,"breadcrumbs":7,"title":2},"427":{"body":48,"breadcrumbs":16,"title":8},"428":{"body":12,"breadcrumbs":9,"title":1},"429":{"body":102,"breadcrumbs":9,"title":1},"43":{"body":104,"breadcrumbs":8,"title":3},"430":{"body":44,"breadcrumbs":9,"title":1},"431":{"body":58,"breadcrumbs":9,"title":1},"432":{"body":19,"breadcrumbs":9,"title":1},"433":{"body":40,"breadcrumbs":11,"title":3},"434":{"body":0,"breadcrumbs":11,"title":3},"435":{"body":15,"breadcrumbs":9,"title":1},"436":{"body":49,"breadcrumbs":10,"title":2},"437":{"body":1,"breadcrumbs":11,"title":3},"438":{"body":62,"breadcrumbs":10,"title":2},"439":{"body":18,"breadcrumbs":12,"title":4},"44":{"body":58,"breadcrumbs":9,"title":4},"440":{"body":40,"breadcrumbs":12,"title":6},"441":{"body":61,"breadcrumbs":7,"title":1},"442":{"body":101,"breadcrumbs":7,"title":1},"443":{"body":15,"breadcrumbs":7,"title":1},"444":{"body":187,"breadcrumbs":7,"title":1},"445":{"body":17,"breadcrumbs":7,"title":1},"446":{"body":12,"breadcrumbs":9,"title":3},"447":{"body":0,"breadcrumbs":9,"title":3},"448":{"body":11,"breadcrumbs":7,"title":1},"449":{"body":40,"breadcrumbs":8,"title":2},"45":{"body":199,"breadcrumbs":8,"title":3},"450":{"body":1,"breadcrumbs":9,"title":3},"451":{"body":1,"breadcrumbs":8,"title":2},"452":{"body":39,"breadcrumbs":10,"title":4},"453":{"body":42,"breadcrumbs":20,"title":10},"454":{"body":28,"breadcrumbs":11,"title":1},"455":{"body":121,"breadcrumbs":11,"title":1},"456":{"body":15,"breadcrumbs":11,"title":1},"457":{"body":70,"breadcrumbs":11,"title":1},"458":{"body":0,"breadcrumbs":13,"title":3},"459":{"body":26,"breadcrumbs":11,"title":1},"46":{"body":0,"breadcrumbs":8,"title":3},"460":{"body":26,"breadcrumbs":11,"title":1},"461":{"body":7,"breadcrumbs":11,"title":1},"462":{"body":19,"breadcrumbs":13,"title":3},"463":{"body":61,"breadcrumbs":12,"title":6},"464":{"body":34,"breadcrumbs":7,"title":1},"465":{"body":92,"breadcrumbs":7,"title":1},"466":{"body":67,"breadcrumbs":7,"title":1},"467":{"body":4,"breadcrumbs":7,"title":1},"468":{"body":77,"breadcrumbs":7,"title":1},"469":{"body":237,"breadcrumbs":9,"title":3},"47":{"body":313,"breadcrumbs":9,"title":4},"470":{"body":124,"breadcrumbs":9,"title":3},"471":{"body":41,"breadcrumbs":9,"title":3},"472":{"body":106,"breadcrumbs":10,"title":4},"473":{"body":51,"breadcrumbs":7,"title":1},"474":{"body":27,"breadcrumbs":9,"title":3},"475":{"body":0,"breadcrumbs":9,"title":3},"476":{"body":4,"breadcrumbs":7,"title":1},"477":{"body":13,"breadcrumbs":7,"title":1},"478":{"body":3,"breadcrumbs":7,"title":1},"479":{"body":5,"breadcrumbs":9,"title":3},"48":{"body":491,"breadcrumbs":10,"title":5},"480":{"body":2,"breadcrumbs":8,"title":2},"481":{"body":37,"breadcrumbs":10,"title":4},"482":{"body":50,"breadcrumbs":12,"title":6},"483":{"body":46,"breadcrumbs":7,"title":1},"484":{"body":24,"breadcrumbs":7,"title":1},"485":{"body":8,"breadcrumbs":7,"title":1},"486":{"body":134,"breadcrumbs":7,"title":1},"487":{"body":21,"breadcrumbs":7,"title":1},"488":{"body":19,"breadcrumbs":9,"title":3},"489":{"body":0,"breadcrumbs":9,"title":3},"49":{"body":41,"breadcrumbs":9,"title":4},"490":{"body":8,"breadcrumbs":7,"title":1},"491":{"body":11,"breadcrumbs":7,"title":1},"492":{"body":19,"breadcrumbs":7,"title":1},"493":{"body":1,"breadcrumbs":9,"title":3},"494":{"body":1,"breadcrumbs":8,"title":2},"495":{"body":3,"breadcrumbs":10,"title":4},"496":{"body":49,"breadcrumbs":14,"title":7},"497":{"body":14,"breadcrumbs":8,"title":1},"498":{"body":113,"breadcrumbs":8,"title":1},"499":{"body":6,"breadcrumbs":8,"title":1},"5":{"body":69,"breadcrumbs":10,"title":1},"50":{"body":146,"breadcrumbs":9,"title":4},"500":{"body":180,"breadcrumbs":8,"title":1},"501":{"body":91,"breadcrumbs":8,"title":1},"502":{"body":25,"breadcrumbs":10,"title":3},"503":{"body":0,"breadcrumbs":10,"title":3},"504":{"body":44,"breadcrumbs":8,"title":1},"505":{"body":13,"breadcrumbs":8,"title":1},"506":{"body":31,"breadcrumbs":8,"title":1},"507":{"body":1,"breadcrumbs":10,"title":3},"508":{"body":1,"breadcrumbs":9,"title":2},"509":{"body":12,"breadcrumbs":11,"title":4},"51":{"body":332,"breadcrumbs":9,"title":4},"52":{"body":54,"breadcrumbs":9,"title":4},"53":{"body":93,"breadcrumbs":8,"title":3},"54":{"body":75,"breadcrumbs":8,"title":3},"55":{"body":1,"breadcrumbs":7,"title":2},"56":{"body":17,"breadcrumbs":9,"title":4},"57":{"body":0,"breadcrumbs":9,"title":4},"58":{"body":32,"breadcrumbs":7,"title":2},"59":{"body":2,"breadcrumbs":7,"title":2},"6":{"body":43,"breadcrumbs":10,"title":1},"60":{"body":22,"breadcrumbs":7,"title":2},"61":{"body":25,"breadcrumbs":9,"title":4},"62":{"body":1,"breadcrumbs":8,"title":3},"63":{"body":15,"breadcrumbs":10,"title":5},"64":{"body":42,"breadcrumbs":9,"title":4},"65":{"body":19,"breadcrumbs":8,"title":3},"66":{"body":43,"breadcrumbs":10,"title":5},"67":{"body":24,"breadcrumbs":9,"title":4},"68":{"body":45,"breadcrumbs":14,"title":7},"69":{"body":22,"breadcrumbs":8,"title":1},"7":{"body":113,"breadcrumbs":12,"title":3},"70":{"body":37,"breadcrumbs":8,"title":1},"71":{"body":2,"breadcrumbs":8,"title":1},"72":{"body":202,"breadcrumbs":8,"title":1},"73":{"body":3,"breadcrumbs":8,"title":1},"74":{"body":26,"breadcrumbs":10,"title":3},"75":{"body":0,"breadcrumbs":10,"title":3},"76":{"body":8,"breadcrumbs":8,"title":1},"77":{"body":6,"breadcrumbs":8,"title":1},"78":{"body":8,"breadcrumbs":8,"title":1},"79":{"body":10,"breadcrumbs":10,"title":3},"8":{"body":115,"breadcrumbs":14,"title":5},"80":{"body":7,"breadcrumbs":9,"title":2},"81":{"body":49,"breadcrumbs":16,"title":8},"82":{"body":33,"breadcrumbs":9,"title":1},"83":{"body":94,"breadcrumbs":9,"title":1},"84":{"body":6,"breadcrumbs":9,"title":1},"85":{"body":97,"breadcrumbs":9,"title":1},"86":{"body":11,"breadcrumbs":9,"title":1},"87":{"body":4,"breadcrumbs":11,"title":3},"88":{"body":8,"breadcrumbs":11,"title":3},"89":{"body":4,"breadcrumbs":9,"title":1},"9":{"body":142,"breadcrumbs":15,"title":6},"90":{"body":3,"breadcrumbs":9,"title":1},"91":{"body":3,"breadcrumbs":9,"title":1},"92":{"body":12,"breadcrumbs":11,"title":3},"93":{"body":4,"breadcrumbs":10,"title":2},"94":{"body":9,"breadcrumbs":12,"title":4},"95":{"body":74,"breadcrumbs":10,"title":5},"96":{"body":53,"breadcrumbs":6,"title":1},"97":{"body":0,"breadcrumbs":6,"title":1},"98":{"body":170,"breadcrumbs":6,"title":1},"99":{"body":161,"breadcrumbs":7,"title":2}},"docs":{"0":{"body":"This book contains the Polkadot Fellowship Requests for Comments (RFCs) detailing proposed changes to the technical implementation of the Polkadot network. polkadot-fellows/RFCs","breadcrumbs":"Introduction » Introduction","id":"0","title":"Introduction"},"1":{"body":"(source) Table of Contents RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs Summary Motivation Requirements Stakeholders Explanation Current code structure Proposed Modification Using the Deposit Function Enhanced Approach to Further Lower Barriers for Entry Discussion of Other Proposals Enhanced Weak Governance Origin Model Function-Based Pricing Model Linking Deposit to USD(x) Value Drawbacks Testing, Security, and Privacy Security concerns Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Unresolved Questions Future Directions and Related Material Start Date 2 November 2023 Description A proposal to reduce the minimum deposit required for collection creation on the Polkadot and Kusama Asset Hub, making it more accessible and affordable for artists. Authors Aurora Poppyseed , Just_Luuuu , Viki Val","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs","id":"1","title":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs"},"10":{"body":"Several innovative proposals have been considered to enhance the network's adaptability and manage deposit requirements more effectively:","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Discussion of Other Proposals","id":"10","title":"Discussion of Other Proposals"},"100":{"body":"All chain teams are stakeholders, as implementing this feature would require timely effort on their side and would impact compatibility with older tools. This feature is essential for all offline signer tools; many regular signing tools might make use of it. In general, this RFC greatly improves security of any network implementing it, as many governing keys are used with offline signers. Implementing this RFC would remove requirement to maintain metadata portals manually, as task of metadata verification would be effectively moved to consensus mechanism of the chain.","breadcrumbs":"RFC-0000: Metadata for offline signers » Stakeholders","id":"100","title":"Stakeholders"},"101":{"body":"Detailed description of metadata shortening and digest process is provided in metadata-shortener crate (see cargo doc --open and examples). Below are presented algorithms of the process.","breadcrumbs":"RFC-0000: Metadata for offline signers » Explanation","id":"101","title":"Explanation"},"102":{"body":"Metadata structure Metadata in general consists of four sections: Types registry Pallets Extrinsic metadata Runtime type Of these, only sections 1-3 contain information required for extrinsic decoding. The most important section is (1) Types registry, that is mostly used in extrinsic decoding. It is also the largest part, thus it is modularized for fractional transmission. Part (2) contains runtime version and is otherwise useless for transaction decoding; thus its contents are reduced to this parameter and included into Metadata Descriptor. Part (3) is included into Metadata Descriptor verbatim. Metadata descriptor Values for: u8 metadata shortening protocol version, SCALE-encoded ExtrinsicMetadata, SCALE-encoded spec_version String, SCALE-encoded spec_name String, u16 base58 prefix, u8 decimals value or 0u8 if no units are defined, SCALE-encoded tokenSymbol String defined on chain to identify the name of currency (available for example through system.properties() RPC call) or empty string if no base units are defined, enum MetadataDescriptor { V0, V1(MetadataDescriptorV1),\n} struct MetadataDescriptorV1 { extrinsic_metadata: Vec, // SCALE from `ExtrinsicMetadata` spec_version: Vec, // SCALE form `String` spec_name: Vec, // SCALE from `String` base58_prefix: u16, decimals: u8, token_symbol: Vec, // SCALE from `String`\n} constitute metadata descriptor. This is minimal information that is, together with (shortened) types registry, sufficient to decode any signable transaction. Merkle tree A Complete Binary Merkle Tree ( CBMT ) is proposed as digest structure. Every node of the proposed tree has a 32-bit value. A terminal node of the tree we call leaf . Its value is input for digest. The top node of the tree we call root . All node values for non-leave nodes are not terminal are computed through non-commutative merge procedure of child nodes. In CBMT, all layers must be populated, except for the last one, that must have complete filling from the left. Nodes are numbered top-down and left-to-right starting with 0 at the top of tree. Example 8-node tree 0 / \\ 1 2 / \\ / \\ 3 4 5 6 / \\\n7 8 Nodes 4, 5, 6, 7, 8 are leaves\nNode 0 is root","breadcrumbs":"RFC-0000: Metadata for offline signers » Definitions","id":"102","title":"Definitions"},"103":{"body":"The metadata is converted into lean modular form (vector of chunks) A Merkle tree is constructed from the metadata chunks A root of tree is merged with the hash of the MetadataDescriptor Resulting value is a constant to be included in additionalSigned to prove that the metadata seen by cold device is genuine","breadcrumbs":"RFC-0000: Metadata for offline signers » General flow","id":"103","title":"General flow"},"104":{"body":"Structure of types in shortened metadata exactly matches structure of types in scale-info at MetadataV14 state, but doc field is always empty struct Type { path: Path, // vector of strings type_params: Vec, type_def: TypeDef, // enum of various types doc: Vec,\n} struct TypeParams { name: String, ty: Option,\n} Types registry is stripped from docs fields. Types records are separated into chunks, with enum variants being individual chunks differing by variant index; each chunk consisting of id (same as in full metadata registry) and SCALE-encoded 'Type' description (reduced to 1-variant enum for enum variants). Enums with 0 variants are treated as regular types. Chunks are sorted by id in ascending order; chunks with same id are sorted by enum variant index in ascending order. types_registry = metadataV14.types\nmodularized_registry = EmptyVector\nfor (id, type) in types.registry.iterate_enumerate { type.doc = empty_vector if (type is ReduceableEnum) { // false for 0-variant enums for variant in type.variants.iterate { variant_type = Type { path: type.path type_params: empty_vector type_def: TypeDef::Variant(variants: [variant]) } modularized_registry.push(id, variant_type) } } else { modularized_registry.push(id, type) }\n} modularized_registry.sort(|a, b| { if a.id == b.id { //only possible for variants a.variant_index > b.variant_index } else { a.id > b.id } }\n)","breadcrumbs":"RFC-0000: Metadata for offline signers » Metadata modularization","id":"104","title":"Metadata modularization"},"105":{"body":"blake3 transformation of concatenated child nodes (blake3(left + right)) as merge procedure;","breadcrumbs":"RFC-0000: Metadata for offline signers » Merging protocol","id":"105","title":"Merging protocol"},"106":{"body":"Leaves are numbered in ascending order. Leaf index is associated with corresponding chunk. Merge is performed using the leaf with highest index as right and node with second to highest index as left children; result is pushed to the end of nodes queue and leaves are discarded. Step (2) is repeated until no leaves or just one leaf remains; in latter case, the last leaf is pushed to the front of the nodes queue. Right node and then left node is popped from the front of the nodes queue and merged; the result is sent to the end of the queue. Step (4) is repeated until only one node remains; this is tree root. queue = empty_queue while (leaves.length>1) { right = leaves.pop_last left = leaves.pop_last queue.push_back(merge(left, right))\n} if leaves.length == 1 { queue.push_front(leaves.last)\n} while queue.len() > 1 { right = queue.pop_front left = queue.pop_front queue.push_back(merge(left, right))\n} return queue.pop Resulting tree for metadata consisting of 5 nodes (numbered from 0 to 4): root / \\ * * / \\ / \\ * 0 1 2 / \\\n3 4","breadcrumbs":"RFC-0000: Metadata for offline signers » Complete Binary Merkle Tree construction protocol","id":"106","title":"Complete Binary Merkle Tree construction protocol"},"107":{"body":"Blake3 hash is computed for each chunk of modular short metadata registry. Complete Binary Merkle Tree is constructed as described above. Root hash of this tree (left) is merged with metadata descriptor blake3 hash (right); this is metadata digest. Version number and corresponding resulting metadata digest MUST be included into Signed Extensions as specified in Chain Verification section below.","breadcrumbs":"RFC-0000: Metadata for offline signers » Digest","id":"107","title":"Digest"},"108":{"body":"The root of metadata computed by cold device MAY be included into Signed Extensions; if it is included, the transaction will pass as valid iff hash of metadata as seen by cold storage device is identical to consensus hash of metadata, ensuring fair signing protocol. The Signed Extension representing metadata digest is a single byte representing both digest vaule inclusion and shortening protocol version; this MUST be included in Signed Extensions set. Depending on its value, a digest value is included as additionalSigned to signature computation according to following specification: signed extension value digest value comment 0x00 digest is not included 0x01 32-byte digest this represents protocol version 1 0x02 - 0xFF reserved reserved for future use","breadcrumbs":"RFC-0000: Metadata for offline signers » Chain verification","id":"108","title":"Chain verification"},"109":{"body":"","breadcrumbs":"RFC-0000: Metadata for offline signers » Drawbacks","id":"109","title":"Drawbacks"},"11":{"body":"The concept of a weak governance origin, controlled by a consortium like the System Collective, has been proposed. This model would allow for dynamic adjustments of NFT deposit requirements in response to market conditions, adhering to storage deposit norms. Enhancements and Concerns: Responsiveness : To address concerns about delayed responses, the model could incorporate automated triggers based on predefined market indicators, ensuring timely adjustments. Stability vs. Flexibility : Balancing stability with the need for flexibility is challenging. To mitigate the issue of frequent changes in DOT-based deposits, a mechanism for gradual and predictable adjustments could be introduced. Scalability : The model's scalability is a concern, given the numerous deposits across the system. A more centralized approach to deposit management might be needed to avoid constant, decentralized adjustments.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Enhanced Weak Governance Origin Model","id":"11","title":"Enhanced Weak Governance Origin Model"},"110":{"body":"A 1-byte increase in transaction size due to signed extension value. Digest is not included in transferred transaction, only in signing process.","breadcrumbs":"RFC-0000: Metadata for offline signers » Increased transaction size","id":"110","title":"Increased transaction size"},"111":{"body":"Some slightly out of spec systems might experience breaking changes as new content of signed extensions is added. It is important to note, that there is no real overhead in processing time nor complexity, as the metadata checking mechanism is voluntary. The only drawbacks are expected for tools that do not implement MetadataV14 self-descripting features.","breadcrumbs":"RFC-0000: Metadata for offline signers » Transition overhead","id":"111","title":"Transition overhead"},"112":{"body":"The metadata shortening protocol should be extensively tested on all available examples of metadata before releasing changes to either metadata or shortener. Careful code review should be performed on shortener implementation code to ensure security. The main metadata tree would inevitably be constructed on runtime build which would also ensure correctness. To be able to recall shortener protocol in case of vulnerability issues, a version byte is included.","breadcrumbs":"RFC-0000: Metadata for offline signers » Testing, Security, and Privacy","id":"112","title":"Testing, Security, and Privacy"},"113":{"body":"","breadcrumbs":"RFC-0000: Metadata for offline signers » Performance, Ergonomics, and Compatibility","id":"113","title":"Performance, Ergonomics, and Compatibility"},"114":{"body":"This is negligibly short pessimization during build time on the chain side. Cold wallets performance would improve mostly as metadata validity mechanism that was taking most of effort in cold wallet support would become trivial.","breadcrumbs":"RFC-0000: Metadata for offline signers » Performance","id":"114","title":"Performance"},"115":{"body":"The proposal was optimized for cold storage wallets usage with minimal impact on all other parts of the ecosystem","breadcrumbs":"RFC-0000: Metadata for offline signers » Ergonomics","id":"115","title":"Ergonomics"},"116":{"body":"Proposal in this form is not compatible with older tools that do not implement proper MetadataV14 self-descriptive features; those would have to be upgraded to include a new signed extensions field.","breadcrumbs":"RFC-0000: Metadata for offline signers » Compatibility","id":"116","title":"Compatibility"},"117":{"body":"This project was developed upon a Polkadot Treasury grant; relevant development links are located in metadata-offline-project repository.","breadcrumbs":"RFC-0000: Metadata for offline signers » Prior Art and References","id":"117","title":"Prior Art and References"},"118":{"body":"How would polkadot-js handle the transition? Where would non-rust tools like Ledger apps get shortened metadata content?","breadcrumbs":"RFC-0000: Metadata for offline signers » Unresolved Questions","id":"118","title":"Unresolved Questions"},"119":{"body":"Changes to code of all cold signers to implement this mechanism SHOULD be done when this is enabled; non-cold signers may perform extra metadata check for better security. Ultimately, signing anything without decoding it with verifiable metadata should become discouraged in all situations where a decision-making mechanism is involved (that is, outside of fully automated blind signers like trade bots or staking rewards payout tools).","breadcrumbs":"RFC-0000: Metadata for offline signers » Future Directions and Related Material","id":"119","title":"Future Directions and Related Material"},"12":{"body":"Another proposal is to use a mathematical function to regulate deposit prices, initially allowing low prices to encourage participation, followed by a gradual increase to prevent network bloat. Refinements: Choice of Function : A logarithmic or sigmoid function is favored over an exponential one, as these functions increase prices at a rate that encourages participation while preventing prohibitive costs. Adjustment of Constants : To finely tune the pricing rise, one of the function's constants could correlate with the total number of NFTs on AssetHub. This would align the deposit requirements with the actual usage and growth of the network.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Function-Based Pricing Model","id":"12","title":"Function-Based Pricing Model"},"120":{"body":"(source) Table of Contents RFC-0047: Assignment of availability chunks to validators Summary Motivation Stakeholders Explanation Systematic erasure codes Availability recovery at present Availability recovery from systematic chunks Chunk assignment function Network protocol Upgrade path Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Appendix A Start Date 03 November 2023 Description An evenly-distributing indirection layer between availability chunks and validators. Authors Alin Dima","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » RFC-0047: Assignment of availability chunks to validators","id":"120","title":"RFC-0047: Assignment of availability chunks to validators"},"121":{"body":"Propose a way of permuting the availability chunk indices assigned to validators, in the context of recovering available data from systematic chunks , with the purpose of fairly distributing network bandwidth usage.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Summary","id":"121","title":"Summary"},"122":{"body":"Currently, the ValidatorIndex is always identical to the ChunkIndex. Since the validator array is only shuffled once per session, naively using the ValidatorIndex as the ChunkIndex would pose an unreasonable stress on the first N/3 validators during an entire session, when favouring availability recovery from systematic chunks. Therefore, the relay chain node needs a deterministic way of evenly distributing the first ~(N_VALIDATORS / 3) systematic availability chunks to different validators, based on the relay chain block and core. The main purpose is to ensure fair distribution of network bandwidth usage for availability recovery in general and in particular for systematic chunk holders.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Motivation","id":"122","title":"Motivation"},"123":{"body":"Relay chain node core developers.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Stakeholders","id":"123","title":"Stakeholders"},"124":{"body":"","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Explanation","id":"124","title":"Explanation"},"125":{"body":"An erasure coding algorithm is considered systematic if it preserves the original unencoded data as part of the resulting code. The implementation of the erasure coding algorithm used for polkadot's availability data is systematic. Roughly speaking, the first N_VALIDATORS/3 chunks of data can be cheaply concatenated to retrieve the original data, without running the resource-intensive and time-consuming reconstruction algorithm. You can find the concatenation procedure of systematic chunks for polkadot's erasure coding algorithm here In a nutshell, it performs a column-wise concatenation with 2-byte chunks. The output could be zero-padded at the end, so scale decoding must be aware of the expected length in bytes and ignore trailing zeros (this assertion is already being made for regular reconstruction).","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Systematic erasure codes","id":"125","title":"Systematic erasure codes"},"126":{"body":"According to the polkadot protocol spec : A validator should request chunks by picking peers randomly and must recover at least f+1 chunks, where n=3f+k and k in {1,2,3}. For parity's polkadot node implementation, the process was further optimised. At this moment, it works differently based on the estimated size of the available data: (a) for small PoVs (up to 128 Kib), sequentially try requesting the unencoded data from the backing group, in a random order. If this fails, fallback to option (b). (b) for large PoVs (over 128 Kib), launch N parallel requests for the erasure coded chunks (currently, N has an upper limit of 50), until enough chunks were recovered. Validators are tried in a random order. Then, reconstruct the original data. All options require that after reconstruction, validators then re-encode the data and re-create the erasure chunks trie in order to check the erasure root.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Availability recovery at present","id":"126","title":"Availability recovery at present"},"127":{"body":"As part of the effort of increasing polkadot's resource efficiency, scalability and performance , work is under way to modify the Availability Recovery protocol by leveraging systematic chunks. See this comment for preliminary performance results. In this scheme, the relay chain node will first attempt to retrieve the ~N/3 systematic chunks from the validators that should hold them, before falling back to recovering from regular chunks, as before. A re-encoding step is still needed for verifying the erasure root, so the erasure coding overhead cannot be completely brought down to 0. Not being able to retrieve even one systematic chunk would make systematic reconstruction impossible. Therefore, backers can be used as a backup to retrieve a couple of missing systematic chunks, before falling back to retrieving regular chunks.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Availability recovery from systematic chunks","id":"127","title":"Availability recovery from systematic chunks"},"128":{"body":"Properties The function that decides the chunk index for a validator will be parameterized by at least (validator_index, core_index) and have the following properties: deterministic relatively quick to compute and resource-efficient. when considering a fixed core_index, the function should describe a permutation of the chunk indices the validators that map to the first N/3 chunk indices should have as little overlap as possible for different cores. In other words, we want a uniformly distributed, deterministic mapping from ValidatorIndex to ChunkIndex per core. It's desirable to not embed this function in the runtime, for performance and complexity reasons. However, this means that the function needs to be kept very simple and with minimal or no external dependencies. Any change to this function could result in parachains being stalled and needs to be coordinated via a runtime upgrade or governance call. Proposed function Pseudocode: pub fn get_chunk_index( n_validators: u32, validator_index: ValidatorIndex, core_index: CoreIndex\n) -> ChunkIndex { let threshold = systematic_threshold(n_validators); // Roughly n_validators/3 let core_start_pos = core_index * threshold; (core_start_pos + validator_index) % n_validators\n}","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Chunk assignment function","id":"128","title":"Chunk assignment function"},"129":{"body":"The request-response /req_chunk protocol will be bumped to a new version (from v1 to v2). For v1, the request and response payloads are: /// Request an availability chunk.\npub struct ChunkFetchingRequest { /// Hash of candidate we want a chunk for. pub candidate_hash: CandidateHash, /// The index of the chunk to fetch. pub index: ValidatorIndex,\n} /// Receive a requested erasure chunk.\npub enum ChunkFetchingResponse { /// The requested chunk data. Chunk(ChunkResponse), /// Node was not in possession of the requested chunk. NoSuchChunk,\n} /// This omits the chunk's index because it is already known by\n/// the requester and by not transmitting it, we ensure the requester is going to use his index\n/// value for validating the response, thus making sure he got what he requested.\npub struct ChunkResponse { /// The erasure-encoded chunk of data belonging to the candidate block. pub chunk: Vec, /// Proof for this chunk's branch in the Merkle tree. pub proof: Proof,\n} Version 2 will add an index field to ChunkResponse: #[derive(Debug, Clone, Encode, Decode)]\npub struct ChunkResponse { /// The erasure-encoded chunk of data belonging to the candidate block. pub chunk: Vec, /// Proof for this chunk's branch in the Merkle tree. pub proof: Proof, /// Chunk index. pub index: ChunkIndex\n} An important thing to note is that in version 1, the ValidatorIndex value is always equal to the ChunkIndex. Until the chunk rotation feature is enabled, this will also be true for version 2. However, after the feature is enabled, this will generally not be true. The requester will send the request to validator with index V. The responder will map the V validator index to the C chunk index and respond with the C-th chunk. This mapping can be seamless, by having each validator store their chunk by ValidatorIndex (just as before). The protocol implementation MAY check the returned ChunkIndex against the expected mapping to ensure that it received the right chunk. In practice, this is desirable during availability-distribution and systematic chunk recovery. However, regular recovery may not check this index, which is particularly useful when participating in disputes that don't allow for easy access to the validator->chunk mapping. See Appendix A for more details. In any case, the requester MUST verify the chunk's proof using the provided index. During availability-recovery, given that the requester may not know (if the mapping is not available) whether the received chunk corresponds to the requested validator index, it has to keep track of received chunk indices and ignore duplicates. Such duplicates should be considered the same as an invalid/garbage response (drop it and move on to the next validator - we can't punish via reputation changes, because we don't know which validator misbehaved).","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Network protocol","id":"129","title":"Network protocol"},"13":{"body":"This approach suggests pegging the deposit value to a stable currency like the USD, introducing predictability and stability for network users. Considerations and Challenges: Market Dynamics : One perspective is that fluctuations in native currency value naturally balance user participation and pricing, deterring network spam while encouraging higher-value collections. Conversely, there's an argument for allowing broader participation if the DOT/KSM value increases. Complexity and Risks : Implementing a USD-based pricing system could add complexity and potential risks. The implementation needs to be carefully designed to avoid unintended consequences, such as excessive reliance on external financial systems or currencies. Each of these proposals offers unique advantages and challenges. The optimal approach may involve a combination of these ideas, carefully adjusted to address the specific needs and dynamics of the Polkadot and Kusama networks.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Linking Deposit to USD(x) Value","id":"13","title":"Linking Deposit to USD(x) Value"},"130":{"body":"Step 1: Enabling new network protocol In the beginning, both /req_chunk/1 and /req_chunk/2 will be supported, until all validators and collators have upgraded to use the new version. V1 will be considered deprecated. During this step, the mapping will still be 1:1 (ValidatorIndex == ChunkIndex), regardless of protocol. Once all nodes are upgraded, a new release will be cut that removes the v1 protocol. Only once all nodes have upgraded to this version will step 2 commence. Step 2: Enabling the new validator->chunk mapping Considering that the Validator->Chunk mapping is critical to para consensus, the change needs to be enacted atomically via governance, only after all validators have upgraded the node to a version that is aware of this mapping, functionality-wise. It needs to be explicitly stated that after the governance enactment, validators that run older client versions that don't support this mapping will not be able to participate in parachain consensus. Additionally, an error will be logged when starting a validator with an older version, after the feature was enabled. On the other hand, collators will not be required to upgrade in this step (but are still require to upgrade for step 1), as regular chunk recovery will work as before, granted that version 1 of the networking protocol has been removed. Note that collators only perform availability-recovery in rare, adversarial scenarios, so it is fine to not optimise for this case and let them upgrade at their own pace. To support enabling this feature via the runtime, we will use the NodeFeatures bitfield of the HostConfiguration struct (added in https://github.com/paritytech/polkadot-sdk/pull/2177). Adding and enabling a feature with this scheme does not require a runtime upgrade, but only a referendum that issues a Configuration::set_node_feature extrinsic. Once the feature is enabled and new configuration is live, the validator->chunk mapping ceases to be a 1:1 mapping and systematic recovery may begin.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Upgrade path","id":"130","title":"Upgrade path"},"131":{"body":"Getting access to the core_index that used to be occupied by a candidate in some parts of the dispute protocol is very complicated (See appendix A ). This RFC assumes that availability-recovery processes initiated during disputes will only use regular recovery, as before. This is acceptable since disputes are rare occurrences in practice and is something that can be optimised later, if need be. Adding the core_index to the CandidateReceipt would mitigate this problem and will likely be needed in the future for CoreJam and/or Elastic scaling. Related discussion about updating CandidateReceipt It's a breaking change that requires all validators and collators to upgrade their node version at least once.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Drawbacks","id":"131","title":"Drawbacks"},"132":{"body":"Extensive testing will be conducted - both automated and manual. This proposal doesn't affect security or privacy.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Testing, Security, and Privacy","id":"132","title":"Testing, Security, and Privacy"},"133":{"body":"","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Performance, Ergonomics, and Compatibility","id":"133","title":"Performance, Ergonomics, and Compatibility"},"134":{"body":"This is a necessary data availability optimisation, as reed-solomon erasure coding has proven to be a top consumer of CPU time in polkadot as we scale up the parachain block size and number of availability cores. With this optimisation, preliminary performance results show that CPU time used for reed-solomon coding/decoding can be halved and total POV recovery time decrease by 80% for large POVs. See more here .","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Performance","id":"134","title":"Performance"},"135":{"body":"Not applicable.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Ergonomics","id":"135","title":"Ergonomics"},"136":{"body":"This is a breaking change. See upgrade path section above. All validators and collators need to have upgraded their node versions before the feature will be enabled via a governance call.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Compatibility","id":"136","title":"Compatibility"},"137":{"body":"See comments on the tracking issue and the in-progress PR","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Prior Art and References","id":"137","title":"Prior Art and References"},"138":{"body":"Not applicable.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Unresolved Questions","id":"138","title":"Unresolved Questions"},"139":{"body":"This enables future optimisations for the performance of availability recovery, such as retrieving batched systematic chunks from backers/approval-checkers.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Future Directions and Related Material","id":"139","title":"Future Directions and Related Material"},"14":{"body":"Modifying deposit requirements necessitates a balanced assessment of the potential drawbacks. Highlighted below are cogent points extracted from the discourse on the Polkadot Forum conversation , which provide critical perspectives on the implications of such changes: The discourse around modifying deposit requirements includes various perspectives: Adjusting NFT deposit requirements on Polkadot and Kusama Asset Hubs involves key challenges: State Growth and Technical Concerns : Lowering deposit requirements can lead to increased blockchain state size, potentially causing state bloat. This growth needs to be managed to prevent strain on the network's resources and maintain operational efficiency. Network Security and Market Response : Reduced deposits might increase transaction volume, potentially bloating the state, thereby impacting network security. Additionally, adapting to the cryptocurrency market's volatility is crucial. The mechanism for setting deposit amounts must be responsive yet stable, avoiding undue complexity for users. Economic Impact on Previous Stakeholders : The change could have varied economic effects on previous (before the change) creators, platform operators, and investors. Balancing these interests is essential to ensure the adjustment benefits the ecosystem without negatively impacting its value dynamics. However in the particular case of Polkadot and Kusama Asset Hub this does not pose a concern since there are very few collections currently and thus previous stakeholders wouldn't be much affected. As of date 9th January 2024 there are 42 collections on Polkadot Asset Hub and 191 on Kusama Asset Hub with a relatively low volume.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Drawbacks","id":"14","title":"Drawbacks"},"140":{"body":"This appendix details the intricacies of getting access to the core index of a candidate in parity's polkadot node. Here, core_index refers to the index of the core that a candidate was occupying while it was pending availability (from backing to inclusion). Availability-recovery can currently be triggered by the following phases in the polkadot protocol: During the approval voting process. By other collators of the same parachain. During disputes. Getting the right core index for a candidate can be troublesome. Here's a breakdown of how different parts of the node implementation can get access to it: The approval-voting process for a candidate begins after observing that the candidate was included. Therefore, the node has easy access to the block where the candidate got included (and also the core that it occupied). The pov_recovery task of the collators starts availability recovery in response to noticing a candidate getting backed, which enables easy access to the core index the candidate started occupying. Disputes may be initiated on a number of occasions: 3.a. is initiated by the validator as a result of finding an invalid candidate while participating in the approval-voting protocol. In this case, availability-recovery is not needed, since the validator already issued their vote. 3.b is initiated by the validator noticing dispute votes recorded on-chain. In this case, we can safely assume that the backing event for that candidate has been recorded and kept in memory. 3.c is initiated as a result of getting a dispute statement from another validator. It is possible that the dispute is happening on a fork that was not yet imported by this validator, so the subsystem may not have seen this candidate being backed. A naive attempt of solving 3.c would be to add a new version for the disputes request-response networking protocol. Blindly passing the core index in the network payload would not work, since there is no way of validating that the reported core_index was indeed the one occupied by the candidate at the respective relay parent. Another attempt could be to include in the message the relay block hash where the candidate was included. This information would be used in order to query the runtime API and retrieve the core index that the candidate was occupying. However, considering it's part of an unimported fork, the validator cannot call a runtime API on that block. Adding the core_index to the CandidateReceipt would solve this problem and would enable systematic recovery for all dispute scenarios.","breadcrumbs":"RFC-0047: Assignment of availability chunks to validators » Appendix A","id":"140","title":"Appendix A"},"141":{"body":"(source) Table of Contents RFC-0059: Add a discovery mechanism for nodes based on their capabilities Summary Motivation Stakeholders Explanation Capabilities DHT provider registration Secondary DHTs Head of the chain providers Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-12-18 Description Nodes having certain capabilities register themselves in the DHT to be discoverable Authors Pierre Krieger","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » RFC-0059: Add a discovery mechanism for nodes based on their capabilities","id":"141","title":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities"},"142":{"body":"This RFC proposes to make the mechanism of RFC #8 more generic by introducing the concept of \"capabilities\". Implementations can implement certain \"capabilities\", such as serving old block headers or being a parachain bootnode. The discovery mechanism of RFC #8 is extended to be able to discover nodes of specific capabilities.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Summary","id":"142","title":"Summary"},"143":{"body":"The Polkadot peer-to-peer network is made of nodes. Not all these nodes are equal. Some nodes store only the headers of recently blocks, some nodes store all the block headers and bodies since the genesis, some nodes store the storage of all blocks since the genesis, and so on. It is currently not possible to know ahead of time (without connecting to it and asking) which nodes have which data available, and it is not easily possible to build a list of nodes that have a specific piece of data available. If you want to download for example the header of block 500, you have to connect to a randomly-chosen node, ask it for block 500, and if it says that it doesn't have the block, disconnect and try another randomly-chosen node. In certain situations such as downloading the storage of old blocks, nodes that have the information are relatively rare, and finding through trial and error a node that has the data can take a long time. This RFC attempts to solve this problem by giving the possibility to build a list of nodes that are capable of serving specific data.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Motivation","id":"143","title":"Motivation"},"144":{"body":"Low-level client developers. People interested in accessing the archive of the chain.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Stakeholders","id":"144","title":"Stakeholders"},"145":{"body":"Reading RFC #8 first might help with comprehension, as this RFC is very similar. Please keep in mind while reading that everything below applies for both relay chains and parachains, except mentioned otherwise.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Explanation","id":"145","title":"Explanation"},"146":{"body":"This RFC defines a list of so-called capabilities : Head of chain provider . An implementation with this capability must be able to serve to other nodes block headers, block bodies, justifications, calls proofs, and storage proofs of \"recent\" (see below) blocks, and, for relay chains, to serve to other nodes warp sync proofs where the starting block is a session change block and must participate in Grandpa and Beefy gossip. History provider . An implementation with this capability must be able to serve to other nodes block headers and block bodies of any block since the genesis, and must be able to serve to other nodes justifications of any session change block since the genesis up until and including their currently finalized block. Archive provider . This capability is a superset of History provider . In addition to the requirements of History provider , an implementation with this capability must be able to serve call proofs and storage proof requests of any block since the genesis up until and including their currently finalized block. Parachain bootnode (only for relay chains). An implementation with this capability must be able to serve the network request described in RFC 8. In the context of the head of chain provider , the word \"recent\" means: any not-finalized-yet block that is equal to or an ancestor of a block that it has announced through a block announce, and any finalized block whose height is superior to its current finalized block minus 16 . This does not include blocks that have been pruned because they're not a descendant of its current finalized block. In other words, blocks that aren't a descendant of the current finalized block can be thrown away. A gap of blocks is required due to race conditions: when a node finalizes a block, it takes some time for its peers to be made aware of this, during which they might send requests concerning older blocks. The exact gap is arbitrary. Substrate is currently by default a head of chain provider provider. After it has finished warp syncing, it downloads the list of old blocks, after which it becomes a history provider . If Substrate is instead configured as an archive node, then it downloads the state of all blocks since the genesis, after which it becomes an archive provider , history provider , and head of chain provider . If blocks pruning is enabled and the chain is a relay chain, then Substrate unfortunately doesn't implement any of these capabilities, not even head of chain provider . This is considered as a bug that should be fixed, see https://github.com/paritytech/polkadot-sdk/issues/2733 .","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Capabilities","id":"146","title":"Capabilities"},"147":{"body":"This RFC heavily relies on the functionalities of the Kademlia DHT already in use by Polkadot. You can find a link to the specification here . Implementations that have the history provider capability should register themselves as providers under the key sha256(concat(\"history\", randomness)). Implementations that have the archive provider capability should register themselves as providers under the key sha256(concat(\"archive\", randomness)). Implementations that have the parachain bootnode capability should register themselves as provider under the key sha256(concat(scale_compact(para_id), randomness)), as described in RFC 8. \"Register themselves as providers\" consists in sending ADD_PROVIDER requests to nodes close to the key, as described in the Content provider advertisement section of the specification. The value of randomness can be found in the randomness field when calling the BabeApi_currentEpoch function. In order to avoid downtimes when the key changes, nodes should also register themselves as a secondary key that uses a value of randomness equal to the randomness field when calling BabeApi_nextEpoch. Implementers should be aware that their implementation of Kademlia might already hash the key before XOR'ing it. The key is not meant to be hashed twice. Implementations must not register themselves if they don't fulfill the capability yet . For example, a node configured to be an archive node but that is still building its archive state in the background must register itself only after it has finished building its archive.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » DHT provider registration","id":"147","title":"DHT provider registration"},"148":{"body":"Implementations that have the history provider capability must also participate in a secondary DHT that comprises only of nodes with that capability. The protocol name of that secondary DHT must be //kad/history. Similarly, implementations that have the archive provider capability must also participate in a secondary DHT that comprises only of nodes with that capability and whose protocol name is //kad/archive. Just like implementations must not register themselves if they don't fulfill their capability yet, they must also not participate in the secondary DHT if they don't fulfill their capability yet.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Secondary DHTs","id":"148","title":"Secondary DHTs"},"149":{"body":"Implementations that have the head of the chain provider capability do not register themselves as providers, but instead are the nodes that participate in the main DHT. In other words, they are the nodes that serve requests of the //kad protocol. Any implementation that isn't a head of the chain provider (read: light clients) must not participate in the main DHT. This is already presently the case. Implementations must not participate in the main DHT if they don't fulfill the capability yet. For example, a node that is still in the process of warp syncing must not participate in the main DHT. However, assuming that warp syncing doesn't last more than a few seconds, it is acceptable to ignore this requirement in order to avoid complicating implementations too much.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Head of the chain providers","id":"149","title":"Head of the chain providers"},"15":{"body":"","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Testing, Security, and Privacy","id":"15","title":"Testing, Security, and Privacy"},"150":{"body":"None that I can see.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Drawbacks","id":"150","title":"Drawbacks"},"151":{"body":"The content of this section is basically the same as the one in RFC 8. This mechanism doesn't add or remove any security by itself, as it relies on existing mechanisms. Due to the way Kademlia works, it would become the responsibility of the 20 Polkadot nodes whose sha256(peer_id) is closest to the key (described in the explanations section) to store the list of nodes that have specific capabilities. Furthermore, when a large number of providers are registered, only the providers closest to the key are kept, up to a certain implementation-defined limit. For this reason, an attacker can abuse this mechanism by randomly generating libp2p PeerIds until they find the 20 entries closest to the key representing the target capability. They are then in control of the list of nodes with that capability. While doing this can in no way be actually harmful, it could lead to eclipse attacks. Because the key changes periodically and isn't predictable, and assuming that the Polkadot DHT is sufficiently large, it is not realistic for an attack like this to be maintained in the long term.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Testing, Security, and Privacy","id":"151","title":"Testing, Security, and Privacy"},"152":{"body":"","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Performance, Ergonomics, and Compatibility","id":"152","title":"Performance, Ergonomics, and Compatibility"},"153":{"body":"The DHT mechanism generally has a low overhead, especially given that publishing providers is done only every 24 hours. Doing a Kademlia iterative query then sending a provider record shouldn't take more than around 50 kiB in total of bandwidth for the parachain bootnode. Assuming 1000 nodes with a specific capability, the 20 Polkadot full nodes corresponding to that capability will each receive a sudden spike of a few megabytes of networking traffic when the key rotates. Again, this is relatively negligible. If this becomes a problem, one can add a random delay before a node registers itself to be the provider of the key corresponding to BabeApi_next_epoch. Maybe the biggest uncertainty is the traffic that the 20 Polkadot full nodes will receive from light clients that desire knowing the nodes with a capability. If this every becomes a problem, this value of 20 is an arbitrary constant that can be increased for more redundancy.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Performance","id":"153","title":"Performance"},"154":{"body":"Irrelevant.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Ergonomics","id":"154","title":"Ergonomics"},"155":{"body":"Irrelevant.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Compatibility","id":"155","title":"Compatibility"},"156":{"body":"Unknown.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Prior Art and References","id":"156","title":"Prior Art and References"},"157":{"body":"While it fundamentally doesn't change much to this RFC, using BabeApi_currentEpoch and BabeApi_nextEpoch might be inappropriate. I'm not familiar enough with good practices within the runtime to have an opinion here. Should it be an entirely new pallet?","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Unresolved Questions","id":"157","title":"Unresolved Questions"},"158":{"body":"This RFC would make it possible to reliably discover archive nodes, which would make it possible to reliably send archive node requests, something that isn't currently possible. This could solve the problem of finding archive RPC node providers by migrating archive-related request to using the native peer-to-peer protocol rather than JSON-RPC. If we ever decide to break backwards compatibility, we could divide the \"history\" and \"archive\" capabilities in two, between nodes capable of serving older blocks and nodes capable of serving newer blocks. We could even add to the peer-to-peer network nodes that are only capable of serving older blocks (by reading from a database) but do not participate in the head of the chain, and that just exist for historical purposes.","breadcrumbs":"RFC-0059: Add a discovery mechanism for nodes based on their capabilities » Future Directions and Related Material","id":"158","title":"Future Directions and Related Material"},"159":{"body":"(source) Table of Contents RFC-0061: Support allocator inside of runtime Summary Motivation Stakeholders Explanation Runtime side spec Client side spec Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 27 December 2023 Description Supporting runtime built-in allocator makes the substrate runtime more versatile Authors Jiahao Ye","breadcrumbs":"RFC-0061: Support allocator inside of runtime » RFC-0061: Support allocator inside of runtime","id":"159","title":"RFC-0061: Support allocator inside of runtime"},"16":{"body":"The prevention of \"spam\" could be prevented by OpenGov proposal to forceDestoy list of collections that are not suitable.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Security concerns","id":"16","title":"Security concerns"},"160":{"body":"Currently, substrate runtime use an simple allocator defined by host side. Every runtime MUST import these allocator functions for normal execution. This situation make runtime code not versatile enough. So this RFC proposes to define a new spec for allocator part to make substrate runtime more generic.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Summary","id":"160","title":"Summary"},"161":{"body":"Since this RFC define a new way for allocator, we now regard the old one as legacy allocator. As we all know, since the allocator implementation details are defined by the substrate client, parachain/parathread cannot customize memory allocator algorithm, so the new specification allows the runtime to customize memory allocation, and then export the allocator function according to the specification for the client side to use. Another benefit is that some new host functions can be designed without allocating memory on the client, which may have potential performance improvements. Also it will help provide a unified and clean specification if substrate runtime support multi-targets(e.g. RISC-V). There is also a potential benefit. Many programming languages that support compilation to wasm may not be friendly to supporting external allocator. This is beneficial for other programming languages to enter the substrate runtime ecosystem. The last and most important benefit is that for offchain context execution, the runtime can fully support pure wasm. What this means here is that all imported host functions could not actually be called (as stub functions), then the various verification logic of the runtime can be converted into pure wasm, which provides the possibility for the substrate runtime to run block verification in other environments (such as in browsers and other non-substrate environments).","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Motivation","id":"161","title":"Motivation"},"162":{"body":"No attempt was made at convincing stakeholders.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Stakeholders","id":"162","title":"Stakeholders"},"163":{"body":"","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Explanation","id":"163","title":"Explanation"},"164":{"body":"This section contains a list of functions should be exported by substrate runtime. We define the spec as version 1, so the following dummy function v1 MUST be exported to hint client that runtime is using version 1 spec, otherwise rollback to legacy allocator. The function should never be used, and its name is only for version checking. (export \"v1\" (func $v1)) Choose this way is more generic than custom section since many other tools do not support custom section very well. But if an environment want to run it, it should always be possible to parse the export section. The allocator functions are: (export \"alloc\" (func $alloc))\n(export \"dealloc\" (func $dealloc))\n(export \"realloc\" (func $realloc)) Their signatures are: (func $alloc (param $size i32) (result i32))\n(func $dealloc (param $addr i32) (param $size i32))\n(func $realloc (param $addr i32) (param $size i32) (param $new_size i32) (result i32)) Note: dealloc/realloc is not used in substrate side currently, but for the functional integrity. The following imports are disabled. The two kind of allocators(leagcy and v1) cannot know each other, and importing them will cause abnormal memory allocation. (import \"env\" \"ext_allocator_free_version_1\" (func $ext_allocator_free_version_1 (type 0)))\n(import \"env\" \"ext_allocator_malloc_version_1\" (func $ext_allocator_malloc_version_1 (type 1))) The following export could be removed. The client side no need to know heap base. (export \"__heap_base\" (global 2))","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Runtime side spec","id":"164","title":"Runtime side spec"},"165":{"body":"During instantiating time, add a version checking stage for wasm executor before any other wasm module checking. Check if parsed wasm module contains a exported v1 function: If not exist, we predicate it using legacy allocator, just do normal checking like before. Set legacy allocator be Some while set v1 allocator be None. If exist, we predicate it using v1 allocator. And then we lookup and hold the exported alloc function for the total lifestyle of instance, return error if not exist. Set legacy allocator be None while set v1 allocator be Some. When wasm host functions or other entrypoint call(e.g. runtime_apis/validate_block) need to allocate memory, check if instance hold the alloc, if hold just call it otherwise call the legacy allocator. Detail-heavy explanation of the RFC, suitable for explanation to an implementer of the changeset. This should address corner cases in detail and provide justification behind decisions, and provide rationale for how the design meets the solution requirements.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Client side spec","id":"165","title":"Client side spec"},"166":{"body":"The allocator inside of the runtime will make code size bigger, but it's not obvious. The allocator inside of the runtime maybe slow down(or speed up) the runtime, still not obvious. We could ignore these drawbacks since they are not prominent. And the execution efficiency is highly decided by runtime developer. We could not prevent a poor efficiency if developer want to do it.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Drawbacks","id":"166","title":"Drawbacks"},"167":{"body":"Keep the legacy allocator runtime test cases, and add new feature to compile test cases for v1 allocator spec. And then update the test asserts. Update template runtime to enable v1 spec. Once the dev network runs well, it seems that the spec is implmented correctly.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Testing, Security, and Privacy","id":"167","title":"Testing, Security, and Privacy"},"168":{"body":"","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Performance, Ergonomics, and Compatibility","id":"168","title":"Performance, Ergonomics, and Compatibility"},"169":{"body":"As the above says, not obvious impact about performance. And polkadot-sdk could offer the best practice allocator for all chains. Third party also could customized by theirself. So the performance could be improved over time.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Performance","id":"169","title":"Performance"},"17":{"body":"","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Performance, Ergonomics, and Compatibility","id":"17","title":"Performance, Ergonomics, and Compatibility"},"170":{"body":"Only for runtime developer, Just need to import a new crate and enable a new feature. Maybe it's convienient for other wasm-target language to implment.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Ergonomics","id":"170","title":"Ergonomics"},"171":{"body":"It's 100% compatible. Only Some runtime configs and executor configs need to be depreacted. For support new runtime spec, we MUST upgrade the client binary to support new spec of client part firstly. We SHALL add an optional primtive crate to enable the version 1 spec and disable the legacy allocator by cargo feature. For the first year, we SHALL disable the v1 by default, and enable it by default start in the next year.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Compatibility","id":"171","title":"Compatibility"},"172":{"body":"Move the allocator inside of the runtime Add new allocator design","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Prior Art and References","id":"172","title":"Prior Art and References"},"173":{"body":"None at this time.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Unresolved Questions","id":"173","title":"Unresolved Questions"},"174":{"body":"The content discussed with RFC-0004 is basically orthogonal, but it could still be considered together, and it is preferred that this rfc be implmentented first. This feature could make substrate runtime be easier supported by other languages and integreted into other ecosystem.","breadcrumbs":"RFC-0061: Support allocator inside of runtime » Future Directions and Related Material","id":"174","title":"Future Directions and Related Material"},"175":{"body":"(source) Table of Contents RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot Summary Motivation Defi+NFT Applications need Smart Contracts on AssetHub Rollups need Smart Contracts on AssetHub ink! on AssetHub will lead to CorePlay Developers on AssetHub Stakeholders Explanation Limit Smart Contract Weight allocation Model AssetHub Assets inside EVM Smart Contracts based on Astar New DOT Revenue Sources New Revenue from AssetHub EVM Contracts New Revenue for ink!/Coreplay Contracts Drawbacks and Tradeoffs Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Unresolved Questions Future Directions and Related Material Start Date 14 January 2024 Description A proposal to add EVM + ink! Contracts to Asset Hub for Polkadot to support Polkadot Rollups and larger numbers of EVM/Coreplay smart contract developers and their users on Polkadot Rollups and AssetHub for Polkadot . Authors Sourabh Niyogi","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot","id":"175","title":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot"},"176":{"body":"This RFC proposes to add the two dominant smart contract programming languages in the Polkadot ecosystem to AssetHub: EVM + ink!/Coreplay. The objective is to increase DOT Revenue by making AssetHub accessible to (1) Polkadot Rollups; (2) EVM smart contract programmers; (3) Coreplay programmers who will benefit from easier-to-use smart contract environments. These changes in AssetHub are enabled by key Polkadot 2.0 technologies: PolkaVM supporting Coreplay, and hyper data availability in Blobs Chain.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Summary","id":"176","title":"Summary"},"177":{"body":"EVM Contracts are pervasive in the Web3 blockchain ecosystem, while Polkadot 2.0's Coreplay aims to surpass EVM Contracts in ease-of-use using PolkaVM's RISC architecture. Asset Hub for Polkadot does not have smart contract capabilities, even though dominant stablecoin assets such as USDC and USDT are originated there. In addition, in the RFC #32 - Minimal Relay Chain architecture , DOT balances are planned to be shifted to Asset Hub, to support Polkadot 2.0's CoreJam map-reduce architecture . In this 2.0 architecture, there is no room for synchronous contracts on the Polkadot relay chain -- doing so would waste precious resources that should be dedicated to sync+async composability. However, while Polkadot fellows have concluded the Polkadot relay chain should not support synchronous smart contracts, this is not applicable to AssetHub for Polkadot. The following sections argue for the need for Smart Contracts on AssetHub.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Motivation","id":"177","title":"Motivation"},"178":{"body":"EVM Smart Contract chains within Polkadot and outside are dominated by defi + NFT applications. While the assetConversion pallet (implementing Uniswap v1) is a start to having some basic defi on AssetHub, many programmers may be surprised to find that synchronous EVM smart contract capabilities (e.g. uniswap v2+v3) on other chains are not possible on AssetHub. Indeed, this is true for many Polkadot parachains, with the exception of the top 2 Polkadot parachains (by marketcap circa early 2024: Moonbeam + Astar) who do include the EVM pallets. This leads to a cumbersome Polkadot EVM smart contract programming experience between AssetHub and these 2 Polkadot parachains, making the Polkadot ecosystem hard to work with for asset-related applications from defi to NFTs. The ink! defi ecosystem remains nascent, having only Astar as a potential home, and empirically has almost no defi/NFT activity. Although e.g. uniswap translations have been written, An AssetHub for Polkadot deployment of EVM and ink! contracts, it is hoped, would likely support new applications for top assets (USDC and USDT) and spur many smart contract developers to develop end user applications with familiar synchronous programming constructs.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Defi+NFT Applications need Smart Contracts on AssetHub","id":"178","title":"Defi+NFT Applications need Smart Contracts on AssetHub"},"179":{"body":"Polkadot Data Availability technology is extremely promising but underutilized. We envision a new class of customer, \"Polkadot Rollups\" that can utilize Polkadot DA far better than Ethereum and other technology platforms. Unlike Ethereum's DA which is capped at a fixed throughput now extending to EIP-4844, Polkadot data availability is linear in the number of cores . This means Polkadot can support a much larger number of rollups than Ethereum now , and even more as the number of cores in Polkadot grows. This performance difference has not been widely appreciated in the blockchain community. Recently, a \"Blobs\" chain has been developed to expose Polkadot DA to rollups by senior Polkadot Fellows: ThrumDev Blobs on Kusama - ParaID 3338 ) Rollkit A rollup kit is mappable to widely used rollup platforms, such as OP Stack, Arbitrum Orbit or StarkNet Madara. A Blobs chain, currently deployed on Kusama (paraID 3338), enables rollups to utilize functionality outside the Polkadot 1.0 parachain architecture by having rollups submit transactions via a rollup kit abstraction. The Blobs chain write interface is simple blobs.submitBlob(namespaceId, blob) with a matching read interface. However, simply sending blobs is not enough to power a rollup. End users need to interact with a \"settlement layer\", while rollups require proof systems for security. Key functionality for optimistic rollups (e.g. OP Stack, Arbitrum Orbit) are: enabling the users of the rollup to deposit and withdraw the L1 native token (DOT) into the rollup and from the rollup. In an AssetHub context: Deposits: send DOT to the rollup from AssetHub, by calling an EVM Contract function on AssetHub; Withdrawal: withdraw DOT from the rollup by submitting a EVM transaction on the rollup. After some of days (e.g. 7 days on OP Stack), the user submits a transaction on AssetHub to claim their DOT, using a Merkle proof. enabling interactive fraud proofs. While this has rarely happened in practice, it is critical to rollup security. In an AssetHub context: Anyone monitoring a rollup, using the Blobs chain can access the recent history. When detecting invalid state transitions, anyone can interact with rollup and AssetHub's EVM to generate a fraud proof. Analogous functionality exist for ZK-rollup platforms (e.g. Polygon zkEVM, StarkNet Madara), with high potential for using the same Blobs+AssetHub chains. While it is possible to have the operations in EVM Contracts translated in FRAME pallets (e.g. an \"opstack\" pallet), we do not believe a pallet translation confers significant benefits. Instead, we believe the translation would require regular updates from the rollup platform, which have proven difficult to implement in practice.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Rollups need Smart Contracts on AssetHub","id":"179","title":"Rollups need Smart Contracts on AssetHub"},"18":{"body":"The primary performance consideration stems from the potential for state bloat due to increased activity from lower deposit requirements. It's vital to monitor and manage this to avoid any negative impact on the chain's performance. Strategies for mitigating state bloat, including efficient data management and periodic reviews of storage requirements, will be essential.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Performance","id":"18","title":"Performance"},"180":{"body":"While ink! WASM Smart Contracts have been promising technology, the adoption of ink! WASM Contracts amongst Polkadot parachains has been low, in practice just Astar to date, with nowhere near as many developers. This may be due to missing tooling, slow compile times, and/or simply because ink!/Rust is just harder to learn than Solidity, the dominant programming language of EVM Chains. Fortunately, ink! can compile to PolkaVM , a new RISC based VM that has the special capability of suspending and resuming the registers, supporting long-running computations. This has the key new promise of making smart contract languages easier to use -- instead of smart contract developers worrying about what can be done within the gas limits of a specific block or a specific transaction, Coreplay smart contracts can be much easier to program on (see here ). We believe AssetHub should support ink! as a precursor to support CorePlay's capabilities as soon as possible. To the best of our knowledge, release times of this are unknown but having ink! inside AssetHub would be natural for Polkadot 2.0.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » ink! on AssetHub will lead to CorePlay Developers on AssetHub","id":"180","title":"ink! on AssetHub will lead to CorePlay Developers on AssetHub"},"181":{"body":"Asset Hub Users : Those who call any extrinsic on Asset Hub for Polkadot. DOT Token Holders : Those who hold DOT on any chain in the Polkadot ecosystem. AssetHub Smart Contract Developers : Those who utilize EVM Smart Contracts, ink! Contracts or Coreplay Contracts on AssetHub. Ethereum Rollups : Rollups who utilize Ethereum as a settlement layer and interactive fraud proofs or ZK proofs to secure their rollup and utilize Ethereum DA to record transactions, provide security for their rollup, and have rollup users settle on Ethereum. Polkadot Rollups : Rollups who utilize AssetHub as a settlement layer and interactive fraud proofs or ZK proofs on Assethub and Blobs to record rollup transactions, provide security for their rollup, and have rollup users settle on AssetHub for Polkadot.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Stakeholders","id":"181","title":"Stakeholders"},"182":{"body":"","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Explanation","id":"182","title":"Explanation"},"183":{"body":"AssetHub is a major component of the Polkadot 2.0 Minimal Relay Chain architecture. It is critical that smart contract developers not be able to clog AssetHub's blockspace for other mission critical applications, such as Staking and Governance. As such, it is proposed that at most 50% of the available weight in AssetHub for Polkadot blocks be allocated to smart contracts pallets (EVM, ink! and/or Coreplay). While to date AssetHub has limited usage, it is believed (see here ) that imposing this limit on smart contracts pallet would limit the effect on non-smart contract usage. A excessively small weight limit like 10% or 20% may limit the attractiveness of Polkadot as a platform for Polkadot rollups and EVM Contracts. A excessively large weight like 90% or 100% may threaten AssetHub usage. In practice, this 50% weight limit would be used for 3 categories of smart contract usage: Defi/NFT applications: modern defi EVM Contracts would be expected to go beyond the capabilities of assetConversion pallet to support many common ERC20/ERC721/ERC1155 centric applications. Polkadot Rollups users: deposit and withdrawal operations would be expected to dominate here. Note the operations of recording blocks would be done on the Blobs Chains, while interactive fraud proofs would be extremely rare by comparison. Coreplay smart contract usage, at a future time. We expect the first category to dominate. If AssetHub smart contract usage increases so as to approach this 50% limit, the gas price will increase significantly. This likely motivates EVM contract developers to migrate to a EVM contract chain and/or rethink their application to work asynchronously within CoreJam, another major Polkadot 2.0 technology.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Limit Smart Contract Weight allocation","id":"183","title":"Limit Smart Contract Weight allocation"},"184":{"body":"It is essential to make AssetHub assets interface well with EVM Smart Contracts. Polkadot parachains Astar and Moonbeam have a mapping between assetIDs and \"virtual\" EVM Contracts. Astar XCM Asset List Moonbeam XC-20 We propose that AssetHub support a systemic mapping following Astar: (a) Native Relay DOT + KSM - should be mapped to 0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF on AssetHub for Polkadot and AssetHub for Kusama respectively (b) Other Assethubs assets should map into an EVM address using a 0xffffffff prefix https://docs.astar.network/docs/learn/interoperability/xcm/integration/tools#xc20-address The usage of the above has been made code-complete by Astar: xc-asset-config assets-erc20 pallet-assets extensions Polkadot parachains Astar and Moonbeam adopted two very different approaches of how end users interact with EVM Contracts. We propose that AssetHub for Polkadot adopt the Astar solution, mirroring it as closely as possible.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Model AssetHub Assets inside EVM Smart Contracts based on Astar","id":"184","title":"Model AssetHub Assets inside EVM Smart Contracts based on Astar"},"185":{"body":"A substantial motivation in this proposal is to increase demand for DOT via two key chains: AssetHub - from defi/NFT users, Polkadot Rollup users and AssetHub Smart Contract Developers Blobs - for Polkadot Rollups","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » New DOT Revenue Sources","id":"185","title":"New DOT Revenue Sources"},"186":{"body":"Enabling EVM Contracts on AssetHub will support DOT revenue from: defi/NFT users who use AssetHub directly rollup operators who utilize Blobs chain rollup users who buy DOT to utilize Polkadot Rollups","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » New Revenue from AssetHub EVM Contracts","id":"186","title":"New Revenue from AssetHub EVM Contracts"},"187":{"body":"Enabling ink! contracts will pave the way to a new class of AssetHub Smart Contract Developers. Given PolkaVM's proven reduced compile time and RISC architecture enabling register snapshots, it is natural to utilize these new technical capabilities on a flagship system chain. To the extent these capabilities are attractive to smart contract developers, this has the potential for bringing in new DOT revenue from a system chain.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » New Revenue for ink!/Coreplay Contracts","id":"187","title":"New Revenue for ink!/Coreplay Contracts"},"188":{"body":"Supporting EVM Contracts in AssetHub is seen by some as undercutting Polkadot's 1.0 parachain architecture, both special purpose appchains and smart contract developer platform parachains. We believe the lack of growth of parachains in the last 12-18 months, and the high potential of CorePlay motivates new options be pursued in system chains. Maintaining EVM Contracts on AssetHub may be seen as difficult and may require Substrate engineers to maintain EVM Pallets and manage the xcContracts. We believe this cost will be relatively small based on the proven deployment of Astar and Moonbeam. The cost will be justified compared to the potential upside of new DOT revenue from defi/NFT applications on AssetHub and the potential for utilizing Polkadot DA for Polkadot rollups.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Drawbacks and Tradeoffs","id":"188","title":"Drawbacks and Tradeoffs"},"189":{"body":"Testing the mapping between assetIDs and EVM Contracts thoroughly will be critical. Having a complete working OP Stack chain using AssetHub for Kusama (1000) and Blobs on Kusama (3338) would be highly desirable, but is unlikely to be required.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Testing, Security, and Privacy","id":"189","title":"Testing, Security, and Privacy"},"19":{"body":"The proposed change aims to enhance the user experience for artists, traders and utilizers of Kusama and Polkadot asset hub. Making Polkadot and Kusama more accessible and user-friendly.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Ergonomics","id":"19","title":"Ergonomics"},"190":{"body":"","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Performance, Ergonomics, and Compatibility","id":"190","title":"Performance, Ergonomics, and Compatibility"},"191":{"body":"The weight limit of 50% is expected to be adequate to limit excess smart contract usage at this time. Storage bloat is expected to kept to a minimum with the nominal 0.01 Existential Deposit.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Performance","id":"191","title":"Performance"},"192":{"body":"Note that the existential deposit is not 0 DOT but being lowered from 0.1 DOT to 0.01 DOT, which may pose problems for some developers. Many developers routinely deploy their EVM contracts on many different EVM Chains in parallel. This non-zero ED may pose problems for some developers The 0.01 DOT (worth $0.075 USD) is unlikely to pose significant issue.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Ergonomics","id":"192","title":"Ergonomics"},"193":{"body":"It is believed that EVM pallet (as deployed on Moonbeam + Astar) is sufficiently compatible with Ethereum, and that the ED of 0.01 DOT pose negligible issues. The messaging architecture for rollups are not compatible with Polkadot XCM. It is not clear if leading rollup platforms (OP Stack, Arbitrum Orbit, Polygon zkEVM) could be made compatible with XCM.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Compatibility","id":"193","title":"Compatibility"},"194":{"body":"It is highly desirable to know the throughput of Polkadot DA with popular rollup architectures OP Stack and Arbitrum Orbit. This would enable CEXs and EVM L2 builders to choose Polkadot over Ethereum.","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Unresolved Questions","id":"194","title":"Unresolved Questions"},"195":{"body":"If accepted, this RFC could pave the way for CorePlay on Asset Hub for Polkadot/Kusama, a major component of Polkadot 2.0's smart contract future. The importance of precompiles should","breadcrumbs":"RFC-0066: Add EVM+ink! Contracts Pallets to Asset Hub for Polkadot » Future Directions and Related Material","id":"195","title":"Future Directions and Related Material"},"196":{"body":"(source) Table of Contents RFC-1: Agile Coretime Summary Motivation Present System Problems Requirements Stakeholders Explanation Overview Detail Specific functions of the Coretime-chain Notes on the Instantaneous Coretime Market Notes on Economics Notes on Types Rollout Performance, Ergonomics and Compatibility Testing, Security and Privacy Future Directions and Related Material Drawbacks, Alternatives and Unknowns Prior Art and References Start Date 30 June 2023 Description Agile periodic-sale-based model for assigning Coretime on the Polkadot Ubiquitous Computer. Authors Gavin Wood","breadcrumbs":"RFC-1: Agile Coretime » RFC-1: Agile Coretime","id":"196","title":"RFC-1: Agile Coretime"},"197":{"body":"This proposes a periodic, sale-based method for assigning Polkadot Coretime, the analogue of \"block space\" within the Polkadot Network. The method takes into account the need for long-term capital expenditure planning for teams building on Polkadot, yet also provides a means to allow Polkadot to capture long-term value in the resource which it sells. It supports the possibility of building rich and dynamic secondary markets to optimize resource allocation and largely avoids the need for parameterization.","breadcrumbs":"RFC-1: Agile Coretime » Summary","id":"197","title":"Summary"},"198":{"body":"","breadcrumbs":"RFC-1: Agile Coretime » Motivation","id":"198","title":"Motivation"},"199":{"body":"The Polkadot Ubiquitous Computer , or just Polkadot UC , represents the public service provided by the Polkadot Network. It is a trust-free, WebAssembly-based, multicore, internet-native omnipresent virtual machine which is highly resilient to interference and corruption. The present system of allocating the limited resources of the Polkadot Ubiquitous Computer is through a process known as parachain slot auctions . This is a parachain-centric paradigm whereby a single core is long-term allocated to a single parachain which itself implies a Substrate/Cumulus-based chain secured and connected via the Relay-chain. Slot auctions are on-chain candle auctions which proceed for several days and result in the core being assigned to the parachain for six months at a time up to 24 months in advance. Practically speaking, we only see two year periods being bid upon and leased. Funds behind the bids made in the slot auctions are merely locked, they are not consumed or paid and become unlocked and returned to the bidder on expiry of the lease period. A means of sharing the deposit trustlessly known as a crowdloan is available allowing token holders to contribute to the overall deposit of a chain without any counterparty risk.","breadcrumbs":"RFC-1: Agile Coretime » Present System","id":"199","title":"Present System"},"2":{"body":"This RFC proposes changing the current deposit requirements on the Polkadot and Kusama Asset Hub for creating NFT collection, minting an individual NFT, and lowering it's coresponding metadata and attribute deposit. The objective is to lower the barrier to entry for NFT creators, fostering a more inclusive and vibrant ecosystem while maintaining network integrity and preventing spam.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Summary","id":"2","title":"Summary"},"20":{"body":"The change does not impact compatibility as redeposit function is already implemented.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Compatibility","id":"20","title":"Compatibility"},"200":{"body":"The present system is based on a model of one-core-per-parachain. This is a legacy interpretation of the Polkadot platform and is not a reflection of its present capabilities. By restricting ownership and usage to this model, more dynamic and resource-efficient means of utilizing the Polkadot Ubiquitous Computer are lost. More specifically, it is impossible to lease out cores at anything less than six months, and apparently unrealistic to do so at anything less than two years. This removes the ability to dynamically manage the underlying resource, and generally experimentation, iteration and innovation suffer. It bakes into the platform an assumption of permanence for anything deployed into it and restricts the market's ability to find a more optimal allocation of the finite resource. There is no ability to determine capital requirements for hosting a parachain beyond two years from the point of its initial deployment onto Polkadot. While it would be unreasonable to have perfect and indefinite cost predictions for any real-world platform, not having any clarity whatsoever beyond \"market rates\" two years hence can be a very off-putting prospect for teams to buy into. However, quite possibly the most substantial problem is both a perceived and often real high barrier to entry of the Polkadot ecosystem. By forcing innovators to either raise seven-figure sums through investors or appeal to the wider token-holding community, Polkadot makes it difficult for a small band of innovators to deploy their technology into Polkadot. While not being actually permissioned, it is also far from the barrierless, permissionless ideal which an innovation platform such as Polkadot should be striving for.","breadcrumbs":"RFC-1: Agile Coretime » Problems","id":"200","title":"Problems"},"201":{"body":"The solution SHOULD provide an acceptable value-capture mechanism for the Polkadot network. The solution SHOULD allow parachains and other projects deployed on to the Polkadot UC to make long-term capital expenditure predictions for the cost of ongoing deployment. The solution SHOULD minimize the barriers to entry in the ecosystem. The solution SHOULD work well when the Polkadot UC has up to 1,000 cores. The solution SHOULD work when the number of cores which the Polkadot UC can support changes over time. The solution SHOULD facilitate the optimal allocation of work to cores of the Polkadot UC, including by facilitating the trade of regular core assignment at various intervals and for various spans. The solution SHOULD avoid creating additional dependencies on functionality which the Relay-chain need not strictly provide for the delivery of the Polkadot UC. Furthermore, the design SHOULD be implementable and deployable in a timely fashion; three months from the acceptance of this RFC should not be unreasonable.","breadcrumbs":"RFC-1: Agile Coretime » Requirements","id":"201","title":"Requirements"},"202":{"body":"Primary stakeholder sets are: Protocol researchers and developers, largely represented by the Polkadot Fellowship and Parity Technologies' Engineering division. Polkadot Parachain teams both present and future, and their users. Polkadot DOT token holders. Socialization: The essensials of this proposal were presented at Polkadot Decoded 2023 Copenhagen on the Main Stage. A small amount of socialization at the Parachain Summit preceeded it and some substantial discussion followed it. Parity Ecosystem team is currently soliciting views from ecosystem teams who would be key stakeholders.","breadcrumbs":"RFC-1: Agile Coretime » Stakeholders","id":"202","title":"Stakeholders"},"203":{"body":"","breadcrumbs":"RFC-1: Agile Coretime » Explanation","id":"203","title":"Explanation"},"204":{"body":"Upon implementation of this proposal, the parachain-centric slot auctions and associated crowdloans cease. Instead, Coretime on the Polkadot UC is sold by the Polkadot System in two separate formats: Bulk Coretime and Instantaneous Coretime . When a Polkadot Core is utilized, we say it is dedicated to a Task rather than a \"parachain\". The Task to which a Core is dedicated may change at every Relay-chain block and while one predominant type of Task is to secure a Cumulus-based blockchain (i.e. a parachain), other types of Tasks are envisioned. Bulk Coretime is sold periodically on a specialised system chain known as the Coretime-chain and allocated in advance of its usage, whereas Instantaneous Coretime is sold on the Relay-chain immediately prior to usage on a block-by-block basis. This proposal does not fix what should be done with revenue from sales of Coretime and leaves it for a further RFC process. Owners of Bulk Coretime are tracked on the Coretime-chain and the ownership status and properties of the owned Coretime are exposed over XCM as a non-fungible asset. At the request of the owner, the Coretime-chain allows a single Bulk Coretime asset, known as a Region , to be used in various ways including transferal to another owner, allocated to a particular task (e.g. a parachain) or placed in the Instantaneous Coretime Pool. Regions can also be split out, either into non-overlapping sub-spans or exactly-overlapping spans with less regularity. The Coretime-Chain periodically instructs the Relay-chain to assign its cores to alternative tasks as and when Core allocations change due to new Regions coming into effect. Renewal and Migration There is a renewal system which allows a Bulk Coretime assignment of a single core to be renewed unchanged with a known price increase from month to month. Renewals are processed in a period prior to regular purchases, effectively giving them precedence over a fixed number of cores available. Renewals are only enabled when a core's assignment does not include an Instantaneous Coretime allocation and has not been split into shorter segments. Thus, renewals are designed to ensure only that committed parachains get some guarantees about price for predicting future costs. This price-capped renewal system only allows cores to be reused for their same tasks from month to month. In any other context, Bulk Coretime would need to be purchased regularly. As a migration mechanism, pre-existing leases (from the legacy lease/slots/crowdloan framework) are initialized into the Coretime-chain and cores assigned to them prior to Bulk Coretime sales. In the sale where the lease expires, the system offers a renewal, as above, to allow a priority sale of Bulk Coretime and ensure that the Parachain suffers no downtime when transitioning from the legacy framework. Instantaneous Coretime Processing of Instantaneous Coretime happens in part on the Polkadot Relay-chain. Credit is purchased on the Coretime-chain for regular DOT tokens, and this results in a DOT-denominated Instantaneous Coretime Credit account on the Relay-chain being credited for the same amount. Though the Instantaneous Coretime Credit account records a balance for an account identifier (very likely controlled by a collator), it is non-transferable and non-refundable . It can only be consumed in order to purchase some Instantaneous Coretime with immediate availability. The Relay-chain reports this usage back to the Coretime-chain in order to allow it to reward the providers of the underlying Coretime, either the Polkadot System or owners of Bulk Coretime who contributed to the Instantaneous Coretime Pool. Specifically the Relay-chain is expected to be responsible for: holding non-transferable, non-refundable DOT-denominated Instantaneous Coretime Credit balance information. setting and adjusting the price of Instantaneous Coretime based on usage. allowing collators to consume their Instantaneous Coretime Credit at the current pricing in exchange for the ability to schedule one PoV for near-immediate usage. ensuring the Coretime-Chain has timely accounting information on Instantaneous Coretime Sales revenue. Coretime-chain The Coretime-chain is a new system parachain. It has the responsibility of providing the Relay-chain via UMP with information of: The number of cores which should be made available. Which tasks should be running on which cores and in what ratios. Accounting information for Instantaneous Coretime Credit. It also expects information from the Relay-chain via DMP: The number of cores available to be scheduled. Account information on Instantaneous Coretime Sales. The specific interface is properly described in RFC-5.","breadcrumbs":"RFC-1: Agile Coretime » Overview","id":"204","title":"Overview"},"205":{"body":"Parameters This proposal includes a number of parameters which need not necessarily be fixed. Their usage is explained below, but their values are suggested or specified in the later section Parameter Values . Reservations and Leases The Coretime-chain includes some governance-set reservations of Coretime; these cover every System-chain. Additionally, governance is expected to initialize details of the pre-existing leased chains. Regions A Region is an assignable period of Coretime with a known regularity. All Regions are associated with a unique Core Index , to identify which core the assignment of which ownership of the Region controls. All Regions are also associated with a Core Mask , an 80-bit bitmap, to denote the regularity at which it may be scheduled on the core. If all bits are set in the Core Mask value, it is said to be Complete . 80 is selected since this results in the size of the datatype used to identify any Region of Polkadot Coretime to be a very convenient 128-bit. Additionally, if TIMESLICE (the number of Relay-chain blocks in a Timeslice) is 80, then a single bit in the Core Mask bitmap represents exactly one Core for one Relay-chain block in one Timeslice. All Regions have a span. Region spans are quantized into periods of TIMESLICE blocks; BULK_PERIOD divides into TIMESLICE a whole number of times. The Timeslice type is a u32 which can be multiplied by TIMESLICE to give a BlockNumber value representing the same quantity in terms of Relay-chain blocks. Regions can be tasked to a TaskId (aka ParaId) or pooled into the Instantaneous Coretime Pool. This process can be Provisional or Final . If done only provisionally or not at all then they are fresh and have an Owner which is able to manipulate them further including reassignment. Once Final , then all ownership information is discarded and they cannot be manipulated further. Renewal is not possible when only provisionally tasked/pooled. Bulk Sales A sale of Bulk Coretime occurs on the Coretime-chain every BULK_PERIOD blocks. In every sale, a BULK_LIMIT of individual Regions are offered for sale. Each Region offered for sale has a different Core Index, ensuring that they each represent an independently allocatable resource on the Polkadot UC. The Regions offered for sale have the same span: they last exactly BULK_PERIOD blocks, and begin immediately following the span of the previous Sale's Regions. The Regions offered for sale also have the complete, non-interlaced, Core Mask. The Sale Period ends immediately as soon as span of the Coretime Regions that are being sold begins. At this point, the next Sale Price is set according to the previous Sale Price together with the number of Regions sold compared to the desired and maximum amount of Regions to be sold. See Price Setting for additional detail on this point. Following the end of the previous Sale Period, there is an Interlude Period lasting INTERLUDE_PERIOD of blocks. After this period is elapsed, regular purchasing begins with the Purchasing Period . This is designed to give at least two weeks worth of time for the purchased regions to be partitioned, interlaced, traded and allocated. The Interlude The Interlude period is a period prior to Regular Purchasing where renewals are allowed to happen. This has the effect of ensuring existing long-term tasks/parachains have a chance to secure their Bulk Coretime for a well-known price prior to general sales. Regular Purchasing Any account may purchase Regions of Bulk Coretime if they have the appropriate funds in place during the Purchasing Period, which is from INTERLUDE_PERIOD blocks after the end of the previous sale until the beginning of the Region of the Bulk Coretime which is for sale as long as there are Regions of Bulk Coretime left for sale (i.e. no more than BULK_LIMIT have already been sold in the Bulk Coretime Sale). The Purchasing Period is thus roughly BULK_PERIOD - INTERLUDE_PERIOD blocks in length. The Sale Price varies during an initial portion of the Purchasing Period called the Leadin Period and then stays stable for the remainder. This initial portion is LEADIN_PERIOD blocks in duration. During the Leadin Period the price decreases towards the Sale Price, which it lands at by the end of the Leadin Period. The actual curve by which the price starts and descends to the Sale Price is outside the scope of this RFC, though a basic suggestion is provided in the Price Setting Notes, below. Renewals At any time when there are remaining Regions of Bulk Coretime to be sold, including during the Interlude Period , then certain Bulk Coretime assignmnents may be Renewed . This is similar to a purchase in that funds must be paid and it consumes one of the Regions of Bulk Coretime which would otherwise be placed for purchase. However there are two key differences. Firstly, the price paid is the minimum of RENEWAL_PRICE_CAP more than what the purchase/renewal price was in the previous renewal and the current (or initial, if yet to begin) regular Sale Price. Secondly, the purchased Region comes preassigned with exactly the same workload as before. It cannot be traded, repartitioned, interlaced or exchanged. As such unlike regular purchasing the Region never has an owner. Renewal is only possible for either cores which have been assigned as a result of a previous renewal, which are migrating from legacy slot leases, or which fill their Bulk Coretime with an unsegmented, fully and finally assigned workload which does not include placement in the Instantaneous Coretime Pool. The renewed workload will be the same as this initial workload. Manipulation Regions may be manipulated in various ways by its owner: Transferred in ownership. Partitioned into quantized, non-overlapping segments of Bulk Coretime with the same ownership. Interlaced into multiple Regions over the same period whose eventual assignments take turns to be scheduled. Assigned to a single, specific task (identified by TaskId aka ParaId). This may be either provisional or final . Pooled into the Instantaneous Coretime Pool, in return for a pro-rata amount of the revenue from the Instantaneous Coretime Sales over its period. Enactment","breadcrumbs":"RFC-1: Agile Coretime » Detail","id":"205","title":"Detail"},"206":{"body":"Several functions of the Coretime-chain SHALL be exposed through dispatchables and/or a nonfungible trait implementation integrated into XCM: 1. transfer Regions may have their ownership transferred. A transfer(region: RegionId, new_owner: AccountId) dispatchable shall have the effect of altering the current owner of the Region identified by region from the signed origin to new_owner. An implementation of the nonfungible trait SHOULD include equivalent functionality. RegionId SHOULD be used for the AssetInstance value. 2. partition Regions may be split apart into two non-overlapping interior Regions of the same Core Mask which together concatenate to the original Region. A partition(region: RegionId, pivot: Timeslice) dispatchable SHALL have the effect of removing the Region identified by region and adding two new Regions of the same owner and Core Mask. One new Region will begin at the same point of the old Region but end at pivot timeslices into the Region, whereas the other will begin at this point and end at the end point of the original Region. Also: owner field of region must the equal to the Signed origin. pivot must equal neither the begin nor end fields of the region. 3. interlace Regions may be decomposed into two Regions of the same span whose eventual assignments take turns on the core by virtue of having complementary Core Masks. An interlace(region: RegionId, mask: CoreMask) dispatchable shall have the effect of removing the Region identified by region and creating two new Regions. The new Regions will each have the same span and owner of the original Region, but one Region will have a Core Mask equal to mask and the other will have Core Mask equal to the XOR of mask and the Core Mask of the original Region. Also: owner field of region must the equal to the Signed origin. mask must have some bits set AND must not equal the Core Mask of the old Region AND must only have bits set which are also set in the old Region's' Core Mask. 4. assign Regions may be assigned to a core. A assign(region: RegionId, target: TaskId, finality: Finality) dispatchable shall have the effect of placing an item in the workplan corresponding to the region's properties and assigned to the target task. If the region's end has already passed (taking into account any advance notice requirements) then this operation is a no-op. If the region's begining has already passed, then it is effectively altered to become the next schedulable timeslice. finality may have the value of either Final or Provisional. If Final, then the operation is free, the region record is removed entirely from storage and renewal may be possible: if the Region's span is the entire BULK_PERIOD, then the Coretime-chain records in storage that the allocation happened during this period in order to facilitate the possibility for a renewal. (Renewal only becomes possible when the full Core Mask of a core is finally assigned for the full BULK_PERIOD.) Also: owner field of region must the equal to the Signed origin. 5. pool Regions may be consumed in exchange for a pro rata portion of the Instantaneous Coretime Sales Revenue from its period and regularity. A pool(region: RegionId, beneficiary: AccountId, finality: Finality) dispatchable shall have the effect of placing an item in the workplan corresponding to the region's properties and assigned to the Instantaneous Coretime Pool. The details of the region will be recorded in order to allow for a pro rata share of the Instantaneous Coretime Sales Revenue at the time of the Region relative to any other providers in the Pool. If the region's end has already passed (taking into account any advance notice requirements) then this operation is a no-op. If the region's begining has already passed, then it is effectively altered to become the next schedulable timeslice. finality may have the value of either Final or Provisional. If Final, then the operation is free and the region record is removed entirely from storage. Also: owner field of region must the equal to the Signed origin. 6. Purchases A dispatchable purchase(price_limit: Balance) shall be provided. Any account may call purchase to purchase Bulk Coretime at the maximum price of price_limit. This may be called successfully only: during the regular Purchasing Period; when the caller is a Signed origin and their account balance is reducible by the current sale price; when the current sale price is no greater than price_limit; and when the number of cores already sold is less than BULK_LIMIT. If successful, the caller's account balance is reduced by the current sale price and a new Region item for the following Bulk Coretime span is issued with the owner equal to the caller's account. 7. Renewals A dispatchable renew(core: CoreIndex) shall be provided. Any account may call renew to purchase Bulk Coretime and renew an active allocation for the given core. This may be called during the Interlude Period as well as the regular Purchasing Period and has the same effect as purchase followed by assign, except that: The price of the sale is the Renewal Price (see next). The Region is allocated exactly the given core is currently allocated for the present Region. Renewal is only valid where a Region's span is assigned to Tasks (not placed in the Instantaneous Coretime Pool) for the entire unsplit BULK_PERIOD over all of the Core Mask and with Finality. There are thus three possibilities of a renewal being allowed: Purchased unsplit Coretime with final assignment to tasks over the full Core Mask. Renewed Coretime. A legacy lease which is ending. Renewal Price The Renewal Price is the minimum of the current regular Sale Price (or the initial Sale Price if in the Interlude Period) and: If the workload being renewed came to be through the Purchase and Assignment of Bulk Coretime, then the price paid during that Purchase operation. If the workload being renewed was previously renewed, then the price paid during this previous Renewal operation plus RENEWAL_PRICE_CAP. If the workload being renewed is a migation from a legacy slot auction lease, then the nominal price for a Regular Purchase (outside of the Lead-in Period) of the Sale during which the legacy lease expires. 8. Instantaneous Coretime Credits A dispatchable purchase_credit(amount: Balance, beneficiary: RelayChainAccountId) shall be provided. Any account with at least amount spendable funds may call this. This increases the Instantaneous Coretime Credit balance on the Relay-chain of the beneficiary by the given amount. This Credit is consumable on the Relay-chain as part of the Task scheduling system and its specifics are out of the scope of this proposal. When consumed, revenue is recorded and provided to the Coretime-chain for proper distribution. The API for doing this is specified in RFC-5.","breadcrumbs":"RFC-1: Agile Coretime » Specific functions of the Coretime-chain","id":"206","title":"Specific functions of the Coretime-chain"},"207":{"body":"For an efficient market to form around the provision of Bulk-purchased Cores into the pool of cores available for Instantaneous Coretime purchase, it is crucial to ensure that price changes for the purchase of Instantaneous Coretime are reflected well in the revenues of private Coretime providers during the same period. In order to ensure this, then it is crucial that Instantaneous Coretime, once purchased, cannot be held indefinitely prior to eventual use since, if this were the case, a nefarious collator could purchase Coretime when cheap and utilize it some time later when expensive and deprive private Coretime providers of their revenue. It must therefore be assumed that Instantaneous Coretime, once purchased, has a definite and short \"shelf-life\", after which it becomes unusable. This incentivizes collators to avoid purchasing Coretime unless they expect to utilize it imminently and thus helps create an efficient market-feedback mechanism whereby a higher price will actually result in material revenues for private Coretime providers who contribute to the pool of Cores available to service Instantaneous Coretime purchases.","breadcrumbs":"RFC-1: Agile Coretime » Notes on the Instantaneous Coretime Market","id":"207","title":"Notes on the Instantaneous Coretime Market"},"208":{"body":"The specific pricing mechanisms are out of scope for the present proposal. Proposals on economics should be properly described and discussed in another RFC. However, for the sake of completeness, I provide some basic illustration of how price setting could potentially work. Bulk Price Progression The present proposal assumes the existence of a price-setting mechanism which takes into account several parameters: OLD_PRICE: The price of the previous sale. BULK_TARGET: the target number of cores to be purchased as Bulk Coretime Regions or renewed during the previous sale. BULK_LIMIT: the maximum number of cores which could have been purchased/renewed during the previous sale. CORES_SOLD: the actual number of cores purchased/renewed in the previous sale. SELLOUT_PRICE: the price at which the most recent Bulk Coretime was purchased ( not renewed) prior to selling more cores than BULK_TARGET (or immediately after, if none were purchased before). This may not have a value if no Bulk Coretime was purchased. In general we would expect the price to increase the closer CORES_SOLD gets to BULK_LIMIT and to decrease the closer it gets to zero. If it is exactly equal to BULK_TARGET, then we would expect the price to remain the same. In the edge case that no cores were purchased yet more cores were sold (through renewals) than the target, then we would also avoid altering the price. A simple example of this would be the formula: IF SELLOUT_PRICE == NULL AND CORES_SOLD > BULK_TARGET THEN RETURN OLD_PRICE\nEND IF\nEFFECTIVE_PRICE := IF CORES_SOLD > BULK_TARGET THEN SELLOUT_PRICE\nELSE OLD_PRICE\nEND IF\nNEW_PRICE := IF CORES_SOLD < BULK_TARGET THEN EFFECTIVE_PRICE * MAX(CORES_SOLD, 1) / BULK_TARGET\nELSE EFFECTIVE_PRICE + EFFECTIVE_PRICE * (CORES_SOLD - BULK_TARGET) / (BULK_LIMIT - BULK_TARGET)\nEND IF This exists only as a trivial example to demonstrate a basic solution exists, and should not be intended as a concrete proposal. Intra-Leadin Price-decrease During the Leadin Period of a sale, the effective price starts higher than the Sale Price and falls to end at the Sale Price at the end of the Leadin Period. The price can thus be defined as a simple factor above one on which the Sale Price is multiplied. A function which returns this factor would accept a factor between zero and one specifying the portion of the Leadin Period which has passed. Thus we assume SALE_PRICE, then we can define PRICE as: PRICE := SALE_PRICE * FACTOR((NOW - LEADIN_BEGIN) / LEADIN_PERIOD) We can define a very simple progression where the price decreases monotonically from double the Sale Price at the beginning of the Leadin Period. FACTOR(T) := 2 - T Parameter Values Parameters are either suggested or specified . If suggested , it is non-binding and the proposal should not be judged on the value since other RFCs and/or the governance mechanism of Polkadot is expected to specify/maintain it. If specified , then the proposal should be judged on the merit of the value as-is. Name Value BULK_PERIOD 28 * DAYS specified INTERLUDE_PERIOD 7 * DAYS specified LEADIN_PERIOD 7 * DAYS specified TIMESLICE 8 * MINUTES specified BULK_TARGET 30 suggested BULK_LIMIT 45 suggested RENEWAL_PRICE_CAP Perbill::from_percent(2) suggested Instantaneous Price Progression This proposal assumes the existence of a Relay-chain-based price-setting mechanism for the Instantaneous Coretime Market which alters from block to block, taking into account several parameters: the last price, the size of the Instantaneous Coretime Pool (in terms of cores per Relay-chain block) and the amount of Instantaneous Coretime waiting for processing (in terms of Core-blocks queued). The ideal situation is to have the size of the Instantaneous Coretime Pool be equal to some factor of the Instantaneous Coretime waiting. This allows all Instantaneous Coretime sales to be processed with some limited latency while giving limited flexibility over ordering to the Relay-chain apparatus which is needed for efficient operation. If we set a factor of three, and thus aim to retain a queue of Instantaneous Coretime Sales which can be processed within three Relay-chain blocks, then we would increase the price if the queue goes above three times the amount of cores available, and decrease if it goes under. Let us assume the values OLD_PRICE, FACTOR, QUEUE_SIZE and POOL_SIZE. A simple definition of the NEW_PRICE would be thus: NEW_PRICE := IF QUEUE_SIZE < POOL_SIZE * FACTOR THEN OLD_PRICE * 0.95\nELSE OLD_PRICE / 0.95\nEND IF This exists only as a trivial example to demonstrate a basic solution exists, and should not be intended as a concrete proposal.","breadcrumbs":"RFC-1: Agile Coretime » Notes on Economics","id":"208","title":"Notes on Economics"},"209":{"body":"This exists only as a short illustration of a potential technical implementation and should not be treated as anything more. Regions This data schema achieves a number of goals: Coretime can be individually traded at a level of a single usage of a single core. Coretime Regions, of arbitrary span and up to 1/80th interlacing can be exposed as NFTs and exchanged. Any Coretime Region can be contributed to the Instantaneous Coretime Pool. Unlimited number of individual Coretime contributors to the Instantaneous Coretime Pool. (Effectively limited only in number of cores and interlacing level; with current values this would allow 80,000 individual payees per timeslice). All keys are self-describing. Workload to communicate core (re-)assignments is well-bounded and low in weight. All mandatory bookkeeping workload is well-bounded in weight. type Timeslice = u32; // 80 block amounts.\ntype CoreIndex = u16;\ntype CoreMask = [u8; 10]; // 80-bit bitmap. // 128-bit (16 bytes)\nstruct RegionId { begin: Timeslice, core: CoreIndex, mask: CoreMask,\n}\n// 296-bit (37 bytes)\nstruct RegionRecord { end: Timeslice, owner: AccountId,\n} map Regions = Map; // 40-bit (5 bytes). Could be 32-bit with a more specialised type.\nenum CoreTask { Off, Assigned { target: TaskId }, InstaPool,\n}\n// 120-bit (15 bytes). Could be 14 bytes with a specialised 32-bit `CoreTask`.\nstruct ScheduleItem { mask: CoreMask, // 80 bit task: CoreTask, // 40 bit\n} /// The work we plan on having each core do at a particular time in the future.\ntype Workplan = Map<(Timeslice, CoreIndex), BoundedVec>;\n/// The current workload of each core. This gets updated with workplan as timeslices pass.\ntype Workload = Map>; enum Contributor { System, Private(AccountId),\n} struct ContributionRecord { begin: Timeslice, end: Timeslice, core: CoreIndex, mask: CoreMask, payee: Contributor,\n}\ntype InstaPoolContribution = Map; type SignedTotalMaskBits = u32;\ntype InstaPoolIo = Map; type PoolSize = Value; /// Counter for the total CoreMask which could be dedicated to a pool. `u32` so we don't ever get\n/// an overflow.\ntype TotalMaskBits = u32;\nstruct InstaPoolHistoryRecord { total_contributions: TotalMaskBits, maybe_payout: Option,\n}\n/// Total InstaPool rewards for each Timeslice and the number of core Mask which contributed.\ntype InstaPoolHistory = Map; CoreMask tracks unique \"parts\" of a single core. It is used with interlacing in order to give a unique identifier to each component of any possible interlacing configuration of a core, allowing for simple self-describing keys for all core ownership and allocation information. It also allows for each core's workload to be tracked and updated progressively, keeping ongoing compute costs well-bounded and low. Regions are issued into the Regions map and can be transferred, partitioned and interlaced as the owner desires. Regions can only be tasked if they begin after the current scheduling deadline (if they have missed this, then the region can be auto-trimmed until it is). Once tasked, they are removed from there and a record is placed in Workplan. In addition, if they are contributed to the Instantaneous Coretime Pool, then an entry is placing in InstaPoolContribution and InstaPoolIo. Each timeslice, InstaPoolIo is used to update the current value of PoolSize. A new entry in InstaPoolHistory is inserted, with the total_contributions field of InstaPoolHistoryRecord being informed by the PoolSize value. Each core's has its Workload mutated according to its Workplan for the upcoming timeslice. When Instantaneous Coretime Market Revenues are reported for a particular timeslice from the Relay-chain, this information gets placed in the maybe_payout field of the relevant record of InstaPoolHistory. Payments can be requested made for any records in InstaPoolContribution whose begin is the key for a value in InstaPoolHistory whose maybe_payout is Some. In this case, the total_contributions is reduced by the ContributionRecord's mask and a pro rata amount paid. The ContributionRecord is mutated by incrementing begin, or removed if begin becomes equal to end. Example: // Simple example with a `u16` `CoreMask` and bulk sold in 100 timeslices.\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// First split @ 50\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_1111_1111u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Share half of first 50 blocks\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Sell half of them to Bob\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Bob };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Bob splits first 10 and assigns them to himself.\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1111_1111u16 } => { end: 110u32, owner: Bob };\n{ core: 0u16, begin: 110, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Bob };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Bob shares first 10 3 ways and sells smaller shares to Charlie and Dave\nRegions:\n{ core: 0u16, begin: 100, mask: 0b1111_1111_0000_0000u16 } => { end: 150u32, owner: Alice };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_1100_0000u16 } => { end: 110u32, owner: Charlie };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_0011_0000u16 } => { end: 110u32, owner: Dave };\n{ core: 0u16, begin: 100, mask: 0b0000_0000_0000_1111u16 } => { end: 110u32, owner: Bob };\n{ core: 0u16, begin: 110, mask: 0b0000_0000_1111_1111u16 } => { end: 150u32, owner: Bob };\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\n// Bob assigns to his para B, Charlie and Dave assign to their paras C and D; Alice assigns first 50 to A\nRegions:\n{ core: 0u16, begin: 150, mask: 0b1111_1111_1111_1111u16 } => { end: 200u32, owner: Alice };\nWorkplan:\n(100, 0) => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1100_0000u16, task: Assigned(C) }, { mask: 0b0000_0000_0011_0000u16, task: Assigned(D) }, { mask: 0b0000_0000_0000_1111u16, task: Assigned(B) },\n]\n(110, 0) => vec![{ mask: 0b0000_0000_1111_1111u16, task: Assigned(B) }]\n// Alice assigns her remaining 50 timeslices to the InstaPool paying herself:\nRegions: (empty)\nWorkplan:\n(100, 0) => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1100_0000u16, task: Assigned(C) }, { mask: 0b0000_0000_0011_0000u16, task: Assigned(D) }, { mask: 0b0000_0000_0000_1111u16, task: Assigned(B) },\n]\n(110, 0) => vec![{ mask: 0b0000_0000_1111_1111u16, task: Assigned(B) }]\n(150, 0) => vec![{ mask: 0b1111_1111_1111_1111u16, task: InstaPool }]\nInstaPoolContribution:\n{ begin: 150, end: 200, core: 0, mask: 0b1111_1111_1111_1111u16, payee: Alice }\nInstaPoolIo:\n150 => 16\n200 => -16\n// Actual notifications to relay chain.\n// Assumes:\n// - Timeslice is 10 blocks.\n// - Timeslice 0 begins at block #1000.\n// - Relay needs 10 blocks notice of change.\n//\nWorkload: 0 => vec![]\nPoolSize: 0 // Block 990:\nRelay <= assign_core(core: 0u16, begin: 1000, assignment: vec![(A, 8), (C, 2), (D, 2), (B, 4)])\nWorkload: 0 => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1100_0000u16, task: Assigned(C) }, { mask: 0b0000_0000_0011_0000u16, task: Assigned(D) }, { mask: 0b0000_0000_0000_1111u16, task: Assigned(B) },\n]\nPoolSize: 0 // Block 1090:\nRelay <= assign_core(core: 0u16, begin: 1100, assignment: vec![(A, 8), (B, 8)])\nWorkload: 0 => vec![ { mask: 0b1111_1111_0000_0000u16, task: Assigned(A) }, { mask: 0b0000_0000_1111_1111u16, task: Assigned(B) },\n]\nPoolSize: 0 // Block 1490:\nRelay <= assign_core(core: 0u16, begin: 1500, assignment: vec![(Pool, 16)])\nWorkload: 0 => vec![ { mask: 0b1111_1111_1111_1111u16, task: InstaPool },\n]\nPoolSize: 16\nInstaPoolIo:\n200 => -16\nInstaPoolHistory:\n150 => { total_contributions: 16, maybe_payout: None } // Sometime after block 1500:\nInstaPoolHistory:\n150 => { total_contributions: 16, maybe_payout: Some(P) } // Sometime after block 1990:\nInstaPoolIo: (empty)\nPoolSize: 0\nInstaPoolHistory:\n150 => { total_contributions: 16, maybe_payout: Some(P0) }\n151 => { total_contributions: 16, maybe_payout: Some(P1) }\n152 => { total_contributions: 16, maybe_payout: Some(P2) }\n...\n199 => { total_contributions: 16, maybe_payout: Some(P49) } // Sometime later still Alice calls for a payout\nInstaPoolContribution: (empty)\nInstaPoolHistory: (empty)\n// Alice gets rewarded P0 + P1 + ... P49.","breadcrumbs":"RFC-1: Agile Coretime » Notes on Types","id":"209","title":"Notes on Types"},"21":{"body":"There remain unresolved questions regarding the implementation of a function-based pricing model for deposits and the feasibility of linking deposits to a USD(x) value. These aspects require further exploration and discussion to ascertain their viability and potential impact on the ecosystem.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Unresolved Questions","id":"21","title":"Unresolved Questions"},"210":{"body":"Rollout of this proposal comes in several phases: Finalise the specifics of implementation; this may be done through a design document or through a well-documented prototype implementation. Implement the design, including all associated aspects such as unit tests, benchmarks and any support software needed. If any new parachain is required, launch of this. Formal audit of the implementation and any manual testing. Announcement to the various stakeholders of the imminent changes. Software integration and release. Governance upgrade proposal(s). Monitoring of the upgrade process.","breadcrumbs":"RFC-1: Agile Coretime » Rollout","id":"210","title":"Rollout"},"211":{"body":"No specific considerations. Parachains already deployed into the Polkadot UC must have a clear plan of action to migrate to an agile Coretime market. While this proposal does not introduce documentable features per se, adequate documentation must be provided to potential purchasers of Polkadot Coretime. This SHOULD include any alterations to the Polkadot-SDK software collection.","breadcrumbs":"RFC-1: Agile Coretime » Performance, Ergonomics and Compatibility","id":"211","title":"Performance, Ergonomics and Compatibility"},"212":{"body":"Regular testing through unit tests, integration tests, manual testnet tests, zombie-net tests and fuzzing SHOULD be conducted. A regular security review SHOULD be conducted prior to deployment through a review by the Web3 Foundation economic research group. Any final implementation MUST pass a professional external security audit. The proposal introduces no new privacy concerns.","breadcrumbs":"RFC-1: Agile Coretime » Testing, Security and Privacy","id":"212","title":"Testing, Security and Privacy"},"213":{"body":"RFC-3 proposes a means of implementing the high-level allocations within the Relay-chain. RFC-5 proposes the API for interacting with Relay-chain. Additional work should specify the interface for the instantaneous market revenue so that the Coretime-chain can ensure Bulk Coretime placed in the instantaneous market is properly compensated.","breadcrumbs":"RFC-1: Agile Coretime » Future Directions and Related Material","id":"213","title":"Future Directions and Related Material"},"214":{"body":"Unknowns include the economic and resource parameterisations: The initial price of Bulk Coretime. The price-change algorithm between Bulk Coretime sales. The price increase per Bulk Coretime period for renewals. The price decrease graph in the Leadin period for Bulk Coretime sales. The initial price of Instantaneous Coretime. The price-change algorithm for Instantaneous Coretime sales. The percentage of cores to be sold as Bulk Coretime. The fate of revenue collected.","breadcrumbs":"RFC-1: Agile Coretime » Drawbacks, Alternatives and Unknowns","id":"214","title":"Drawbacks, Alternatives and Unknowns"},"215":{"body":"Robert Habermeier initially wrote on the subject of Polkadot blockspace-centric in the article Polkadot Blockspace over Blockchains . While not going into details, the article served as an early reframing piece for moving beyond one-slot-per-chain models and building out secondary market infrastructure for resource allocation.","breadcrumbs":"RFC-1: Agile Coretime » Prior Art and References","id":"215","title":"Prior Art and References"},"216":{"body":"(source) Table of Contents RFC-5: Coretime Interface Summary Motivation Requirements Stakeholders Explanation UMP Message Types DMP Message Types Realistic Limits of the Usage Performance, Ergonomics and Compatibility Testing, Security and Privacy Future Directions and Related Material Drawbacks, Alternatives and Unknowns Prior Art and References Start Date 06 July 2023 Description Interface for manipulating the usage of cores on the Polkadot Ubiquitous Computer. Authors Gavin Wood, Robert Habermeier","breadcrumbs":"RFC-5: Coretime Interface » RFC-5: Coretime Interface","id":"216","title":"RFC-5: Coretime Interface"},"217":{"body":"In the Agile Coretime model of the Polkadot Ubiquitous Computer, as proposed in RFC-1 and RFC-3, it is necessary for the allocating parachain (envisioned to be one or more pallets on a specialised Brokerage System Chain) to communicate the core assignments to the Relay-chain, which is responsible for ensuring those assignments are properly enacted. This is a proposal for the interface which will exist around the Relay-chain in order to communicate this information and instructions.","breadcrumbs":"RFC-5: Coretime Interface » Summary","id":"217","title":"Summary"},"218":{"body":"The background motivation for this interface is splitting out coretime allocation functions and secondary markets from the Relay-chain onto System parachains. A well-understood and general interface is necessary for ensuring the Relay-chain receives coretime allocation instructions from one or more System chains without introducing dependencies on the implementation details of either side.","breadcrumbs":"RFC-5: Coretime Interface » Motivation","id":"218","title":"Motivation"},"219":{"body":"The interface MUST allow the Relay-chain to be scheduled on a low-latency basis. Individual cores MUST be schedulable, both in full to a single task (a ParaId or the Instantaneous Coretime Pool) or to many unique tasks in differing ratios. Typical usage of the interface SHOULD NOT overload the VMP message system. The interface MUST allow for the allocating chain to be notified of all accounting information relevant for making accurate rewards for contributing to the Instantaneous Coretime Pool. The interface MUST allow for Instantaneous Coretime Market Credits to be communicated. The interface MUST allow for the allocating chain to instruct changes to the number of cores which it is able to allocate. The interface MUST allow for the allocating chain to be notified of changes to the number of cores which are able to be allocated by the allocating chain.","breadcrumbs":"RFC-5: Coretime Interface » Requirements","id":"219","title":"Requirements"},"22":{"body":"We recommend initially lowering the deposit to the suggested levels. Subsequently, based on the outcomes and feedback, we can continue discussions on more complex models such as function-based pricing or currency-linked deposits. If accepted, this RFC could pave the way for further discussions and proposals aimed at enhancing the inclusivity and accessibility of the Polkadot ecosystem.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Future Directions and Related Material","id":"22","title":"Future Directions and Related Material"},"220":{"body":"Primary stakeholder sets are: Developers of the Relay-chain core-management logic. Developers of the Brokerage System Chain and its pallets. Socialization: This content of this RFC was discussed in the Polkdot Fellows channel.","breadcrumbs":"RFC-5: Coretime Interface » Stakeholders","id":"220","title":"Stakeholders"},"221":{"body":"The interface has two sections: The messages which the Relay-chain is able to receive from the allocating parachain (the UMP message types ), and messages which the Relay-chain is able to send to the allocating parachain (the DMP message types ). These messages are expected to be able to be implemented in a well-known pallet and called with the XCM Transact instruction. Future work may include these messages being introduced into the XCM standard.","breadcrumbs":"RFC-5: Coretime Interface » Explanation","id":"221","title":"Explanation"},"222":{"body":"request_core_count Prototype: fn request_core_count( count: u16,\n) Requests the Relay-chain to alter the number of schedulable cores to count. Under normal operation, the Relay-chain SHOULD send a notify_core_count(count) message back. request_revenue_info_at Prototype: fn request_revenue_at( when: BlockNumber,\n) Requests that the Relay-chain send a notify_revenue message back at or soon after Relay-chain block number when whose until parameter is equal to when. The period in to the past which when is allowed to be may be limited; if so the limit should be understood on a channel outside of this proposal. In the case that the request cannot be serviced because when is too old a block then a notify_revenue message must still be returned, but its revenue field may be None. credit_account Prototype: fn credit_account( who: AccountId, amount: Balance,\n) Instructs the Relay-chain to add the amount of DOT to the Instantaneous Coretime Market Credit account of who. It is expected that Instantaneous Coretime Market Credit on the Relay-chain is NOT transferrable and only redeemable when used to assign cores in the Instantaneous Coretime Pool. assign_core Prototype: type PartsOf57600 = u16;\nenum CoreAssignment { InstantaneousPool, Task(ParaId),\n}\nfn assign_core( core: CoreIndex, begin: BlockNumber, assignment: Vec<(CoreAssignment, PartsOf57600)>, end_hint: Option,\n) Requirements: assert!(core < core_count);\nassert!(targets.iter().map(|x| x.0).is_sorted());\nassert_eq!(targets.iter().map(|x| x.0).unique().count(), targets.len());\nassert_eq!(targets.iter().map(|x| x.1).sum(), 57600); Where: core_count is assumed to be the sole parameter in the last received notify_core_count message. Instructs the Relay-chain to ensure that the core indexed as core is utilised for a number of assignments in specific ratios given by assignment starting as soon after begin as possible. Core assignments take the form of a CoreAssignment value which can either task the core to a ParaId value or indicate that the core should be used in the Instantaneous Pool. Each assignment comes with a ratio value, represented as the numerator of the fraction with a denominator of 57,600. If end_hint is Some and the inner is greater than the current block number, then the Relay-chain should optimize in the expectation of receiving a new assign_core(core, ...) message at or prior to the block number of the inner value. Specific functionality should remain unchanged regardless of the end_hint value. On the choice of denominator: 57,600 is a very composite number which factors into: 2 ** 8, 3 ** 2, 5 ** 2. By using it as the denominator we allow for various useful fractions to be perfectly represented including thirds, quarters, fifths, tenths, 80ths, percent and 256ths.","breadcrumbs":"RFC-5: Coretime Interface » UMP Message Types","id":"222","title":"UMP Message Types"},"223":{"body":"notify_core_count Prototype: fn notify_core_count( count: u16,\n) Indicate that from this block onwards, the range of acceptable values of the core parameter of assign_core message is [0, count). assign_core will be a no-op if provided with a value for core outside of this range. notify_revenue_info Prototype: fn notify_revenue_info( until: BlockNumber, revenue: Option,\n) Provide the amount of revenue accumulated from Instantaneous Coretime Sales from Relay-chain block number last_until to until, not including until itself. last_until is defined as being the until argument of the last notify_revenue message sent, or zero for the first call. If revenue is None, this indicates that the information is no longer available. This explicitly disregards the possibility of multiple parachains requesting and being notified of revenue information. The Relay-chain must be configured to ensure that only a single revenue information destination exists.","breadcrumbs":"RFC-5: Coretime Interface » DMP Message Types","id":"223","title":"DMP Message Types"},"224":{"body":"For request_revenue_info, a successful request should be possible if when is no less than the Relay-chain block number on arrival of the message less 100,000. For assign_core, a successful request should be possible if begin is no less than the Relay-chain block number on arrival of the message plus 10 and workload contains no more than 100 items.","breadcrumbs":"RFC-5: Coretime Interface » Realistic Limits of the Usage","id":"224","title":"Realistic Limits of the Usage"},"225":{"body":"No specific considerations.","breadcrumbs":"RFC-5: Coretime Interface » Performance, Ergonomics and Compatibility","id":"225","title":"Performance, Ergonomics and Compatibility"},"226":{"body":"Standard Polkadot testing and security auditing applies. The proposal introduces no new privacy concerns.","breadcrumbs":"RFC-5: Coretime Interface » Testing, Security and Privacy","id":"226","title":"Testing, Security and Privacy"},"227":{"body":"RFC-1 proposes a means of determining allocation of Coretime using this interface. RFC-3 proposes a means of implementing the high-level allocations within the Relay-chain.","breadcrumbs":"RFC-5: Coretime Interface » Future Directions and Related Material","id":"227","title":"Future Directions and Related Material"},"228":{"body":"None at present.","breadcrumbs":"RFC-5: Coretime Interface » Drawbacks, Alternatives and Unknowns","id":"228","title":"Drawbacks, Alternatives and Unknowns"},"229":{"body":"None.","breadcrumbs":"RFC-5: Coretime Interface » Prior Art and References","id":"229","title":"Prior Art and References"},"23":{"body":"(source) Table of Contents RFC-0026: Sassafras Consensus Protocol Abstract 1. Motivation 1.1. Relevance to Implementors 1.2. Supporting Sassafras for Polkadot 2. Stakeholders 2.1. Blockchain Developers 2.2. Polkadot Ecosystem Contributors 3. Notation and Convention 3.1. Data Structures Definitions and Encoding 3.2. Pseudo-Code 3.3. Incremental Introduction of Types and Functions 4. Protocol Introduction 4.1. Submission of Candidate Tickets 4.2. Validation of Candidate Tickets 4.3. Tickets and Slots Binding 4.4. Claim of Ticket Ownership 4.5. Validation of Ticket Ownership 5. Bandersnatch VRFs Cryptographic Primitives 5.1. VRF Input 5.2. VRF PreOutput 5.3. VRF Signature Data 5.4. VRF Signature 6. Sassafras Protocol 6.1. Epoch's First Block 6.2. Creation and Submission of Candidate Tickets 6.3. Validation of candidate tickets 6.4. Ticket-Slot Binding 6.5. Slot Claim Production 6.6. Slot Claim Verification 6.6.1. Primary Method 6.7. Randomness Accumulator 7. Drawbacks 8. Testing, Security, and Privacy 9. Performance, Ergonomics, and Compatibility 9.1. Performance 9.2. Ergonomics 9.3. Compatibility 10. Prior Art and References 11. Unresolved Questions 12. Future Directions and Related Material 12.1. Interactions with On-Chain Code 12.2. Deployment Strategies 12.3. ZK-SNARK SRS Initialization 12.4. Anonymous Submission of Tickets. Start Date September 06, 2023 Description Sassafras consensus protocol description and structures Authors Davide Galassi","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » RFC-0026: Sassafras Consensus Protocol","id":"23","title":"RFC-0026: Sassafras Consensus Protocol"},"230":{"body":"(source) Table of Contents RFC-0007: System Collator Selection Summary Motivation Requirements Stakeholders Explanation Set Size Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Written Discussions Prior Feedback and Input From Unresolved Questions Future Directions and Related Material Start Date 07 July 2023 Description Mechanism for selecting collators of system chains. Authors Joe Petrowski","breadcrumbs":"RFC-0007: System Collator Selection » RFC-0007: System Collator Selection","id":"230","title":"RFC-0007: System Collator Selection"},"231":{"body":"As core functionality moves from the Relay Chain into system chains, so increases the reliance on the liveness of these chains for the use of the network. It is not economically scalable, nor necessary from a game-theoretic perspective, to pay collators large rewards. This RFC proposes a mechanism -- part technical and part social -- for ensuring reliable collator sets that are resilient to attemps to stop any subsytem of the Polkadot protocol.","breadcrumbs":"RFC-0007: System Collator Selection » Summary","id":"231","title":"Summary"},"232":{"body":"In order to guarantee access to Polkadot's system, the collators on its system chains must propose blocks (provide liveness) and allow all transactions to eventually be included. That is, some collators may censor transactions, but there must exist one collator in the set who will include a given transaction. In fact, all collators may censor varying subsets of transactions, but as long as no transaction is in the intersection of every subset, it will eventually be included. The objective of this RFC is to propose a mechanism to select such a set on each system chain. While the network as a whole uses staking (and inflationary rewards) to attract validators, collators face different challenges in scale and have lower security assumptions than validators. Regarding scale, there exist many system chains, and it is economically expensive to pay collators a premium. Likewise, any staked DOT for collation is not staked for validation. Since collator sets do not need to meet Byzantine Fault Tolerance criteria, staking as the primary mechanism for collator selection would remove stake that is securing BFT assumptions, making the network less secure. Another problem with economic scalability relates to the increasing number of system chains, and corresponding increase in need for collators (i.e., increase in collator slots). \"Good\" (highly available, non-censoring) collators will not want to compete in elections on many chains when they could use their resources to compete in the more profitable validator election. Such dilution decreases the required bond on each chain, leaving them vulnerable to takeover by hostile collator groups. This RFC proposes a system whereby collation is primarily an infrastructure service, with the on-chain Treasury reimbursing costs of semi-trusted node operators, referred to as \"Invulnerables\". The system need not trust the individual operators, only that as a set they would be resilient to coordinated attempts to stop a single chain from halting or to censor a particular subset of transactions. In the case that users do not trust this set, this RFC also proposes that each chain always have available collator positions that can be acquired by anyone by placing a bond.","breadcrumbs":"RFC-0007: System Collator Selection » Motivation","id":"232","title":"Motivation"},"233":{"body":"System MUST have at least one valid collator for every chain. System MUST allow anyone to become a collator, provided they reserve/hold enough DOT. System SHOULD select a set of collators with reasonable expectation that the set will not collude to censor any subset of transactions. Collators selected by governance SHOULD have a reasonable expectation that the Treasury will reimburse their operating costs.","breadcrumbs":"RFC-0007: System Collator Selection » Requirements","id":"233","title":"Requirements"},"234":{"body":"Infrastructure providers (people who run validator/collator nodes) Polkadot Treasury","breadcrumbs":"RFC-0007: System Collator Selection » Stakeholders","id":"234","title":"Stakeholders"},"235":{"body":"This protocol builds on the existing Collator Selection pallet and its notion of Invulnerables. Invulnerables are collators (identified by their AccountIds) who will be selected as part of the collator set every session. Operations relating to the management of the Invulnerables are done through privileged, governance origins. The implementation should maintain an API for adding and removing Invulnerable collators. In addition to Invulnerables, there are also open slots for \"Candidates\". Anyone can register as a Candidate by placing a fixed bond. However, with a fixed bond and fixed number of slots, there is an obvious selection problem: The slots fill up without any logic to replace their occupants. This RFC proposes that the collator selection protocol allow Candidates to increase (and decrease) their individual bonds, sort the Candidates according to bond, and select the top N Candidates. The selection and changeover should be coordinated by the session manager. A FRAME pallet already exists for sorting (\"bagging\") \"top N\" groups, the Bags List pallet . This pallet's SortedListProvider should be integrated into the session manager of the Collator Selection pallet. Despite the lack of apparent economic incentives (i.e., inflation), several reasons exist why one may want to bond funds to participate in the Candidates election, for example: They want to build credibility to be selected as Invulnerable; They want to ensure availability of an application, e.g. a stablecoin issuer might run a collator on Asset Hub to ensure transactions in its asset are included in blocks; They fear censorship themselves, e.g. a voter might think their votes are being censored from governance, so they run a collator on the governance chain to include their votes. Unlike the fixed-bond mechanism that fills up its Candidates, the election mechanism ensures that anyone can join the collator set by placing the Nth highest bond.","breadcrumbs":"RFC-0007: System Collator Selection » Explanation","id":"235","title":"Explanation"},"236":{"body":"In order to achieve the requirements listed under Motivation , it is reasonable to have approximately: 20 collators per system chain, of which 15 are Invulnerable, and five are elected by bond.","breadcrumbs":"RFC-0007: System Collator Selection » Set Size","id":"236","title":"Set Size"},"237":{"body":"The primary drawback is a reliance on governance for continued treasury funding of infrastructure costs for Invulnerable collators.","breadcrumbs":"RFC-0007: System Collator Selection » Drawbacks","id":"237","title":"Drawbacks"},"238":{"body":"The vast majority of cases can be covered by unit testing. Integration test should ensure that the Collator Selection UpdateOrigin, which has permission to modify the Invulnerables and desired number of Candidates, can handle updates over XCM from the system's governance location.","breadcrumbs":"RFC-0007: System Collator Selection » Testing, Security, and Privacy","id":"238","title":"Testing, Security, and Privacy"},"239":{"body":"This proposal has very little impact on most users of Polkadot, and should improve the performance of system chains by reducing the number of missed blocks.","breadcrumbs":"RFC-0007: System Collator Selection » Performance, Ergonomics, and Compatibility","id":"239","title":"Performance, Ergonomics, and Compatibility"},"24":{"body":"Sassafras is a novel consensus protocol designed to address the recurring fork-related challenges encountered in other lottery-based protocols. The protocol aims to create a mapping between each epoch's slots and the validators set while ensuring that the identity of validators assigned to the slots remains undisclosed until the slot is actively claimed during block production.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » Abstract","id":"24","title":"Abstract"},"240":{"body":"As chains have strict PoV size limits, care must be taken in the PoV impact of the session manager. Appropriate benchmarking and tests should ensure that conservative limits are placed on the number of Invulnerables and Candidates.","breadcrumbs":"RFC-0007: System Collator Selection » Performance","id":"240","title":"Performance"},"241":{"body":"The primary group affected is Candidate collators, who, after implementation of this RFC, will need to compete in a bond-based election rather than a race to claim a Candidate spot.","breadcrumbs":"RFC-0007: System Collator Selection » Ergonomics","id":"241","title":"Ergonomics"},"242":{"body":"This RFC is compatible with the existing implementation and can be handled via upgrades and migration.","breadcrumbs":"RFC-0007: System Collator Selection » Compatibility","id":"242","title":"Compatibility"},"243":{"body":"","breadcrumbs":"RFC-0007: System Collator Selection » Prior Art and References","id":"243","title":"Prior Art and References"},"244":{"body":"GitHub: Collator Selection Roadmap GitHub: Revisit Collator Selection Mechanism Polkadot Forum: Economic Model for System Para Collators","breadcrumbs":"RFC-0007: System Collator Selection » Written Discussions","id":"244","title":"Written Discussions"},"245":{"body":"Kian Paimani Jeff Burdges Rob Habermeier SR Labs Auditors Current collators including Paranodes, Stake Plus, Turboflakes, Peter Mensik, SIK, and many more.","breadcrumbs":"RFC-0007: System Collator Selection » Prior Feedback and Input From","id":"245","title":"Prior Feedback and Input From"},"246":{"body":"None at this time.","breadcrumbs":"RFC-0007: System Collator Selection » Unresolved Questions","id":"246","title":"Unresolved Questions"},"247":{"body":"There may exist in the future system chains for which this model of collator selection is not appropriate. These chains should be evaluated on a case-by-case basis.","breadcrumbs":"RFC-0007: System Collator Selection » Future Directions and Related Material","id":"247","title":"Future Directions and Related Material"},"248":{"body":"(source) Table of Contents RFC-0008: Store parachain bootnodes in relay chain DHT Summary Motivation Stakeholders Explanation DHT provider registration New networking protocol Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-07-14 Description Parachain bootnodes shall register themselves in the DHT of the relay chain Authors Pierre Krieger","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » RFC-0008: Store parachain bootnodes in relay chain DHT","id":"248","title":"RFC-0008: Store parachain bootnodes in relay chain DHT"},"249":{"body":"The full nodes of the Polkadot peer-to-peer network maintain a distributed hash table (DHT), which is currently used for full nodes discovery and validators discovery purposes. This RFC proposes to extend this DHT to be used to discover full nodes of the parachains of Polkadot.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Summary","id":"249","title":"Summary"},"25":{"body":"Sassafras Protocol has been rigorously detailed in a comprehensive research paper authored by the Web3 foundation research team. This RFC is primarily intended to detail the critical implementation aspects vital for ensuring interoperability and to clarify certain aspects that are left open by the research paper and thus subject to interpretation during implementation.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 1. Motivation","id":"25","title":"1. Motivation"},"250":{"body":"The maintenance of bootnodes has long been an annoyance for everyone. When a bootnode is newly-deployed or removed, every chain specification must be updated in order to take the update into account. This has lead to various non-optimal solutions, such as pulling chain specifications from GitHub repositories. When it comes to RPC nodes, UX developers often have trouble finding up-to-date addresses of parachain RPC nodes. With the ongoing migration from RPC nodes to light clients, similar problems would happen with chain specifications as well. Furthermore, there exists multiple different possible variants of a certain chain specification: with the non-raw storage, with the raw storage, with just the genesis trie root hash, with or without checkpoint, etc. All of this creates confusion. Removing the need for parachain developers to be aware of and manage these different versions would be beneficial. Since the PeerId and addresses of bootnodes needs to be stable, extra maintenance work is required from the chain maintainers. For example, they need to be extra careful when migrating nodes within their infrastructure. In some situations, bootnodes are put behind domain names, which also requires maintenance work. Because the list of bootnodes in chain specifications is so annoying to modify, the consequence is that the number of bootnodes is rather low (typically between 2 and 15). In order to better resist downtimes and DoS attacks, a better solution would be to use every node of a certain chain as potential bootnode, rather than special-casing some specific nodes. While this RFC doesn't solve these problems for relay chains, it aims at solving it for parachains by storing the list of all the full nodes of a parachain on the relay chain DHT. Assuming that this RFC is implemented, and that light clients are used, deploying a parachain wouldn't require more work than registering it onto the relay chain and starting the collators. There wouldn't be any need for special infrastructure nodes anymore.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Motivation","id":"250","title":"Motivation"},"251":{"body":"This RFC has been opened on my own initiative because I think that this is a good technical solution to a usability problem that many people are encountering and that they don't realize can be solved.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Stakeholders","id":"251","title":"Stakeholders"},"252":{"body":"The content of this RFC only applies for parachains and parachain nodes that are \"Substrate-compatible\". It is in no way mandatory for parachains to comply to this RFC. Note that \"Substrate-compatible\" is very loosely defined as \"implements the same mechanisms and networking protocols as Substrate\". The author of this RFC believes that \"Substrate-compatible\" should be very precisely specified, but there is controversy on this topic. While a lot of this RFC concerns the implementation of parachain nodes, it makes use of the resources of the Polkadot chain, and as such it is important to describe them in the Polkadot specification. This RFC adds two mechanisms: a registration in the DHT, and a new networking protocol.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Explanation","id":"252","title":"Explanation"},"253":{"body":"This RFC heavily relies on the functionalities of the Kademlia DHT already in use by Polkadot. You can find a link to the specification here . Full nodes of a parachain registered on Polkadot should register themselves onto the Polkadot DHT as the providers of a key corresponding to the parachain that they are serving, as described in the Content provider advertisement section of the specification. This uses the ADD_PROVIDER system of libp2p-kademlia. This key is: sha256(concat(scale_compact(para_id), randomness)) where the value of randomness can be found in the randomness field when calling the BabeApi_currentEpoch function. For example, for a para_id equal to 1000, and at the time of writing of this RFC (July 14th 2023 at 09:13 UTC), it is sha(0xa10f12872447958d50aa7b937b0106561a588e0e2628d33f81b5361b13dbcf8df708), which is equal to 0x483dd8084d50dbbbc962067f216c37b627831d9339f5a6e426a32e3076313d87. In order to avoid downtime when the key changes, parachain full nodes should also register themselves as a secondary key that uses a value of randomness equal to the randomness field when calling BabeApi_nextEpoch. Implementers should be aware that their implementation of Kademlia might already hash the key before XOR'ing it. The key is not meant to be hashed twice. The compact SCALE encoding has been chosen in order to avoid problems related to the number of bytes and endianness of the para_id.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » DHT provider registration","id":"253","title":"DHT provider registration"},"254":{"body":"A new request-response protocol should be added, whose name is /91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3/paranode (that hexadecimal number is the genesis hash of the Polkadot chain, and should be adjusted appropriately for Kusama and others). The request consists in a SCALE-compact-encoded para_id. For example, for a para_id equal to 1000, this is 0xa10f. Note that because this is a request-response protocol, the request is always prefixed with its length in bytes. While the body of the request is simply the SCALE-compact-encoded para_id, the data actually sent onto the substream is both the length and body. The response consists in a protobuf struct, defined as: syntax = \"proto2\"; message Response { // Peer ID of the node on the parachain side. bytes peer_id = 1; // Multiaddresses of the parachain side of the node. The list and format are the same as for the `listenAddrs` field of the `identify` protocol. repeated bytes addrs = 2; // Genesis hash of the parachain. Used to determine the name of the networking protocol to connect to the parachain. Untrusted. bytes genesis_hash = 3; // So-called \"fork ID\" of the parachain. Used to determine the name of the networking protocol to connect to the parachain. Untrusted. optional string fork_id = 4;\n}; The maximum size of a response is set to an arbitrary 16kiB. The responding side should make sure to conform to this limit. Given that fork_id is typically very small and that the only variable-length field is addrs, this is easily achieved by limiting the number of addresses. Implementers should be aware that addrs might be very large, and are encouraged to limit the number of addrs to an implementation-defined value.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » New networking protocol","id":"254","title":"New networking protocol"},"255":{"body":"The peer_id and addrs fields are in theory not strictly needed, as the PeerId and addresses could be always equal to the PeerId and addresses of the node being registered as the provider and serving the response. However, the Cumulus implementation currently uses two different networking stacks, one of the parachain and one for the relay chain, using two separate PeerIds and addresses, and as such the PeerId and addresses of the other networking stack must be indicated. Asking them to use only one networking stack wouldn't feasible in a realistic time frame. The values of the genesis_hash and fork_id fields cannot be verified by the requester and are expected to be unused at the moment. Instead, a client that desires connecting to a parachain is expected to obtain the genesis hash and fork ID of the parachain from the parachain chain specification. These fields are included in the networking protocol nonetheless in case an acceptable solution is found in the future, and in order to allow use cases such as discovering parachains in a not-strictly-trusted way.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Drawbacks","id":"255","title":"Drawbacks"},"256":{"body":"Because not all nodes want to be used as bootnodes, implementers are encouraged to provide a way to disable this mechanism. However, it is very much encouraged to leave this mechanism on by default for all parachain nodes. This mechanism doesn't add or remove any security by itself, as it relies on existing mechanisms. However, if the principle of chain specification bootnodes is entirely replaced with the mechanism described in this RFC (which is the objective), then it becomes important whether the mechanism in this RFC can be abused in order to make a parachain unreachable. Due to the way Kademlia works, it would become the responsibility of the 20 Polkadot nodes whose sha256(peer_id) is closest to the key (described in the explanations section) to store the list of bootnodes of each parachain. Furthermore, when a large number of providers (here, a provider is a bootnode) are registered, only the providers closest to the key are kept, up to a certain implementation-defined limit. For this reason, an attacker can abuse this mechanism by randomly generating libp2p PeerIds until they find the 20 entries closest to the key representing the target parachain. They are then in control of the parachain bootnodes. Because the key changes periodically and isn't predictable, and assuming that the Polkadot DHT is sufficiently large, it is not realistic for an attack like this to be maintained in the long term. Furthermore, parachain clients are expected to cache a list of known good nodes on their disk. If the mechanism described in this RFC went down, it would only prevent new nodes from accessing the parachain, while clients that have connected before would not be affected.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Testing, Security, and Privacy","id":"256","title":"Testing, Security, and Privacy"},"257":{"body":"","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Performance, Ergonomics, and Compatibility","id":"257","title":"Performance, Ergonomics, and Compatibility"},"258":{"body":"The DHT mechanism generally has a low overhead, especially given that publishing providers is done only every 24 hours. Doing a Kademlia iterative query then sending a provider record shouldn't take more than around 50 kiB in total of bandwidth for the parachain bootnode. Assuming 1000 parachain full nodes, the 20 Polkadot full nodes corresponding to a specific parachain will each receive a sudden spike of a few megabytes of networking traffic when the key rotates. Again, this is relatively negligible. If this becomes a problem, one can add a random delay before a parachain full node registers itself to be the provider of the key corresponding to BabeApi_next_epoch. Maybe the biggest uncertainty is the traffic that the 20 Polkadot full nodes will receive from light clients that desire knowing the bootnodes of a parachain. Light clients are generally encouraged to cache the peers that they use between restarts, so they should only query these 20 Polkadot full nodes at their first initialization. If this every becomes a problem, this value of 20 is an arbitrary constant that can be increased for more redundancy.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Performance","id":"258","title":"Performance"},"259":{"body":"Irrelevant.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Ergonomics","id":"259","title":"Ergonomics"},"26":{"body":"This RFC focuses on providing implementors with the necessary insights into the protocol's operation. In instances of inconsistency between this document and the research paper, this RFC should be considered authoritative to eliminate ambiguities and ensure interoperability.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 1.1. Relevance to Implementors","id":"26","title":"1.1. Relevance to Implementors"},"260":{"body":"Irrelevant.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Compatibility","id":"260","title":"Compatibility"},"261":{"body":"None.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Prior Art and References","id":"261","title":"Prior Art and References"},"262":{"body":"While it fundamentally doesn't change much to this RFC, using BabeApi_currentEpoch and BabeApi_nextEpoch might be inappropriate. I'm not familiar enough with good practices within the runtime to have an opinion here. Should it be an entirely new pallet?","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Unresolved Questions","id":"262","title":"Unresolved Questions"},"263":{"body":"It is possible that in the future a client could connect to a parachain without having to rely on a trusted parachain specification.","breadcrumbs":"RFC-0008: Store parachain bootnodes in relay chain DHT » Future Directions and Related Material","id":"263","title":"Future Directions and Related Material"},"264":{"body":"(source) Table of Contents RFC-0012: Process for Adding New System Collectives Summary Motivation Stakeholders Explanation Removing Collectives Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Prior Art and References Unresolved Questions Start Date 24 July 2023 Description A process for adding new (and removing existing) system collectives. Authors Joe Petrowski","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » RFC-0012: Process for Adding New System Collectives","id":"264","title":"RFC-0012: Process for Adding New System Collectives"},"265":{"body":"Since the introduction of the Collectives parachain, many groups have expressed interest in forming new -- or migrating existing groups into -- on-chain collectives. While adding a new collective is relatively simple from a technical standpoint, the Fellowship will need to merge new pallets into the Collectives parachain for each new collective. This RFC proposes a means for the network to ratify a new collective, thus instructing the Fellowship to instate it in the runtime.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Summary","id":"265","title":"Summary"},"266":{"body":"Many groups have expressed interest in representing collectives on-chain. Some of these include: Parachain technical fellowship (new) Fellowship(s) for media, education, and evangelism (new) Polkadot Ambassador Program (existing) Anti-Scam Team (existing) Collectives that form part of the core Polkadot protocol should have a mandate to serve the Polkadot network. However, as part of the Polkadot protocol, the Fellowship, in its capacity of maintaining system runtimes, will need to include modules and configurations for each collective. Once a group has developed a value proposition for the Polkadot network, it should have a clear path to having its collective accepted on-chain as part of the protocol. Acceptance should direct the Fellowship to include the new collective with a given initial configuration into the runtime. However, the network, not the Fellowship, should ultimately decide which collectives are in the interest of the network.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Motivation","id":"266","title":"Motivation"},"267":{"body":"Polkadot stakeholders who would like to organize on-chain. Technical Fellowship, in its role of maintaining system runtimes.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Stakeholders","id":"267","title":"Stakeholders"},"268":{"body":"The group that wishes to operate an on-chain collective should publish the following information: Charter, including the collective's mandate and how it benefits Polkadot. This would be similar to the Fellowship Manifesto . Seeding recommendation. Member types, i.e. should members be individuals or organizations. Member management strategy, i.e. how do members join and get promoted, if applicable. How much, if at all, members should get paid in salary. Any special origins this Collective should have outside its self. For example, the Fellowship can whitelist calls for referenda via the WhitelistOrigin. This information could all be in a single document or, for example, a GitHub repository. After publication, members should seek feedback from the community and Technical Fellowship, and make any revisions needed. When the collective believes the proposal is ready, they should bring a remark with the text APPROVE_COLLECTIVE(\"{collective name}, {commitment}\") to a Root origin referendum. The proposer should provide instructions for generating commitment. The passing of this referendum would be unequivocal direction to the Fellowship that this collective should be part of the Polkadot runtime. Note: There is no need for a REJECT referendum. Proposals that have not been approved are simply not included in the runtime.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Explanation","id":"268","title":"Explanation"},"269":{"body":"If someone believes that an existing collective is not acting in the interest of the network or in accordance with its charter, they should likewise have a means to instruct the Fellowship to remove that collective from Polkadot. An on-chain remark from the Root origin with the text REMOVE_COLLECTIVE(\"{collective name}, {para ID}, [{pallet indices}]\") would instruct the Fellowship to remove the collective via the listed pallet indices on paraId. Should someone want to construct such a remark, they should have a reasonable expectation that a member of the Fellowship would help them identify the pallet indices associated with a given collective, whether or not the Fellowship member agrees with removal. Collective removal may also come with other governance calls, for example voiding any scheduled Treasury spends that would fund the given collective.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Removing Collectives","id":"269","title":"Removing Collectives"},"27":{"body":"Beyond promoting interoperability, this RFC also aims to facilitate the implementation of Sassafras within the Polkadot ecosystem. Although the specifics of deployment strategies are beyond the scope of this document, it lays the groundwork for the integration of Sassafras into the Polkadot network.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 1.2. Supporting Sassafras for Polkadot","id":"27","title":"1.2. Supporting Sassafras for Polkadot"},"270":{"body":"Passing a Root origin referendum is slow. However, given the network's investment (in terms of code maintenance and salaries) in a new collective, this is an appropriate step.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Drawbacks","id":"270","title":"Drawbacks"},"271":{"body":"No impacts.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Testing, Security, and Privacy","id":"271","title":"Testing, Security, and Privacy"},"272":{"body":"Generally all new collectives will be in the Collectives parachain. Thus, performance impacts should strictly be limited to this parachain and not affect others. As the majority of logic for collectives is generalized and reusable, we expect most collectives to be instances of similar subsets of modules. That is, new collectives should generally be compatible with UIs and other services that provide collective-related functionality, with little modifications to support new ones.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Performance, Ergonomics, and Compatibility","id":"272","title":"Performance, Ergonomics, and Compatibility"},"273":{"body":"The launch of the Technical Fellowship, see the initial forum post .","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Prior Art and References","id":"273","title":"Prior Art and References"},"274":{"body":"None at this time.","breadcrumbs":"RFC-0012: Process for Adding New System Collectives » Unresolved Questions","id":"274","title":"Unresolved Questions"},"275":{"body":"(source) Table of Contents RFC-0014: Improve locking mechanism for parachains Summary Motivation Requirements Stakeholders Explanation Status quo Proposed changes Migration Drawbacks Testing, Security, and Privacy Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date July 25, 2023 Description Improve locking mechanism for parachains Authors Bryan Chen","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » RFC-0014: Improve locking mechanism for parachains","id":"275","title":"RFC-0014: Improve locking mechanism for parachains"},"276":{"body":"This RFC proposes a set of changes to the parachain lock mechanism. The goal is to allow a parachain manager to self-service the parachain without root track governance action. This is achieved by remove existing lock conditions and only lock a parachain when: A parachain manager explicitly lock the parachain OR a parachain block is produced successfully","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Summary","id":"276","title":"Summary"},"277":{"body":"The manager of a parachain has permission to manage the parachain when the parachain is unlocked. Parachains are by default locked when onboarded to a slot. This requires the parachain wasm/genesis must be valid, otherwise a root track governance action on relaychain is required to update the parachain. The current reliance on root track governance actions for managing parachains can be time-consuming and burdensome. This RFC aims to address this technical difficulty by allowing parachain managers to take self-service actions, rather than relying on general public voting. The key scenarios this RFC seeks to improve are: Rescue a parachain with invalid wasm/genesis. While we have various resources and templates to build a new parachain, it is still not a trivial task. It is very easy to make a mistake and resulting an invalid wasm/genesis. With lack of tools to help detect those issues [1] , it is very likely that the issues are only discovered after the parachain is onboarded on a slot. In this case, the parachain is locked and the parachain team has to go through a lengthy governance process to rescue the parachain. Perform lease renewal for an existing parachain. One way to perform lease renewal for a parachain is by doing a least swap with another parachain with a longer lease. This requires the other parachain must be operational and able to perform XCM transact call into relaychain to dispatch the swap call. Combined with the overhead of setting up a new parachain, this is an time consuming and expensive process. Ideally, the parachain manager should be able to perform the lease swap call without having a running parachain [2] .","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Motivation","id":"277","title":"Motivation"},"278":{"body":"A parachain manager SHOULD be able to rescue a parachain by updating the wasm/genesis without root track governance action. A parachain manager MUST NOT be able to update the wasm/genesis if the parachain is locked. A parachain SHOULD be locked when it successfully produced the first block. A parachain manager MUST be able to perform lease swap without having a running parachain.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Requirements","id":"278","title":"Requirements"},"279":{"body":"Parachain teams Parachain users","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Stakeholders","id":"279","title":"Stakeholders"},"28":{"body":"","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 2. Stakeholders","id":"28","title":"2. Stakeholders"},"280":{"body":"","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Explanation","id":"280","title":"Explanation"},"281":{"body":"A parachain can either be locked or unlocked [3] . With parachain locked, the parachain manager does not have any privileges. With parachain unlocked, the parachain manager can perform following actions with the paras_registrar pallet: deregister: Deregister a Para Id, freeing all data and returning any deposit. swap: Initiate or confirm lease swap with another parachain. add_lock: Lock the parachain. schedule_code_upgrade: Schedule a parachain upgrade to update parachain wasm. set_current_head: Set the parachain's current head. Currently, a parachain can be locked with following conditions: From add_lock call, which can be dispatched by relaychain Root origin, the parachain, or the parachain manager. When a parachain is onboarded on a slot [4] . When a crowdloan is created. Only the relaychain Root origin or the parachain itself can unlock the lock [5] . This creates an issue that if the parachain is unable to produce block, the parachain manager is unable to do anything and have to rely on relaychain Root origin to manage the parachain.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Status quo","id":"281","title":"Status quo"},"282":{"body":"This RFC proposes to change the lock and unlock conditions. A parachain can be locked only with following conditions: Relaychain governance MUST be able to lock any parachain. A parachain MUST be able to lock its own lock. A parachain manager SHOULD be able to lock the parachain. A parachain SHOULD be locked when it successfully produced a block for the first time. A parachain can be unlocked only with following conditions: Relaychain governance MUST be able to unlock any parachain. A parachain MUST be able to unlock its own lock. Note that create crowdloan MUST NOT lock the parachain and onboard a parachain SHOULD NOT lock it until a new block is successfully produced.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Proposed changes","id":"282","title":"Proposed changes"},"283":{"body":"A one off migration is proposed in order to apply this change retrospectively so that existing parachains can also be benefited from this RFC. This migration will unlock parachains that confirms with following conditions: Parachain is locked. Parachain never produced a block. Including from expired leases. Parachain manager never explicitly lock the parachain.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Migration","id":"283","title":"Migration"},"284":{"body":"Parachain locks are designed in such way to ensure the decentralization of parachains. If parachains are not locked when it should be, it could introduce centralization risk for new parachains. For example, one possible scenario is that a collective may decide to launch a parachain fully decentralized. However, if the parachain is unable to produce block, the parachain manager will be able to replace the wasm and genesis without the consent of the collective. It is considered this risk is tolerable as it requires the wasm/genesis to be invalid at first place. It is not yet practically possible to develop a parachain without any centralized risk currently. Another case is that a parachain team may decide to use crowdloan to help secure a slot lease. Previously, creating a crowdloan will lock a parachain. This means crowdloan participants will know exactly the genesis of the parachain for the crowdloan they are participating. However, this actually providers little assurance to crowdloan participants. For example, if the genesis block is determined before a crowdloan is started, it is not possible to have onchain mechanism to enforce reward distributions for crowdloan participants. They always have to rely on the parachain team to fulfill the promise after the parachain is alive. Existing operational parachains will not be impacted.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Drawbacks","id":"284","title":"Drawbacks"},"285":{"body":"The implementation of this RFC will be tested on testnets (Rococo and Westend) first. An audit maybe required to ensure the implementation does not introduce unwanted side effects. There is no privacy related concerns.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Testing, Security, and Privacy","id":"285","title":"Testing, Security, and Privacy"},"286":{"body":"This RFC should not introduce any performance impact.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Performance","id":"286","title":"Performance"},"287":{"body":"This RFC should improve the developer experiences for new and existing parachain teams","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Ergonomics","id":"287","title":"Ergonomics"},"288":{"body":"This RFC is fully compatibility with existing interfaces.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Compatibility","id":"288","title":"Compatibility"},"289":{"body":"Parachain Slot Extension Story: https://github.com/paritytech/polkadot/issues/4758 Allow parachain to renew lease without actually run another parachain: https://github.com/paritytech/polkadot/issues/6685 Always treat parachain that never produced block for a significant amount of time as unlocked: https://github.com/paritytech/polkadot/issues/7539","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Prior Art and References","id":"289","title":"Prior Art and References"},"29":{"body":"Developers responsible for creating blockchains who intend to leverage the benefits offered by the Sassafras Protocol.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 2.1. Blockchain Developers","id":"29","title":"2.1. Blockchain Developers"},"290":{"body":"None at this stage.","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Unresolved Questions","id":"290","title":"Unresolved Questions"},"291":{"body":"This RFC is only intended to be a short term solution. Slots will be removed in future and lock mechanism is likely going to be replaced with a more generalized parachain manage & recovery system in future. Therefore long term impacts of this RFC are not considered. https://github.com/paritytech/cumulus/issues/377 [2] : https://github.com/paritytech/polkadot/issues/6685 [3] : https://github.com/paritytech/polkadot/blob/994af3de79af25544bf39644844cbe70a7b4d695/runtime/common/src/paras_registrar.rs#L51-L52C15 [4] : https://github.com/paritytech/polkadot/blob/994af3de79af25544bf39644844cbe70a7b4d695/runtime/common/src/paras_registrar.rs#L473-L475 [5] : https://github.com/paritytech/polkadot/blob/994af3de79af25544bf39644844cbe70a7b4d695/runtime/common/src/paras_registrar.rs#L333-L340","breadcrumbs":"RFC-0014: Improve locking mechanism for parachains » Future Directions and Related Material","id":"291","title":"Future Directions and Related Material"},"292":{"body":"(source) Table of Contents RFC-0022: Adopt Encointer Runtime Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date Aug 22nd 2023 Description Permanently move the Encointer runtime into the Fellowship runtimes repo. Authors @brenzi for Encointer Association, 8000 Zurich, Switzerland","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » RFC-0022: Adopt Encointer Runtime","id":"292","title":"RFC-0022: Adopt Encointer Runtime"},"293":{"body":"Encointer is a system chain on Kusama since Jan 2022 and has been developed and maintained by the Encointer association. This RFC proposes to treat Encointer like any other system chain and include it in the fellowship repo with this PR .","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Summary","id":"293","title":"Summary"},"294":{"body":"Encointer does not seek to be in control of its runtime repository. As a decentralized system, the fellowship has a more suitable structure to maintain a system chain runtime repo than the Encointer association does. Also, Encointer aims to update its runtime in batches with other system chains in order to have consistency for interoperability across system chains.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Motivation","id":"294","title":"Motivation"},"295":{"body":"Fellowship: Will continue to take upon them the review and auditing work for the Encointer runtime, but the process is streamlined with other system chains and therefore less time-consuming compared to the separate repo and CI process we currently have. Kusama Network: Tokenholders can easily see the changes of all system chains in one place. Encointer Association: Further decentralization of the Encointer Network necessities like devops. Encointer devs: Being able to work directly in the Fellowship runtimes repo to streamline and synergize with other developers.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Stakeholders","id":"295","title":"Stakeholders"},"296":{"body":"Our PR has all details about our runtime and how we would move it into the fellowship repo. Noteworthy: All Encointer-specific pallets will still be located in encointer's repo for the time being: https://github.com/encointer/pallets It will still be the duty of the Encointer team to keep its runtime up to date and provide adequate test fixtures. Frequent dependency bumps with Polkadot releases would be beneficial for interoperability and could be streamlined with other system chains but that will not be a duty of fellowship. Whenever possible, all system chains could be upgraded jointly (including Encointer) with a batch referendum. Further notes: Encointer will publish all its crates crates.io Encointer does not carry out external auditing of its runtime nor pallets. It would be beneficial but not a requirement from our side if Encointer could join the auditing process of other system chains.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Explanation","id":"296","title":"Explanation"},"297":{"body":"Other than all other system chains, development and maintenance of the Encointer Network is mainly financed by the KSM Treasury and possibly the DOT Treasury in the future. Encointer is dedicated to maintaining its network and runtime code for as long as possible, but there is a dependency on funding which is not in the hands of the fellowship. The only risk in the context of funding, however, is that the Encointer runtime will see less frequent updates if there's less funding.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Drawbacks","id":"297","title":"Drawbacks"},"298":{"body":"No changes to the existing system are proposed. Only changes to how maintenance is organized.","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Testing, Security, and Privacy","id":"298","title":"Testing, Security, and Privacy"},"299":{"body":"No changes","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Performance, Ergonomics, and Compatibility","id":"299","title":"Performance, Ergonomics, and Compatibility"},"3":{"body":"The current deposit of 10 DOT for collection creation (along with 0.01 DOT for item deposit and 0.2 DOT for metadata and attribute deposit) on the Polkadot Asset Hub and 0.1 KSM on Kusama Asset Hub presents a significant financial barrier for many NFT creators. By lowering the deposit requirements, we aim to encourage more NFT creators to participate in the Polkadot NFT ecosystem, thereby enriching the diversity and vibrancy of the community and its offerings. The actual implementation of the deposit is an arbitrary number coming from Uniques pallet . It is not a result of any economic analysis. This proposal aims to adjust the deposit from constant to dynamic pricing based on the deposit function with respect to stakeholders.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Motivation","id":"3","title":"Motivation"},"30":{"body":"Developers contributing to the Polkadot ecosystem, both relay-chain and para-chains. The protocol will have a central role in the next generation block authoring consensus systems.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 2.2. Polkadot Ecosystem Contributors","id":"30","title":"2.2. Polkadot Ecosystem Contributors"},"300":{"body":"Existing Encointer runtime repo","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Prior Art and References","id":"300","title":"Prior Art and References"},"301":{"body":"None identified","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Unresolved Questions","id":"301","title":"Unresolved Questions"},"302":{"body":"More info on Encointer: encointer.org","breadcrumbs":"RFC-0022: Adopt Encointer Runtime » Future Directions and Related Material","id":"302","title":"Future Directions and Related Material"},"303":{"body":"(source) Table of Contents RFC-0032: Minimal Relay Summary Motivation Stakeholders Explanation Migrations Interfaces Functional Architecture Resource Allocation Deployment Kusama Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 20 September 2023 Description Proposal to minimise Relay Chain functionality. Authors Joe Petrowski, Gavin Wood","breadcrumbs":"RFC-0032: Minimal Relay » RFC-0032: Minimal Relay","id":"303","title":"RFC-0032: Minimal Relay"},"304":{"body":"The Relay Chain contains most of the core logic for the Polkadot network. While this was necessary prior to the launch of parachains and development of XCM, most of this logic can exist in parachains. This is a proposal to migrate several subsystems into system parachains.","breadcrumbs":"RFC-0032: Minimal Relay » Summary","id":"304","title":"Summary"},"305":{"body":"Polkadot's scaling approach allows many distinct state machines (known generally as parachains) to operate with common guarantees about the validity and security of their state transitions. Polkadot provides these common guarantees by executing the state transitions on a strict subset (a backing group) of the Relay Chain's validator set. However, state transitions on the Relay Chain need to be executed by all validators. If any of those state transitions can occur on parachains, then the resources of the complement of a single backing group could be used to offer more cores. As in, they could be offering more coretime (a.k.a. blockspace) to the network. By minimising state transition logic on the Relay Chain by migrating it into \"system chains\" -- a set of parachains that, with the Relay Chain, make up the Polkadot protocol -- the Polkadot Ubiquitous Computer can maximise its primary offering: secure blockspace.","breadcrumbs":"RFC-0032: Minimal Relay » Motivation","id":"305","title":"Motivation"},"306":{"body":"Parachains that interact with affected logic on the Relay Chain; Core protocol and XCM format developers; Tooling, block explorer, and UI developers.","breadcrumbs":"RFC-0032: Minimal Relay » Stakeholders","id":"306","title":"Stakeholders"},"307":{"body":"The following pallets and subsystems are good candidates to migrate from the Relay Chain: Identity Balances Staking Staking Election Provider Bags List NIS Nomination Pools Fast Unstake Governance Treasury and Bounties Conviction Voting Referenda Note: The Auctions and Crowdloan pallets will be replaced by Coretime, its system chain and interface described in RFC-1 and RFC-5, respectively.","breadcrumbs":"RFC-0032: Minimal Relay » Explanation","id":"307","title":"Explanation"},"308":{"body":"Some subsystems are simpler to move than others. For example, migrating Identity can be done by simply preventing state changes in the Relay Chain, using the Identity-related state as the genesis for a new chain, and launching that new chain with the genesis and logic (pallet) needed. Other subsystems cannot experience any downtime like this because they are essential to the network's functioning, like Staking and Governance. However, these can likely coexist with a similarly-permissioned system chain for some time, much like how \"Gov1\" and \"OpenGov\" coexisted at the latter's introduction. Specific migration plans will be included in release notes of runtimes from the Polkadot Fellowship when beginning the work of migrating a particular subsystem.","breadcrumbs":"RFC-0032: Minimal Relay » Migrations","id":"308","title":"Migrations"},"309":{"body":"The Relay Chain, in many cases, will still need to interact with these subsystems, especially Staking and Governance. These subsystems will require making some APIs available either via dispatchable calls accessible to XCM Transact or possibly XCM Instructions in future versions. For example, Staking provides a pallet-API to register points (e.g. for block production) and offences (e.g. equivocation). With Staking in a system chain, that chain would need to allow the Relay Chain to update validator points periodically so that it can correctly calculate rewards. A pub-sub protocol may also lend itself to these types of interactions.","breadcrumbs":"RFC-0032: Minimal Relay » Interfaces","id":"309","title":"Interfaces"},"31":{"body":"This section outlines the notation and conventions adopted throughout this document to ensure clarity and consistency.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3. Notation and Convention","id":"31","title":"3. Notation and Convention"},"310":{"body":"This RFC proposes that system chains form individual components within the system's architecture and that these components are chosen as functional groups. This approach allows synchronous composibility where it is most valuable, but isolates logic in such a way that provides flexibility for optimal resource allocation (see Resource Allocation ). For the subsystems discussed in this RFC, namely Identity, Governance, and Staking, this would mean: People Chain, for identity and personhood logic, providing functionality related to the attributes of single actors; Governance Chain, for governance and system collectives, providing functionality for pluralities to express their voices within the system; Staking Chain, for Polkadot's staking system, including elections, nominations, reward distribution, slashing, and non-interactive staking; and Asset Hub, for fungible and non-fungible assets, including DOT. The Collectives chain and Asset Hub already exist, so implementation of this RFC would mean two new chains (People and Staking), with Governance moving to the currently-known-as Collectives chain and Asset Hub being increasingly used for DOT over the Relay Chain. Note that one functional group will likely include many pallets, as we do not know how pallet configurations and interfaces will evolve over time.","breadcrumbs":"RFC-0032: Minimal Relay » Functional Architecture","id":"310","title":"Functional Architecture"},"311":{"body":"The system should minimise wasted blockspace. These three (and other) subsystems may not each consistently require a dedicated core. However, core scheduling is far more agile than functional grouping. While migrating functionality from one chain to another can be a multi-month endeavour, cores can be rescheduled almost on-the-fly. Migrations are also breaking changes to some use cases, for example other parachains that need to route XCM programs to particular chains. It is thus preferable to do them a single time in migrating off the Relay Chain, reducing the risk of needing parachain splits in the future. Therefore, chain boundaries should be based on functional grouping where synchronous composibility is most valuable; and efficient resource allocation should be managed by the core scheduling protocol. Many of these system chains (including Asset Hub) could often share a single core in a semi-round robin fashion (the coretime may not be uniform). When needed, for example during NPoS elections or slashing events, the scheduler could allocate a dedicated core to the chain in need of more throughput.","breadcrumbs":"RFC-0032: Minimal Relay » Resource Allocation","id":"311","title":"Resource Allocation"},"312":{"body":"Actual migrations should happen based on some prioritization. This RFC proposes to migrate Identity, Staking, and Governance as the systems to work on first. A brief discussion on the factors involved in each one: Identity Identity will be one of the simpler pallets to migrate into a system chain, as its logic is largely self-contained and it does not \"share\" balances with other subsystems. As in, any DOT is held in reserve as a storage deposit and cannot be simultaneously used the way locked DOT can be locked for multiple purposes. Therefore, migration can take place as follows: The pallet can be put in a locked state, blocking most calls to the pallet and preventing updates to identity info. The frozen state will form the genesis of a new system parachain. Functions will be added to the pallet that allow migrating the deposit to the parachain. The parachain deposit is on the order of 1/100th of the Relay Chain's. Therefore, this will result in freeing up Relay State as well as most of each user's reserved balance. The pallet and any leftover state can be removed from the Relay Chain. User interfaces that render Identity information will need to source their data from the new system parachain. Note: In the future, it may make sense to decommission Kusama's Identity chain and do all account identities via Polkadot's. However, the Kusama chain will serve as a dress rehearsal for Polkadot. Staking Migrating the staking subsystem will likely be the most complex technical undertaking, as the Staking system cannot stop (the system MUST always have a validator set) nor run in parallel (the system MUST have only one validator set) and the subsystem itself is made up of subsystems in the runtime and the node. For example, if offences are reported to the Staking parachain, validator nodes will need to submit their reports there. Handling balances also introduces complications. The same balance can be used for staking and governance. Ideally, all balances stay on Asset Hub, and only report \"credits\" to system chains like Staking and Governance. However, staking mutates balances by issuing new DOT on era changes and for rewards. Allowing DOT directly on the Staking parachain would simplify staking changes. Given the complexity, it would be pragmatic to include the Balances pallet in the Staking parachain in its first version. Any other systems that use overlapping locks, most notably governance, will need to recognise DOT held on both Asset Hub and the Staking parachain. There is more discussion about staking in a parachain in Moving Staking off the Relay Chain . Governance Migrating governance into a parachain will be less complicated than staking. Most of the primitives needed for the migration already exist. The Treasury supports spending assets on remote chains and collectives like the Polkadot Technical Fellowship already function in a parachain. That is, XCM already provides the ability to express system origins across chains. Therefore, actually moving the governance logic into a parachain will be simple. It can run in parallel with the Relay Chain's governance, which can be removed when the parachain has demonstrated sufficient functionality. It's possible that the Relay Chain maintain a Root-level emergency track for situations like parachains halting . The only complication arises from the fact that both Asset Hub and the Staking parachain will have DOT balances; therefore, the Governance chain will need to be able to credit users' voting power based on balances from both locations. This is not expected to be difficult to handle.","breadcrumbs":"RFC-0032: Minimal Relay » Deployment","id":"312","title":"Deployment"},"313":{"body":"Although Polkadot and Kusama both have system chains running, they have to date only been used for introducing new features or bodies, for example fungible assets or the Technical Fellowship. There has not yet been a migration of logic/state from the Relay Chain into a parachain. Given its more realistic network conditions than testnets, Kusama is the best stage for rehearsal. In the case of identity, Polkadot's system may be sufficient for the ecosystem. Therefore, Kusama should be used to test the migration of logic and state from Relay Chain to parachain, but these features may be (at the will of Kusama's governance) dropped from Kusama entirely after a successful migration on Polkadot. For Governance, Polkadot already has the Collectives parachain, which would become the Governance parachain. The entire group of DOT holders is itself a collective (the legislative body), and governance provides the means to express voice. Launching a Kusama Governance chain would be sensible to rehearse a migration. The Staking subsystem is perhaps where Kusama would provide the most value in its canary capacity. Staking is the subsystem most constrained by PoV limits. Ensuring that elections, payouts, session changes, offences/slashes, etc. work in a parachain on Kusama -- with its larger validator set -- will give confidence to the chain's robustness on Polkadot.","breadcrumbs":"RFC-0032: Minimal Relay » Kusama","id":"313","title":"Kusama"},"314":{"body":"These subsystems will have reduced resources in cores than on the Relay Chain. Staking in particular may require some optimizations to deal with constraints.","breadcrumbs":"RFC-0032: Minimal Relay » Drawbacks","id":"314","title":"Drawbacks"},"315":{"body":"Standard audit/review requirements apply. More powerful multi-chain integration test tools would be useful in developement.","breadcrumbs":"RFC-0032: Minimal Relay » Testing, Security, and Privacy","id":"315","title":"Testing, Security, and Privacy"},"316":{"body":"Describe the impact of the proposal on the exposed functionality of Polkadot.","breadcrumbs":"RFC-0032: Minimal Relay » Performance, Ergonomics, and Compatibility","id":"316","title":"Performance, Ergonomics, and Compatibility"},"317":{"body":"This is an optimization. The removal of public/user transactions on the Relay Chain ensures that its primary resources are allocated to system performance.","breadcrumbs":"RFC-0032: Minimal Relay » Performance","id":"317","title":"Performance"},"318":{"body":"This proposal alters very little for coretime users (e.g. parachain developers). Application developers will need to interact with multiple chains, making ergonomic light client tools particularly important for application development. For existing parachains that interact with these subsystems, they will need to configure their runtimes to recognize the new locations in the network.","breadcrumbs":"RFC-0032: Minimal Relay » Ergonomics","id":"318","title":"Ergonomics"},"319":{"body":"Implementing this proposal will require some changes to pallet APIs and/or a pub-sub protocol. Application developers will need to interact with multiple chains in the network.","breadcrumbs":"RFC-0032: Minimal Relay » Compatibility","id":"319","title":"Compatibility"},"32":{"body":"Data structures are primarily defined using standard ASN.1 , syntax with few exceptions: Fixed width integer types are not explicitly defined by ASN.1 standard. Within this document, U denotes a n-bit unsigned integer. Unless explicitly noted, all types must be serialized using SCALE codec. To ensure interoperability of serialized structures, the order of the fields must match the structures definitions found within this document.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3.1. Data Structures Definitions and Encoding","id":"32","title":"3.1. Data Structures Definitions and Encoding"},"320":{"body":"Transactionless Relay-chain Moving Staking off the Relay Chain","breadcrumbs":"RFC-0032: Minimal Relay » Prior Art and References","id":"320","title":"Prior Art and References"},"321":{"body":"There remain some implementation questions, like how to use balances for both Staking and Governance. See, for example, Moving Staking off the Relay Chain .","breadcrumbs":"RFC-0032: Minimal Relay » Unresolved Questions","id":"321","title":"Unresolved Questions"},"322":{"body":"Ideally the Relay Chain becomes transactionless, such that not even balances are represented there. With Staking and Governance off the Relay Chain, this is not an unreasonable next step. With Identity on Polkadot, Kusama may opt to drop its People Chain.","breadcrumbs":"RFC-0032: Minimal Relay » Future Directions and Related Material","id":"322","title":"Future Directions and Related Material"},"323":{"body":"(source) Table of Contents RFC-0050: Fellowship Salaries Summary Motivation Stakeholders Explanation Salary Asset Projections Updates Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Start Date 15 November 2023 Description Proposal to set rank-based Fellowship salary levels. Authors Joe Petrowski, Gavin Wood","breadcrumbs":"RFC-0050: Fellowship Salaries » RFC-0050: Fellowship Salaries","id":"323","title":"RFC-0050: Fellowship Salaries"},"324":{"body":"The Fellowship Manifesto states that members should receive a monthly allowance on par with gross income in OECD countries. This RFC proposes concrete amounts.","breadcrumbs":"RFC-0050: Fellowship Salaries » Summary","id":"324","title":"Summary"},"325":{"body":"One motivation for the Technical Fellowship is to provide an incentive mechanism that can induct and retain technical talent for the continued progress of the network. In order for members to uphold their commitment to the network, they should receive support to ensure that their needs are met such that they have the time to dedicate to their work on Polkadot. Given the high expectations of Fellows, it is reasonable to consider contributions and requirements on par with a full-time job. Providing a livable wage to those making such contributions makes it pragmatic to work full-time on Polkadot. Note: Goals of the Fellowship, expectations for each Dan, and conditions for promotion and demotion are all explained in the Manifesto. This RFC is only to propose concrete values for allowances.","breadcrumbs":"RFC-0050: Fellowship Salaries » Motivation","id":"325","title":"Motivation"},"326":{"body":"Fellowship members Polkadot Treasury","breadcrumbs":"RFC-0050: Fellowship Salaries » Stakeholders","id":"326","title":"Stakeholders"},"327":{"body":"This RFC proposes agreeing on salaries relative to a single level, the III Dan. As such, changes to the amount or asset used would only be on a single value, and all others would adjust relatively. A III Dan is someone whose contributions match the expectations of a full-time individual contributor. The salary at this level should be reasonably close to averages in OECD countries. Dan Factor I 0.125 II 0.25 III 1 IV 1.5 V 2.0 VI 2.5 VII 2.5 VIII 2.5 IX 2.5 Note that there is a sizable increase between II Dan (Proficient) and III Dan (Fellow). By the third Dan, it is generally expected that one is working on Polkadot as their primary focus in a full-time capacity.","breadcrumbs":"RFC-0050: Fellowship Salaries » Explanation","id":"327","title":"Explanation"},"328":{"body":"Although the Manifesto (Section 8) specifies a monthly allowance in DOT, this RFC proposes the use of USDT instead. The allowance is meant to provide members stability in meeting their day-to-day needs and recognize contributions. Using USDT provides more stability and less speculation. This RFC proposes that a III Dan earn 80,000 USDT per year. The salary at this level is commensurate with average salaries in OECD countries (note: 77,000 USD in the U.S., with an average engineer at 100,000 USD). The other ranks would thus earn: Dan Annual Salary I 10,000 II 20,000 III 80,000 IV 120,000 V 160,000 VI 200,000 VII 200,000 VIII 200,000 IX 200,000 The salary levels for Architects (IV, V, and VI Dan) are typical of senior engineers. Allowances will be managed by the Salary pallet.","breadcrumbs":"RFC-0050: Fellowship Salaries » Salary Asset","id":"328","title":"Salary Asset"},"329":{"body":"Based on the current membership, the maximum yearly and monthly costs are shown below: Dan Salary Members Yearly Monthly I 10,000 27 270,000 22,500 II 20,000 11 220,000 18,333 III 80,000 8 640,000 53,333 IV 120,000 3 360,000 30,000 V 160,000 5 800,000 66,667 VI 200,000 3 600,000 50,000 > VI 200,000 0 0 0 Total 2,890,000 240,833 Note that these are the maximum amounts; members may choose to take a passive (lower) level. On the other hand, more people will likely join the Fellowship in the coming years.","breadcrumbs":"RFC-0050: Fellowship Salaries » Projections","id":"329","title":"Projections"},"33":{"body":"It is advantageous to make use of code snippets as part of the protocol description. As a convention, the code is formatted in a style similar to Rust , and can make use of the following set of predefined functions: BYTES(x: T): returns an OCTET_STRING that represents the raw byte array of the object x with type T. If T is a VisibleString (ASCII string), it returns the sequence of octets of its ASCII representation. If T is U, it returns the little-endian encoding of the integer U as n/8 octets. U(x: OCTET_STRING): returns a U interpreting x as the little-endian encoding of a n bits unsigned integer. SCALE(x: T): returns an OCTET_STRING representing the SCALE encoding of x with type T. BLAKE2(n: U32, x: OCTET_STRING): returns the standard Blake2b n bytes hash of x as an OCTET_STRING (note this is not equivalent to the truncation of the full 64 bytes Blake2b hash). CONCAT(x₀: OCTET_STRING, ..., xₖ: OCTET_STRING): returns the concatenation of the inputs as an OCTET_STRING. LENGTH(x: OCTET_STRING): returns the number of octets in x as an U32.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3.2. Pseudo-Code","id":"33","title":"3.2. Pseudo-Code"},"330":{"body":"Updates to these levels, whether relative ratios, the asset used, or the amount, shall be done via RFC.","breadcrumbs":"RFC-0050: Fellowship Salaries » Updates","id":"330","title":"Updates"},"331":{"body":"By not using DOT for payment, the protocol relies on the stability of other assets and the ability to acquire them. However, the asset of choice can be changed in the future.","breadcrumbs":"RFC-0050: Fellowship Salaries » Drawbacks","id":"331","title":"Drawbacks"},"332":{"body":"N/A.","breadcrumbs":"RFC-0050: Fellowship Salaries » Testing, Security, and Privacy","id":"332","title":"Testing, Security, and Privacy"},"333":{"body":"","breadcrumbs":"RFC-0050: Fellowship Salaries » Performance, Ergonomics, and Compatibility","id":"333","title":"Performance, Ergonomics, and Compatibility"},"334":{"body":"N/A","breadcrumbs":"RFC-0050: Fellowship Salaries » Performance","id":"334","title":"Performance"},"335":{"body":"N/A","breadcrumbs":"RFC-0050: Fellowship Salaries » Ergonomics","id":"335","title":"Ergonomics"},"336":{"body":"N/A","breadcrumbs":"RFC-0050: Fellowship Salaries » Compatibility","id":"336","title":"Compatibility"},"337":{"body":"The Polkadot Fellowship Manifesto OECD Average Wages Indeed: Average Salary for Engineers, United States","breadcrumbs":"RFC-0050: Fellowship Salaries » Prior Art and References","id":"337","title":"Prior Art and References"},"338":{"body":"None at present.","breadcrumbs":"RFC-0050: Fellowship Salaries » Unresolved Questions","id":"338","title":"Unresolved Questions"},"339":{"body":"(source) Table of Contents RFC-0056: Enforce only one transaction per notification Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-11-30 Description Modify the transactions notifications protocol to always send only one transaction at a time Authors Pierre Krieger","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » RFC-0056: Enforce only one transaction per notification","id":"339","title":"RFC-0056: Enforce only one transaction per notification"},"34":{"body":"More types and helper functions are introduced incrementally as they become relevant within the document's context. We find this approach more agile, especially given that the set of types used is not overly complex.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 3.3. Incremental Introduction of Types and Functions","id":"34","title":"3.3. Incremental Introduction of Types and Functions"},"340":{"body":"When two peers connect to each other, they open (amongst other things) a so-called \"notifications protocol\" substream dedicated to gossiping transactions to each other. Each notification on this substream currently consists in a SCALE-encoded Vec where Transaction is defined in the runtime. This RFC proposes to modify the format of the notification to become (Compact(1), Transaction). This maintains backwards compatibility, as this new format decodes as a Vec of length equal to 1.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Summary","id":"340","title":"Summary"},"341":{"body":"There exists three motivations behind this change: It is technically impossible to decode a SCALE-encoded Vec into a list of SCALE-encoded transactions without knowing how to decode a Transaction. That's because a Vec consists in several Transactions one after the other in memory, without any delimiter that indicates the end of a transaction and the start of the next. Unfortunately, the format of a Transaction is runtime-specific. This means that the code that receives notifications is necessarily tied to a specific runtime, and it is not possible to write runtime-agnostic code. Notifications protocols are already designed to be optimized to send many items. Currently, when it comes to transactions, each item is a Vec that consists in multiple sub-items of type Transaction. This two-steps hierarchy is completely unnecessary, and was originally written at a time when the networking protocol of Substrate didn't have proper multiplexing. It makes the implementation way more straight-forward by not having to repeat code related to back-pressure. See explanations below.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Motivation","id":"341","title":"Motivation"},"342":{"body":"Low-level developers.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Stakeholders","id":"342","title":"Stakeholders"},"343":{"body":"To give an example, if you send one notification with three transactions, the bytes that are sent on the wire are: concat( leb128(total-size-in-bytes-of-the-rest), scale(compact(3)), scale(transaction1), scale(transaction2), scale(transaction3)\n) But you can also send three notifications of one transaction each, in which case it is: concat( leb128(size(scale(transaction1)) + 1), scale(compact(1)), scale(transaction1), leb128(size(scale(transaction2)) + 1), scale(compact(1)), scale(transaction2), leb128(size(scale(transaction3)) + 1), scale(compact(1)), scale(transaction3)\n) Right now the sender can choose which of the two encoding to use. This RFC proposes to make the second encoding mandatory. The format of the notification would become a SCALE-encoded (Compact(1), Transaction). A SCALE-compact encoded 1 is one byte of value 4. In other words, the format of the notification would become concat(&[4], scale_encoded_transaction). This is equivalent to forcing the Vec to always have a length of 1, and I expect the Substrate implementation to simply modify the sending side to add a for loop that sends one notification per item in the Vec. As explained in the motivation section, this allows extracting scale(transaction) items without having to know how to decode them. By \"flattening\" the two-steps hierarchy, an implementation only needs to back-pressure individual notifications rather than back-pressure notifications and transactions within notifications.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Explanation","id":"343","title":"Explanation"},"344":{"body":"This RFC chooses to maintain backwards compatibility at the cost of introducing a very small wart (the Compact(1)). An alternative could be to introduce a new version of the transactions notifications protocol that sends one Transaction per notification, but this is significantly more complicated to implement and can always be done later in case the Compact(1) is bothersome.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Drawbacks","id":"344","title":"Drawbacks"},"345":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Testing, Security, and Privacy","id":"345","title":"Testing, Security, and Privacy"},"346":{"body":"","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Performance, Ergonomics, and Compatibility","id":"346","title":"Performance, Ergonomics, and Compatibility"},"347":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Performance","id":"347","title":"Performance"},"348":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Ergonomics","id":"348","title":"Ergonomics"},"349":{"body":"The change is backwards compatible if done in two steps: modify the sender to always send one transaction per notification, then, after a while, modify the receiver to enforce the new format.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Compatibility","id":"349","title":"Compatibility"},"35":{"body":"The timeline is segmented into a sequentially ordered sequence of slots . This entire sequence of slots is then further partitioned into distinct segments known as epochs . The Sassafras protocol aims to map each slot within an epoch to the designated validators for that epoch, utilizing a ticketing system. The protocol operation can be roughly divided into five phases:","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4. Protocol Introduction","id":"35","title":"4. Protocol Introduction"},"350":{"body":"Irrelevant.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Prior Art and References","id":"350","title":"Prior Art and References"},"351":{"body":"None.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Unresolved Questions","id":"351","title":"Unresolved Questions"},"352":{"body":"None. This is a simple isolated change.","breadcrumbs":"RFC-0056: Enforce only one transaction per notification » Future Directions and Related Material","id":"352","title":"Future Directions and Related Material"},"353":{"body":"(source) Table of Contents RFC-0004: Remove the host-side runtime memory allocator Summary Motivation Stakeholders Explanation New host functions Other changes Drawbacks Prior Art Unresolved Questions Future Possibilities Start Date 2023-07-04 Description Update the runtime-host interface to no longer make use of a host-side allocator Authors Pierre Krieger","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » RFC-0004: Remove the host-side runtime memory allocator","id":"353","title":"RFC-0004: Remove the host-side runtime memory allocator"},"354":{"body":"Update the runtime-host interface to no longer make use of a host-side allocator.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Summary","id":"354","title":"Summary"},"355":{"body":"The heap allocation of the runtime is currently controlled by the host using a memory allocator on the host side. The API of many host functions consists in allocating a buffer. For example, when calling ext_hashing_twox_256_version_1, the host allocates a 32 bytes buffer using the host allocator, and returns a pointer to this buffer to the runtime. The runtime later has to call ext_allocator_free_version_1 on this pointer in order to free the buffer. Even though no benchmark has been done, it is pretty obvious that this design is very inefficient. To continue with the example of ext_hashing_twox_256_version_1, it would be more efficient to instead write the output hash to a buffer that was allocated by the runtime on its stack and passed by pointer to the function. Allocating a buffer on the stack in the worst case scenario simply consists in decreasing a number, and in the best case scenario is free. Doing so would save many Wasm memory reads and writes by the allocator, and would save a function call to ext_allocator_free_version_1. Furthermore, the existence of the host-side allocator has become questionable over time. It is implemented in a very naive way, and for determinism and backwards compatibility reasons it needs to be implemented exactly identically in every client implementation. Runtimes make substantial use of heap memory allocations, and each allocation needs to go twice through the runtime <-> host boundary (once for allocating and once for freeing). Moving the allocator to the runtime side, while it would increase the size of the runtime, would be a good idea. But before the host-side allocator can be deprecated, all the host functions that make use of it need to be updated to not use it.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Motivation","id":"355","title":"Motivation"},"356":{"body":"No attempt was made at convincing stakeholders.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Stakeholders","id":"356","title":"Stakeholders"},"357":{"body":"","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Explanation","id":"357","title":"Explanation"},"358":{"body":"This section contains a list of new host functions to introduce. (func $ext_storage_read_version_2 (param $key i64) (param $value_out i64) (param $offset i32) (result i64))\n(func $ext_default_child_storage_read_version_2 (param $child_storage_key i64) (param $key i64) (param $value_out i64) (param $offset i32) (result i64)) The signature and behaviour of ext_storage_read_version_2 and ext_default_child_storage_read_version_2 is identical to their version 1 counterparts, but the return value has a different meaning. The new functions directly return the number of bytes that were written in the value_out buffer. If the entry doesn't exist, a value of -1 is returned. Given that the host must never write more bytes than the size of the buffer in value_out, and that the size of this buffer is expressed as a 32 bits number, a 64bits value of -1 is not ambiguous. The runtime execution stops with an error if value_out is outside of the range of the memory of the virtual machine, even if the size of the buffer is 0 or if the amount of data to write would be 0 bytes. (func $ext_storage_next_key_version_2 (param $key i64) (param $out i64) (return i32))\n(func $ext_default_child_storage_next_key_version_2 (param $child_storage_key i64) (param $key i64) (param $out i64) (return i32)) The behaviour of these functions is identical to their version 1 counterparts. Instead of allocating a buffer, writing the next key to it, and returning a pointer to it, the new version of these functions accepts an out parameter containing a pointer-size to the memory location where the host writes the output. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. These functions return the size, in bytes, of the next key, or 0 if there is no next key. If the size of the next key is larger than the buffer in out, the bytes of the key that fit the buffer are written to out and any extra byte that doesn't fit is discarded. Some notes: It is never possible for the next key to be an empty buffer, because an empty key has no preceding key. For this reason, a return value of 0 can unambiguously be used to indicate the lack of next key. The ext_storage_next_key_version_2 and ext_default_child_storage_next_key_version_2 are typically used in order to enumerate keys that starts with a certain prefix. Given that storage keys are constructed by concatenating hashes, the runtime is expected to know the size of the next key and can allocate a buffer that can fit said key. When the next key doesn't belong to the desired prefix, it might not fit the buffer, but given that the start of the key is written to the buffer anyway this can be detected in order to avoid calling the function a second time with a larger buffer. (func $ext_hashing_keccak_256_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_keccak_512_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_sha2_256_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_blake2_128_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_blake2_256_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_twox_64_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_twox_128_version_2 (param $data i64) (param $out i32))\n(func $ext_hashing_twox_256_version_2 (param $data i64) (param $out i32))\n(func $ext_trie_blake2_256_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_trie_blake2_256_ordered_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_trie_keccak_256_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_trie_keccak_256_ordered_root_version_3 (param $data i64) (param $version i32) (param $out i32))\n(func $ext_default_child_storage_root_version_3 (param $child_storage_key i64) (param $out i32))\n(func $ext_crypto_ed25519_generate_version_2 (param $key_type_id i32) (param $seed i64) (param $out i32))\n(func $ext_crypto_sr25519_generate_version_2 (param $key_type_id i32) (param $seed i64) (param $out i32) (return i32))\n(func $ext_crypto_ecdsa_generate_version_2 (param $key_type_id i32) (param $seed i64) (param $out i32) (return i32)) The behaviour of these functions is identical to their version 1 or version 2 counterparts. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the new version of these functions accepts an out parameter containing the memory location where the host writes the output. The output is always of a size known at compilation time. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. (func $ext_default_child_storage_root_version_3 (param $child_storage_key i64) (param $out i32))\n(func $ext_storage_root_version_3 (param $out i32)) The behaviour of these functions is identical to their version 1 and version 2 counterparts. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the new versions of these functions accepts an out parameter containing the memory location where the host writes the output. The output is always of a size known at compilation time. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. I have taken the liberty to take the version 1 of these functions as a base rather than the version 2, as a PPP deprecating the version 2 of these functions has previously been accepted: https://github.com/w3f/PPPs/pull/6 . (func $ext_storage_clear_prefix_version_3 (param $prefix i64) (param $limit i64) (param $removed_count_out i32) (return i32))\n(func $ext_default_child_storage_clear_prefix_version_3 (param $child_storage_key i64) (param $prefix i64) (param $limit i64) (param $removed_count_out i32) (return i32))\n(func $ext_default_child_storage_kill_version_4 (param $child_storage_key i64) (param $limit i64) (param $removed_count_out i32) (return i32)) The behaviour of these functions is identical to their version 2 and 3 counterparts. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the version 3 and 4 of these functions accepts a removed_count_out parameter containing the memory location to a 8 bytes buffer where the host writes the number of keys that were removed in little endian. The runtime execution stops with an error if removed_count_out is outside of the range of the memory of the virtual machine. The functions return 1 to indicate that there are keys remaining, and 0 to indicate that all keys have been removed. Note that there is an alternative proposal to add new host functions with the same names: https://github.com/w3f/PPPs/pull/7 . This alternative doesn't conflict with this one except for the version number. One proposal or the other will have to use versions 4 and 5 rather than 3 and 4. (func $ext_crypto_ed25519_sign_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i32))\n(func $ext_crypto_sr25519_sign_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i32))\nfunc $ext_crypto_ecdsa_sign_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i32))\n(func $ext_crypto_ecdsa_sign_prehashed_version_2 (param $key_type_id i32) (param $key i32) (param $msg i64) (param $out i32) (return i64)) The behaviour of these functions is identical to their version 1 counterparts. The new versions of these functions accept an out parameter containing the memory location where the host writes the signature. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. The signatures are always of a size known at compilation time. On success, these functions return 0. If the public key can't be found in the keystore, these functions return 1 and do not write anything to out. Note that the return value is 0 on success and 1 on failure, while the previous version of these functions write 1 on success (as it represents a SCALE-encoded Some) and 0 on failure (as it represents a SCALE-encoded None). Returning 0 on success and non-zero on failure is consistent with common practices in the C programming language and is less surprising than the opposite. (func $ext_crypto_secp256k1_ecdsa_recover_version_3 (param $sig i32) (param $msg i32) (param $out i32) (return i64))\n(func $ext_crypto_secp256k1_ecdsa_recover_compressed_version_3 (param $sig i32) (param $msg i32) (param $out i32) (return i64)) The behaviour of these functions is identical to their version 2 counterparts. The new versions of these functions accept an out parameter containing the memory location where the host writes the signature. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. The signatures are always of a size known at compilation time. On success, these functions return 0. On failure, these functions return a non-zero value and do not write anything to out. The non-zero value written on failure is: 1: incorrect value of R or S 2: incorrect value of V 3: invalid signature These values are equal to the values returned on error by the version 2 (see https://spec.polkadot.network/chap-host-api#defn-ecdsa-verify-error ), but incremented by 1 in order to reserve 0 for success. (func $ext_crypto_ed25519_num_public_keys_version_1 (param $key_type_id i32) (return i32))\n(func $ext_crypto_ed25519_public_key_version_2 (param $key_type_id i32) (param $key_index i32) (param $out i32))\n(func $ext_crypto_sr25519_num_public_keys_version_1 (param $key_type_id i32) (return i32))\n(func $ext_crypto_sr25519_public_key_version_2 (param $key_type_id i32) (param $key_index i32) (param $out i32))\n(func $ext_crypto_ecdsa_num_public_keys_version_1 (param $key_type_id i32) (return i32))\n(func $ext_crypto_ecdsa_public_key_version_2 (param $key_type_id i32) (param $key_index i32) (param $out i32)) The functions superceded the ext_crypto_ed25519_public_key_version_1, ext_crypto_sr25519_public_key_version_1, and ext_crypto_ecdsa_public_key_version_1 host functions. Instead of calling ext_crypto_ed25519_public_key_version_1 in order to obtain the list of all keys at once, the runtime should instead call ext_crypto_ed25519_num_public_keys_version_1 in order to obtain the number of public keys available, then ext_crypto_ed25519_public_key_version_2 repeatedly. The ext_crypto_ed25519_public_key_version_2 function writes the public key of the given key_index to the memory location designated by out. The key_index must be between 0 (included) and n (excluded), where n is the value returned by ext_crypto_ed25519_num_public_keys_version_1. Execution must trap if n is out of range. The same explanations apply for ext_crypto_sr25519_public_key_version_1 and ext_crypto_ecdsa_public_key_version_1. Host implementers should be aware that the list of public keys (including their ordering) must not change while the runtime is running. This is most likely done by copying the list of all available keys either at the start of the execution or the first time the list is accessed. (func $ext_offchain_http_request_start_version_2 (param $method i64) (param $uri i64) (param $meta i64) (result i32)) The behaviour of this function is identical to its version 1 counterpart. Instead of allocating a buffer, writing the request identifier in it, and returning a pointer to it, the version 2 of this function simply returns the newly-assigned identifier to the HTTP request. On failure, this function returns -1. An identifier of -1 is invalid and is reserved to indicate failure. (func $ext_offchain_http_request_write_body_version_2 (param $method i64) (param $uri i64) (param $meta i64) (result i32))\n(func $ext_offchain_http_response_read_body_version_2 (param $request_id i32) (param $buffer i64) (param $deadline i64) (result i64)) The behaviour of these functions is identical to their version 1 counterpart. Instead of allocating a buffer, writing two bytes in it, and returning a pointer to it, the new version of these functions simply indicates what happened: For ext_offchain_http_request_write_body_version_2, 0 on success. For ext_offchain_http_response_read_body_version_2, 0 or a non-zero number of bytes on success. -1 if the deadline was reached. -2 if there was an I/O error while processing the request. -3 if the identifier of the request is invalid. These values are equal to the values returned on error by the version 1 (see https://spec.polkadot.network/chap-host-api#defn-http-error ), but tweaked in order to reserve positive numbers for success. When it comes to ext_offchain_http_response_read_body_version_2, the host implementers must not read too much data at once in order to not create ambiguity in the returned value. Given that the size of the buffer is always inferior or equal to 4 GiB, this is not a problem. (func $ext_offchain_http_response_wait_version_2 (param $ids i64) (param $deadline i64) (param $out i32)) The behaviour of this function is identical to its version 1 counterpart. Instead of allocating a buffer, writing the output to it, and returning a pointer to it, the new version of this function accepts an out parameter containing the memory location where the host writes the output. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. The encoding of the response code is also modified compared to its version 1 counterpart and each response code now encodes to 4 little endian bytes as described below: 100-999: the request has finished with the given HTTP status code. -1 if the deadline was reached. -2 if there was an I/O error while processing the request. -3 if the identifier of the request is invalid. The buffer passed to out must always have a size of 4 * n where n is the number of elements in the ids. (func $ext_offchain_http_response_header_name_version_1 (param $request_id i32) (param $header_index i32) (param $out i64) (result i64))\n(func $ext_offchain_http_response_header_value_version_1 (param $request_id i32) (param $header_index i32) (param $out i64) (result i64)) These functions supercede the ext_offchain_http_response_headers_version_1 host function. Contrary to ext_offchain_http_response_headers_version_1, only one header indicated by header_index can be read at a time. Instead of calling ext_offchain_http_response_headers_version_1 once, the runtime should call ext_offchain_http_response_header_name_version_1 and ext_offchain_http_response_header_value_version_1 multiple times with an increasing header_index, until a value of -1 is returned. These functions accept an out parameter containing a pointer-size to the memory location where the header name or value should be written. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine, even if the function wouldn't write anything to out. These functions return the size, in bytes, of the header name or header value. If request doesn't exist or is in an invalid state (as documented for ext_offchain_http_response_headers_version_1) or the header_index is out of range, a value of -1 is returned. Given that the host must never write more bytes than the size of the buffer in out, and that the size of this buffer is expressed as a 32 bits number, a 64bits value of -1 is not ambiguous. If the buffer in out is too small to fit the entire header name of value, only the bytes that fit are written and the rest are discarded. (func $ext_offchain_submit_transaction_version_2 (param $data i64) (return i32))\n(func $ext_offchain_http_request_add_header_version_2 (param $request_id i32) (param $name i64) (param $value i64) (result i32)) Instead of allocating a buffer, writing 1 or 0 in it, and returning a pointer to it, the version 2 of these functions return 0 or 1, where 0 indicates success and 1 indicates failure. The runtime must interpret any non-0 value as failure, but the client must always return 1 in case of failure. (func $ext_offchain_local_storage_read_version_1 (param $kind i32) (param $key i64) (param $value_out i64) (param $offset i32) (result i64)) This function supercedes the ext_offchain_local_storage_get_version_1 host function, and uses an API and logic similar to ext_storage_read_version_2. It reads the offchain local storage key indicated by kind and key starting at the byte indicated by offset, and writes the value to the pointer-size indicated by value_out. The function returns the number of bytes that were written in the value_out buffer. If the entry doesn't exist, a value of -1 is returned. Given that the host must never write more bytes than the size of the buffer in value_out, and that the size of this buffer is expressed as a 32 bits number, a 64bits value of -1 is not ambiguous. The runtime execution stops with an error if value_out is outside of the range of the memory of the virtual machine, even if the size of the buffer is 0 or if the amount of data to write would be 0 bytes. (func $ext_offchain_network_peer_id_version_1 (param $out i64)) This function writes the PeerId of the local node to the memory location indicated by out. A PeerId is always 38 bytes long. The runtime execution stops with an error if out is outside of the range of the memory of the virtual machine. (func $ext_input_size_version_1 (return i64))\n(func $ext_input_read_version_1 (param $offset i64) (param $out i64)) When a runtime function is called, the host uses the allocator to allocate memory within the runtime where to write some input data. These two new host functions provide an alternative way to access the input that doesn't make use of the allocator. The ext_input_size_version_1 host function returns the size in bytes of the input data. The ext_input_read_version_1 host function copies some data from the input data to the memory of the runtime. The offset parameter indicates the offset within the input data where to start copying, and must be inferior or equal to the value returned by ext_input_size_version_1. The out parameter is a pointer-size containing the buffer where to write to. The runtime execution stops with an error if offset is strictly superior to the size of the input data, or if out is outside of the range of the memory of the virtual machine, even if the amount of data to copy would be 0 bytes.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » New host functions","id":"358","title":"New host functions"},"359":{"body":"In addition to the new host functions, this RFC proposes two changes to the runtime-host interface: The following function signature is now also accepted for runtime entry points: (func (result i64)). Runtimes no longer need to expose a constant named __heap_base. All the host functions that are being superceded by new host functions are now considered deprecated and should no longer be used. The following other host functions are similarly also considered deprecated: ext_storage_get_version_1 ext_default_child_storage_get_version_1 ext_allocator_malloc_version_1 ext_allocator_free_version_1 ext_offchain_network_state_version_1","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Other changes","id":"359","title":"Other changes"},"36":{"body":"Each of the validators associated to the target epoch generates and submits a set of candidate tickets to the blockchain. Every ticket is bundled with an anonymous proof of validity.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.1. Submission of Candidate Tickets","id":"36","title":"4.1. Submission of Candidate Tickets"},"360":{"body":"This RFC might be difficult to implement in Substrate due to the internal code design. It is not clear to the author of this RFC how difficult it would be.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Drawbacks","id":"360","title":"Drawbacks"},"361":{"body":"The API of these new functions was heavily inspired by API used by the C programming language.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Prior Art","id":"361","title":"Prior Art"},"362":{"body":"The changes in this RFC would need to be benchmarked. This involves implementing the RFC and measuring the speed difference. It is expected that most host functions are faster or equal speed to their deprecated counterparts, with the following exceptions: ext_input_size_version_1/ext_input_read_version_1 is inherently slower than obtaining a buffer with the entire data due to the two extra function calls and the extra copying. However, given that this only happens once per runtime call, the cost is expected to be negligible. The ext_crypto_*_public_keys, ext_offchain_network_state, and ext_offchain_http_* host functions are likely slightly slower than their deprecated counterparts, but given that they are used only in offchain workers this is acceptable. It is unclear how replacing ext_storage_get with ext_storage_read and ext_default_child_storage_get with ext_default_child_storage_read will impact performances. It is unclear how the changes to ext_storage_next_key and ext_default_child_storage_next_key will impact performances.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Unresolved Questions","id":"362","title":"Unresolved Questions"},"363":{"body":"After this RFC, we can remove from the source code of the host the allocator altogether in a future version, by removing support for all the deprecated host functions. This would remove the possibility to synchronize older blocks, which is probably controversial and requires a some preparations that are out of scope of this RFC.","breadcrumbs":"RFC-0004: Remove the host-side runtime memory allocator » Future Possibilities","id":"363","title":"Future Possibilities"},"364":{"body":"(source) Table of Contents RFC-0006: Dynamic Pricing for Bulk Coretime Sales Summary Motivation Requirements Stakeholders Explanation Overview Parameters Function Pseudo-code Properties of the Curve Example Configurations Drawbacks Prior Art and References Future Possibilities References Start Date July 09, 2023 Description A dynamic pricing model to adapt the regular price for bulk coretime sales Authors Tommi Enenkel (Alice und Bob) License MIT","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » RFC-0006: Dynamic Pricing for Bulk Coretime Sales","id":"364","title":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales"},"365":{"body":"This RFC proposes a dynamic pricing model for the sale of Bulk Coretime on the Polkadot UC. The proposed model updates the regular price of cores for each sale period, by taking into account the number of cores sold in the previous sale, as well as a limit of cores and a target number of cores sold. It ensures a minimum price and limits price growth to a maximum price increase factor, while also giving govenance control over the steepness of the price change curve. It allows governance to address challenges arising from changing market conditions and should offer predictable and controlled price adjustments. Accompanying visualizations are provided at [1].","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Summary","id":"365","title":"Summary"},"366":{"body":"RFC-1 proposes periodic Bulk Coretime Sales as a mechanism to sell continouos regions of blockspace (suggested to be 4 weeks in length). A number of Blockspace Regions (compare RFC-1 & RFC-3) are provided for sale to the Broker-Chain each period and shall be sold in a way that provides value-capture for the Polkadot network. The exact pricing mechanism is out of scope for RFC-1 and shall be provided by this RFC. A dynamic pricing model is needed. A limited number of Regions are offered for sale each period. The model needs to find the price for a period based on supply and demand of the previous period. The model shall give Coretime consumers predictability about upcoming price developments and confidence that Polkadot governance can adapt the pricing model to changing market conditions.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Motivation","id":"366","title":"Motivation"},"367":{"body":"The solution SHOULD provide a dynamic pricing model that increases price with growing demand and reduces price with shrinking demand. The solution SHOULD have a slow rate of change for price if the number of Regions sold is close to a given sales target and increase the rate of change as the number of sales deviates from the target. The solution SHOULD provide the possibility to always have a minimum price per Region. The solution SHOULD provide a maximum factor of price increase should the limit of Regions sold per period be reached. The solution should allow governance to control the steepness of the price function","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Requirements","id":"367","title":"Requirements"},"368":{"body":"The primary stakeholders of this RFC are: Protocol researchers and evelopers Polkadot DOT token holders Polkadot parachains teams Brokers involved in the trade of Bulk Coretime","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Stakeholders","id":"368","title":"Stakeholders"},"369":{"body":"","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Explanation","id":"369","title":"Explanation"},"37":{"body":"Each candidate ticket undergoes a validation process for the associated validity proof and compliance with other protocol-specific constraints.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.2. Validation of Candidate Tickets","id":"37","title":"4.2. Validation of Candidate Tickets"},"370":{"body":"The dynamic pricing model sets the new price based on supply and demand in the previous period. The model is a function of the number of Regions sold, piecewise-defined by two power functions. The left side ranges from 0 to the target. It represents situations where demand was lower than the target. The right side ranges from the target to limit. It represents situations where demand was higher than the target. The curve of the function forms a plateau around the target and then falls off to the left and rises up to the right. The shape of the plateau can be controlled via a scale factor for the left side and right side of the function respectively.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Overview","id":"370","title":"Overview"},"371":{"body":"From here on, we will also refer to Regions sold as 'cores' to stay congruent with RFC-1. Name Suggested Value Description Constraints BULK_LIMIT 45 The maximum number of cores being sold 0 < BULK_LIMIT BULK_TARGET 30 The target number of cores being sold 0 < BULK_TARGET <= BULK_LIMIT MIN_PRICE 1 The minimum price a core will always cost. 0 < MIN_PRICE MAX_PRICE_INCREASE_FACTOR 2 The maximum factor by which the price can change. 1 < MAX_PRICE_INCREASE_FACTOR SCALE_DOWN 2 The steepness of the left side of the function. 0 < SCALE_DOWN SCALE_UP 2 The steepness of the right side of the function. 0 < SCALE_UP","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Parameters","id":"371","title":"Parameters"},"372":{"body":"P(n) = \\begin{cases} (P_{\\text{old}} - P_{\\text{min}}) \\left(1 - \\left(\\frac{T - n}{T}\\right)^d\\right) + P_{\\text{min}} & \\text{if } n \\leq T \\\\ ((F - 1) \\cdot P_{\\text{old}} \\cdot \\left(\\frac{n - T}{L - T}\\right)^u) + P_{\\text{old}} & \\text{if } n > T \\end{cases} $P_{\\text{old}}$ is the old_price, the price of a core in the previous period. $P_{\\text{min}}$ is the MIN_PRICE, the minimum price a core will always cost. $F$ is the MAX_PRICE_INCREASE_FACTOR, the factor by which the price maximally can change from one period to another. $d$ is the SCALE_DOWN, the steepness of the left side of the function. $u$ is the SCALE_UP, the steepness of the right side of the function. $T$ is the BULK_TARGET, the target number of cores being sold. $L$ is the BULK_LIMIT, the maximum number of cores being sold. $n$ is cores_sold, the number of cores being sold. Left side The left side is a power function that describes an increasing concave downward curvature that approaches old_price. We realize this by using the form $y = a(1 - x^d)$, usually used as a downward sloping curve, but in our case flipped horizontally by letting the argument $x = \\frac{T-n}{T}$ decrease with $n$, doubly inversing the curve. This approach is chosen over a decaying exponential because it let's us a better control the shape of the plateau, especially allowing us to get a straight line by setting SCALE_DOWN to $1$. Ride side The right side is a power function of the form $y = a(x^u)$.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Function","id":"372","title":"Function"},"373":{"body":"NEW_PRICE := IF CORES_SOLD <= BULK_TARGET THEN (OLD_PRICE - MIN_PRICE) * (1 - ((BULK_TARGET - CORES_SOLD)^SCALE_DOWN / BULK_TARGET^SCALE_DOWN)) + MIN_PRICE\nELSE ((MAX_PRICE_INCREASE_FACTOR - 1) * OLD_PRICE * ((CORES_SOLD - BULK_TARGET)^SCALE_UP / (BULK_LIMIT - BULK_TARGET)^SCALE_UP)) + OLD_PRICE\nEND IF","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Pseudo-code","id":"373","title":"Pseudo-code"},"374":{"body":"Minimum Price We introduce MIN_PRICE to control the minimum price. The left side of the function shall be allowed to come close to 0 if cores sold approaches 0. The rationale is that if there are actually 0 cores sold, the previous sale price was too high and the price needs to adapt quickly. Price forms a plateau around the target If the number of cores is close to BULK_TARGET, less extreme price changes might be sensible. This ensures that a drop in sold cores or an increase doesn’t lead to immediate price changes, but rather slowly adapts. Only if more extreme changes in the number of sold cores occur, does the price slope increase. We introduce SCALE_DOWN and SCALE_UP to control for the steepness of the left and the right side of the function respectively. Max price increase factor We introduce MAX_PRICE_INCREASE_FACTOR as the factor that controls how much the price may increase from one period to another. Introducing this variable gives governance an additional control lever and avoids the necessity for a future runtime upgrade.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Properties of the Curve","id":"374","title":"Properties of the Curve"},"375":{"body":"Baseline This example proposes the baseline parameters. If not mentioned otherwise, other examples use these values. The minimum price of a core is 1 DOT, the price can double every 4 weeks. Price change around BULK_TARGET is dampened slightly. BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 2\nSCALE_DOWN = 2\nSCALE_UP = 2\nOLD_PRICE = 1000 More aggressive pricing We might want to have a more aggressive price growth, allowing the price to triple every 4 weeks and have a linear increase in price on the right side. BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 3\nSCALE_DOWN = 2\nSCALE_UP = 1\nOLD_PRICE = 1000 Conservative pricing to ensure quick corrections in an affluent market If governance considers the risk that a sudden surge in DOT price might price chains out from bulk coretime markets, it can ensure the model quickly reacts to a quick drop in demand, by setting 0 < SCALE_DOWN < 1 and setting the max price increase factor more conservatively. BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 1.5\nSCALE_DOWN = 0.5\nSCALE_UP = 2\nOLD_PRICE = 1000 Linear pricing By setting the scaling factors to 1 and potentially adapting the max price increase, we can achieve a linear function BULK_TARGET = 30\nBULK_LIMIT = 45\nMIN_PRICE = 1\nMAX_PRICE_INCREASE_FACTOR = 1.5\nSCALE_DOWN = 1\nSCALE_UP = 1\nOLD_PRICE = 1000","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Example Configurations","id":"375","title":"Example Configurations"},"376":{"body":"None at present.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Drawbacks","id":"376","title":"Drawbacks"},"377":{"body":"This pricing model is based on the requirements from the basic linear solution proposed in RFC-1, which is a simple dynamic pricing model and only used as proof. The present model adds additional considerations to make the model more adaptable under real conditions.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Prior Art and References","id":"377","title":"Prior Art and References"},"378":{"body":"This RFC, if accepted, shall be implemented in conjunction with RFC-1.","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » Future Possibilities","id":"378","title":"Future Possibilities"},"379":{"body":"[1] Polkadot forum post with visualizations: Dynamic Pricing for Bulk Coretime Sales","breadcrumbs":"RFC-0006: Dynamic Pricing for Bulk Coretime Sales » References","id":"379","title":"References"},"38":{"body":"After collecting all valid candidate tickets, a deterministic method is used to uniquely associate a subset of these tickets with the slots of the target epoch.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.3. Tickets and Slots Binding","id":"38","title":"4.3. Tickets and Slots Binding"},"380":{"body":"(source) Table of Contents RFC-0009: Improved light client requests networking protocol Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-07-19 Description Modify the networking storage read requests to solve some problems with the existing one Authors Pierre Krieger","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » RFC-0009: Improved light client requests networking protocol","id":"380","title":"RFC-0009: Improved light client requests networking protocol"},"381":{"body":"Improve the networking messages that query storage items from the remote, in order to reduce the bandwidth usage and number of round trips of light clients.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Summary","id":"381","title":"Summary"},"382":{"body":"Clients on the Polkadot peer-to-peer network can be divided into two categories: full nodes and light clients. So-called full nodes are nodes that store the content of the chain locally on their disk, while light clients are nodes that don't. In order to access for example the balance of an account, a full node can do a disk read, while a light client needs to send a network message to a full node and wait for the full node to reply with the desired value. This reply is in the form of a Merkle proof, which makes it possible for the light client to verify the exactness of the value. Unfortunately, this network protocol is suffering from some issues: It is not possible for the querier to check whether a key exists in the storage of the chain except by querying the value of that key. The reply will thus include the value of the key, only for that value to be discarded by the querier that isn't interested by it. This is a waste of bandwidth. It is not possible for the querier to know whether a value in the storage of the chain has been modified between two blocks except by querying this value for both blocks and comparing them. Only a few storage values get modified in a block, and thus most of the time the comparison will be equal. This leads to a waste of bandwidth as the values have to be transferred. While it is possible to ask for multiple specific storage keys at the same time, it is not possible to ask for a list of keys that start with a certain prefix. Due to the way FRAME works, storage keys are grouped by \"prefix\", for example all account balances start with the same prefix. It is thus a common necessity for a light client to obtain the list of all keys (and possibly their values) that start with a specific prefix. This is currently not possible except by performing multiple queries serially that \"walk down\" the trie. Once Polkadot and Kusama will have transitioned to state_version = 1, which modifies the format of the trie entries, it will be possible to generate Merkle proofs that contain only the hashes of values in the storage. Thanks to this, it is already possible to prove the existence of a key without sending its entire value (only its hash), or to prove that a value has changed or not between two blocks (by sending just their hashes). Thus, the only reason why aforementioned issues exist is because the existing networking messages don't give the possibility for the querier to query this. This is what this proposal aims at fixing.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Motivation","id":"382","title":"Motivation"},"383":{"body":"This is the continuation of https://github.com/w3f/PPPs/pull/10, which itself is the continuation of https://github.com/w3f/PPPs/pull/5.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Stakeholders","id":"383","title":"Stakeholders"},"384":{"body":"The protobuf schema of the networking protocol can be found here: https://github.com/paritytech/substrate/blob/5b6519a7ff4a2d3cc424d78bc4830688f3b184c0/client/network/light/src/schema/light.v1.proto The proposal is to modify this protocol in this way: @@ -11,6 +11,7 @@ message Request { RemoteReadRequest remote_read_request = 2; RemoteReadChildRequest remote_read_child_request = 4; // Note: ids 3 and 5 were used in the past. It would be preferable to not re-use them.\n+ RemoteReadRequestV2 remote_read_request_v2 = 6; } } @@ -48,6 +49,21 @@ message RemoteReadRequest { repeated bytes keys = 3; } +message RemoteReadRequestV2 {\n+ required bytes block = 1;\n+ optional ChildTrieInfo child_trie_info = 2; // Read from the main trie if missing.\n+ repeated Key keys = 3;\n+ optional bytes onlyKeysAfter = 4;\n+ optional bool onlyKeysAfterIgnoreLastNibble = 5;\n+}\n+\n+message ChildTrieInfo {\n+ enum ChildTrieNamespace {\n+ DEFAULT = 1;\n+ }\n+\n+ required bytes hash = 1;\n+ required ChildTrieNamespace namespace = 2;\n+}\n+ // Remote read response. message RemoteReadResponse { // Read proof. If missing, indicates that the remote couldn't answer, for example because\n@@ -65,3 +81,8 @@ message RemoteReadChildRequest { // Storage keys. repeated bytes keys = 6; }\n+\n+message Key {\n+ required bytes key = 1;\n+ optional bool skipValue = 2; // Defaults to `false` if missing\n+ optional bool includeDescendants = 3; // Defaults to `false` if missing\n+} Note that the field names aren't very important as they are not sent over the wire. They can be changed at any time without any consequence. I would invite people to not discuss these field names as they are implementation details. This diff adds a new type of request (RemoteReadRequestV2). The new child_trie_info field in the request makes it possible to specify which trie is concerned by the request. The current networking protocol uses two different structs (RemoteReadRequest and RemoteReadChildRequest) for main trie and child trie queries, while this new request would make it possible to query either. This change doesn't fix any of the issues mentioned in the previous section, but is a side change that has been done for simplicity. An alternative could have been to specify the child_trie_info for each individual Key. However this would make it necessary to send the child trie hash many times over the network, which leads to a waste of bandwidth, and in my opinion makes things more complicated for no actual gain. If a querier would like to access more than one trie at the same time, it is always possible to send one query per trie. If skipValue is true for a Key, then the value associated with this key isn't important to the querier, and the replier is encouraged to replace the value with its hash provided that the storage item has a state_version equal to 1. If the storage value has a state_version equal to 0, then the optimization isn't possible and the replier should behave as if skipValue was false. If includeDescendants is true for a Key, then the replier must also include in the proof all keys that are descendant of the given key (in other words, its children, children of children, children of children of children, etc.). It must do so even if key itself doesn't have any storage value associated to it. The values of all of these descendants are replaced with their hashes if skipValue is true, similarly to key itself. The optional onlyKeysAfter and onlyKeysAfterIgnoreLastNibble fields can provide a lower bound for the keys contained in the proof. The responder must not include in its proof any node whose key is strictly inferior to the value in onlyKeysAfter. If onlyKeysAfterIgnoreLastNibble is provided, then the last 4 bits for onlyKeysAfter must be ignored. This makes it possible to represent a trie branch node that doesn't have an even number of nibbles. If no onlyKeysAfter is provided, it is equivalent to being empty, meaning that the response must start with the root node of the trie. If onlyKeysAfterIgnoreLastNibble is missing, it is equivalent to false. If onlyKeysAfterIgnoreLastNibble is true and onlyKeysAfter is missing or empty, then the request is invalid. For the purpose of this networking protocol, it should be considered as if the main trie contained an entry for each default child trie whose key is concat(\":child_storage:default:\", child_trie_hash) and whose value is equal to the trie root hash of that default child trie. This behavior is consistent with what the host functions observe when querying the storage. This behavior is present in the existing networking protocol, in other words this proposal doesn't change anything to the situation, but it is worth mentioning. Also note that child tries aren't considered as descendants of the main trie when it comes to the includeDescendants flag. In other words, if the request concerns the main trie, no content coming from child tries is ever sent back. This protocol keeps the same maximum response size limit as currently exists (16 MiB). It is not possible for the querier to know in advance whether its query will lead to a reply that exceeds the maximum size. If the reply is too large, the replier should send back only a limited number (but at least one) of requested items in the proof. The querier should then send additional requests for the rest of the items. A response containing none of the requested items is invalid. The server is allowed to silently discard some keys of the request if it judges that the number of requested keys is too high. This is in line with the fact that the server might truncate the response.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Explanation","id":"384","title":"Explanation"},"385":{"body":"This proposal doesn't handle one specific situation: what if a proof containing a single specific item would exceed the response size limit? For example, if the response size limit was 1 MiB, querying the runtime code (which is typically 1.0 to 1.5 MiB) would be impossible as it's impossible to generate a proof less than 1 MiB. The response size limit is currently 16 MiB, meaning that no single storage item must exceed 16 MiB. Unfortunately, because it's impossible to verify a Merkle proof before having received it entirely, parsing the proof in a streaming way is also not possible. A way to solve this issue would be to Merkle-ize large storage items, so that a proof could include only a portion of a large storage item. Since this would require a change to the trie format, it is not realistically feasible in a short time frame.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Drawbacks","id":"385","title":"Drawbacks"},"386":{"body":"The main security consideration concerns the size of replies and the resources necessary to generate them. It is for example easily possible to ask for all keys and values of the chain, which would take a very long time to generate. Since responses to this networking protocol have a maximum size, the replier should truncate proofs that would lead to the response being too large. Note that it is already possible to send a query that would lead to a very large reply with the existing network protocol. The only thing that this proposal changes is that it would make it less complicated to perform such an attack. Implementers of the replier side should be careful to detect early on when a reply would exceed the maximum reply size, rather than inconditionally generate a reply, as this could take a very large amount of CPU, disk I/O, and memory. Existing implementations might currently be accidentally protected from such an attack thanks to the fact that requests have a maximum size, and thus that the list of keys in the query was bounded. After this proposal, this accidental protection would no longer exist. Malicious server nodes might truncate Merkle proofs even when they don't strictly need to, and it is not possible for the client to (easily) detect this situation. However, malicious server nodes can already do undesirable things such as throttle down their upload bandwidth or simply not respond. There is no need to handle unnecessarily truncated Merkle proofs any differently than a server simply not answering the request.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Testing, Security, and Privacy","id":"386","title":"Testing, Security, and Privacy"},"387":{"body":"","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Performance, Ergonomics, and Compatibility","id":"387","title":"Performance, Ergonomics, and Compatibility"},"388":{"body":"It is unclear to the author of the RFC what the performance implications are. Servers are supposed to have limits to the amount of resources they use to respond to requests, and as such the worst that can happen is that light client requests become a bit slower than they currently are.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Performance","id":"388","title":"Performance"},"389":{"body":"Irrelevant.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Ergonomics","id":"389","title":"Ergonomics"},"39":{"body":"During the block production phase of the target epoch, validators are required to demonstrate their ownership of tickets. This step discloses the identity of the ticket owners.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.4. Claim of Ticket Ownership","id":"39","title":"4.4. Claim of Ticket Ownership"},"390":{"body":"The prior networking protocol is maintained for now. The older version of this protocol could get removed in a long time.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Compatibility","id":"390","title":"Compatibility"},"391":{"body":"None. This RFC is a clean-up of an existing mechanism.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Prior Art and References","id":"391","title":"Prior Art and References"},"392":{"body":"None","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Unresolved Questions","id":"392","title":"Unresolved Questions"},"393":{"body":"The current networking protocol could be deprecated in a long time. Additionally, the current \"state requests\" protocol (used for warp syncing) could also be deprecated in favor of this one.","breadcrumbs":"RFC-0009: Improved light client requests networking protocol » Future Directions and Related Material","id":"393","title":"Future Directions and Related Material"},"394":{"body":"(source) Table of Contents RFC-0010: Burn Coretime Revenue Summary Motivation Stakeholders Explanation Start Date 19.07.2023 Description Revenue from Coretime sales should be burned Authors Jonas Gehrlein","breadcrumbs":"RFC-0010: Burn Coretime Revenue » RFC-0010: Burn Coretime Revenue","id":"394","title":"RFC-0010: Burn Coretime Revenue"},"395":{"body":"The Polkadot UC will generate revenue from the sale of available Coretime. The question then arises: how should we handle these revenues? Broadly, there are two reasonable paths – burning the revenue and thereby removing it from total issuance or divert it to the Treasury. This Request for Comment (RFC) presents arguments favoring burning as the preferred mechanism for handling revenues from Coretime sales.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Summary","id":"395","title":"Summary"},"396":{"body":"How to handle the revenue accrued from Coretime sales is an important economic question that influences the value of DOT and should be properly discussed before deciding for either of the options. Now is the best time to start this discussion.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Motivation","id":"396","title":"Motivation"},"397":{"body":"Polkadot DOT token holders.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Stakeholders","id":"397","title":"Stakeholders"},"398":{"body":"This RFC discusses potential benefits of burning the revenue accrued from Coretime sales instead of diverting them to Treasury. Here are the following arguments for it. It's in the interest of the Polkadot community to have a consistent and predictable Treasury income, because volatility in the inflow can be damaging, especially in situations when it is insufficient. As such, this RFC operates under the presumption of a steady and sustainable Treasury income flow, which is crucial for the Polkadot community's stability. The assurance of a predictable Treasury income, as outlined in a prior discussion here , or through other equally effective measures, serves as a baseline assumption for this argument. Consequently, we need not concern ourselves with this particular issue here. This naturally begs the question - why should we introduce additional volatility to the Treasury by aligning it with the variable Coretime sales? It's worth noting that Coretime revenues often exhibit an inverse relationship with periods when Treasury spending should ideally be ramped up. During periods of low Coretime utilization (indicated by lower revenue), Treasury should spend more on projects and endeavours to increase the demand for Coretime. This pattern underscores that Coretime sales, by their very nature, are an inconsistent and unpredictable source of funding for the Treasury. Given the importance of maintaining a steady and predictable inflow, it's unnecessary to rely on another volatile mechanism. Some might argue that we could have both: a steady inflow (from inflation) and some added bonus from Coretime sales, but burning the revenue would offer further benefits as described below. Balancing Inflation: While DOT as a utility token inherently profits from a (reasonable) net inflation, it also benefits from a deflationary force that functions as a counterbalance to the overall inflation. Right now, the only mechanism on Polkadot that burns fees is the one for underutilized DOT in the Treasury. Finding other, more direct target for burns makes sense and the Coretime market is a good option. Clear incentives: By burning the revenue accrued on Coretime sales, prices paid by buyers are clearly costs. This removes distortion from the market that might arise when the paid tokens occur on some other places within the network. In that case, some actors might have secondary motives of influencing the price of Coretime sales, because they benefit down the line. For example, actors that actively participate in the Coretime sales are likely to also benefit from a higher Treasury balance, because they might frequently request funds for their projects. While those effects might appear far-fetched, they could accumulate. Burning the revenues makes sure that the prices paid are clearly costs to the actors themselves. Collective Value Accrual: Following the previous argument, burning the revenue also generates some externality, because it reduces the overall issuance of DOT and thereby increases the value of each remaining token. In contrast to the aforementioned argument, this benefits all token holders collectively and equally. Therefore, I'd consider this as the preferrable option, because burns lets all token holders participate at Polkadot's success as Coretime usage increases.","breadcrumbs":"RFC-0010: Burn Coretime Revenue » Explanation","id":"398","title":"Explanation"},"399":{"body":"(source) Table of Contents RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs Summary Motivation Stakeholders Explanation Core::initialize_block BlockBuilder::last_inherent Combined Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date July 24, 2023 Description Prepare the BlockBuilder and Core Runtime APIs for Multi-Block-Migrations. Authors Oliver Tale-Yazdi","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs","id":"399","title":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs"},"4":{"body":"Deposit SHOULD be derived from deposit function adjusted by correspoding pricing mechansim.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Requirements","id":"4","title":"Requirements"},"40":{"body":"During block verification, the claim of ticket ownership is validated.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 4.5. Validation of Ticket Ownership","id":"40","title":"4.5. Validation of Ticket Ownership"},"400":{"body":"Introduces breaking changes to the BlockBuilder and Core runtime APIs. A new function BlockBuilder::last_inherent is introduced and the return value of Core::initialize_block is changed to an enum. The versions of both APIs are bumped; BlockBuilder to 7 and Core to 5.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Summary","id":"400","title":"Summary"},"401":{"body":"There are three main features that motivate for this RFC: Multi-Block-Migrations: These make it possible to split a migration over multiple blocks. Pallet poll hook: Can be used to gradually replace on_initialize/on_finalize in places where the code does not need to run by a hard deadline, since it is not guaranteed to execute each block. New callback System::PostInherents: Can replace on_initialize/on_finalize where a hard deadline is required (complements poll). It is guaranteed to execute each block. These three features can be implemented when fulfilling these two requirements: The runtime can tell the block author to not include any transactions in the block. The runtime can execute logic right after all pallet-provided inherents have been applied.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Motivation","id":"401","title":"Motivation"},"402":{"body":"Substrate Maintainers: They have to implement this, including tests, audit and maintenance burden. Polkadot Runtime developers: They will have to adapt the runtime files to this breaking change. Polkadot Parachain Teams: They also have to adapt to the breaking changes but then eventually have multi-block migrations available.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Stakeholders","id":"402","title":"Stakeholders"},"403":{"body":"","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Explanation","id":"403","title":"Explanation"},"404":{"body":"This runtime API function is changed from returning () to ExtrinsicInclusionMode: enum ExtrinsicInclusionMode { /// All extrinsics are allowed in this block. AllExtrinsics, /// Only inherents are allowed in this block. OnlyInherents,\n} A block author MUST respect the ExtrinsicInclusionMode that is returned by initialize_block. The runtime MUST reject blocks that do have forbidden extrinsics in them.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Core::initialize_block","id":"404","title":"Core::initialize_block"},"405":{"body":"A block author MUST always invoke last_inherent directly after applying all runtime-provided inherents. The runtime MUST reject blocks that violate this requirement.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » BlockBuilder::last_inherent","id":"405","title":"BlockBuilder::last_inherent"},"406":{"body":"Coming back to the three main features and how they can be implemented with these runtime APIs changes: 1. Multi-Block-Migrations : The runtime is being put into lock-down mode for the duration of the migration process by returning OnlyInherents from initialize_block. This ensures that no user provided transaction can interfere with the migration process. It is absolutely necessary to ensure this, since otherwise a transaction could call into un-migrated storage and violate storage invariants. The entry-point for the MBM logic is last_inherent. This is a good spot, because any data that is touched in inherents, is not MBM-migratable anyway. It could also be done before all other inherents or at the end of the block in finalize_block, but there is no downside from doing it in last_inherent and the other two features are in favour of this. 2. poll becomes possible by using last_inherent as entry-point. It would not be possible to use a pallet inherent like System::last_inherent to achieve this for two reasons. First is that pallets do not have access to AllPalletsWithSystem that is required to invoke the poll hook on all pallets. Second is that the runtime does currently not enforce an order of inherents. 3. System::PostInherents can be done in the same manner as poll.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Combined","id":"406","title":"Combined"},"407":{"body":"As noted in the review comments: this cements some assumptions about the order of inherents into the BlockBuilder traits. It was criticized for being to rigid in its assumptions.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Drawbacks","id":"407","title":"Drawbacks"},"408":{"body":"Compliance of a block author can be tested by adding specific code to the last_inherent hook and checking that it always executes. The new logic of initialize_block can be tested by checking that the block-builder will skip transactions and optional hooks when OnlyInherents is returned. Security: n/a Privacy: n/a","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Testing, Security, and Privacy","id":"408","title":"Testing, Security, and Privacy"},"409":{"body":"","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Performance, Ergonomics, and Compatibility","id":"409","title":"Performance, Ergonomics, and Compatibility"},"41":{"body":"This chapter provides a high-level overview of the Bandersnatch VRF primitive as it relates to the Sassafras protocol. It's important to note that this section is not intended to serve as an exhaustive exploration of the mathematically intensive foundations of the cryptographic primitive. Rather, its primary aim is to offer a concise and accessible explanation of the primitive's role and usage which is relevant within the scope of this RFC. For an in-depth explanation, refer to the Ring-VRF paper authored by the Web3 foundation research team.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5. Bandersnatch VRFs Cryptographic Primitives","id":"41","title":"5. Bandersnatch VRFs Cryptographic Primitives"},"410":{"body":"The performance overhead is minimal in the sense that no clutter was added after fulfilling the requirements. A slight performance penalty is expected from invoking last_inherent once per block.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Performance","id":"410","title":"Performance"},"411":{"body":"The new interface allows for more extensible runtime logic. In the future, this will be utilized for multi-block-migrations which should be a huge ergonomic advantage for parachain developers.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Ergonomics","id":"411","title":"Ergonomics"},"412":{"body":"The advice here is OPTIONAL and outside of the RFC. To not degrade user experience, it is recommended to ensure that an updated node can still import historic blocks.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Compatibility","id":"412","title":"Compatibility"},"413":{"body":"The RFC is currently being implemented in polkadot-sdk#1781 . Related issues and merge requests: Simple multi block migrations Execute a hook after inherent but before transactions There is no module hook after inherents and before transactions","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Prior Art and References","id":"413","title":"Prior Art and References"},"414":{"body":"Please suggest a better name for BlockExecutiveMode. We already tried: RuntimeExecutiveMode, ExtrinsicInclusionMode. The names of the modes Normal and Minimal were also called AllExtrinsics and OnlyInherents, so if you have naming preferences; please post them. => renamed to ExtrinsicInclusionMode Is post_inherents more consistent instead of last_inherent? Then we should change it. => renamed to last_inherent","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Unresolved Questions","id":"414","title":"Unresolved Questions"},"415":{"body":"The long-term future here is to move the block building logic into the runtime. Currently there is a tight dance between the block author and the runtime; the author has to call into different runtime functions in quick succession and exact order. Any misstep causes the built block to be invalid. This can be unified and simplified by moving both parts of the logic into the runtime.","breadcrumbs":"RFC-0013: Prepare BlockBuilder and Core runtime APIs for MBMs » Future Directions and Related Material","id":"415","title":"Future Directions and Related Material"},"416":{"body":"(source) Table of Contents RFC-0015: Market Design Revisit Summary Motivation Stakeholders Explanation Bulk Markets Benefits of this system Further Discussion Points Drawbacks Prior Art and References Unresolved Questions Start Date 05.08.2023 Description This RFC refines the previously proposed mechanisms involving the various Coretime markets and presents an integrated framework for harmonious interaction between all markets. Authors Jonas Gehrlein","breadcrumbs":"RFC-0015: Market Design Revisit » RFC-0015: Market Design Revisit","id":"416","title":"RFC-0015: Market Design Revisit"},"417":{"body":"This document is a proposal for restructuring the bulk markets in the Polkadot UC's coretime allocation system to improve efficiency and fairness. The proposal suggests separating the BULK_PERIOD into MARKET_PERIOD and RENEWAL_PERIOD, allowing for a market-driven price discovery through a clearing price Dutch auction during the MARKET_PERIOD followed by renewal offers at the MARKET_PRICE during the RENEWAL_PERIOD. The new system ensures synchronicity between renewal and market prices, fairness among all current tenants, and efficient price discovery, while preserving price caps to provide security for current tenants. It seeks to start a discussion about the possibility of long-term leases.","breadcrumbs":"RFC-0015: Market Design Revisit » Summary","id":"417","title":"Summary"},"418":{"body":"While the initial RFC-1 has provided a robust framework for Coretime allocation within the Polkadot UC, this proposal builds upon its strengths and uses many provided building blocks to address some areas that could be further improved. In particular, this proposal introduces the following changes: It introduces a RESERVE_PRICE that anchors all markets, promoting price synchronicity within the Bulk markets (flexible + renewals). This reduces complexity. This makes sure all consumers pay a closely correlated price for coretime within a BULK_PERIOD. It reverses the order of the market and renewal phase. This allows to fine-tune the price through market forces. It exposes the renewal prices, while still being beneficial for longterm tenants, more to market forces. It removes the LeadIn period and introduces a (from the perspective of the coretime systemchain) passive Settlement Phase, that allows the secondary market to exert it's force. The premise of this proposal is to reduce complexity by introducing a common price (that develops releative to capacity consumption of Polkadot UC), while still allowing for market forces to add efficiency. Longterm lease owners still receive priority IF they can pay (close to) the market price. This prevents a situation where the renewal price significantly diverges from renewal prices which allows for core captures. While maximum price increase certainty might seem contradictory to efficient price discovery, the proposed model aims to balance these elements, utilizing market forces to determine the price and allocate cores effectively within certain bounds. It must be stated, that potential price increases remain predictable (in the worst-case) but could be higher than in the originally proposed design. The argument remains, however, that we need to allow market forces to affect all prices for an efficient Coretime pricing and allocation. Ultimately, this the framework proposed here adheres to all requirements stated in RFC-1.","breadcrumbs":"RFC-0015: Market Design Revisit » Motivation","id":"418","title":"Motivation"},"419":{"body":"Primary stakeholder sets are: Protocol researchers and developers, largely represented by the Polkadot Fellowship and Parity Technologies' Engineering division. Polkadot Parachain teams both present and future, and their users. Polkadot DOT token holders.","breadcrumbs":"RFC-0015: Market Design Revisit » Stakeholders","id":"419","title":"Stakeholders"},"42":{"body":"The VRF Input, denoted as VrfInput, is constructed by combining a domain identifier with arbitrary data through the vrf_input function: fn vrf_input(domain: OCTET_STRING, data: OCTET_STRING) -> VrfInput; The specific implementation details of this function are intentionally omitted. A reference implementation is provided by the bandersnatch_vrfs project. The above link points to some temporary code (Transcript label set to \"TemporaryDoNotDeploy\").\nAlso replace with docs.rs link once published to crates.io. Helper function to construct a VrfInput from a sequence of data items: fn vrf_input_from_items(domain: OCTET_STRING, items: SEQUENCE_OF OCTET_STRING) -> VrfInput { let data = OCTET_STRING(SIZE = 0); // empty octet string for item in items { data.append(item); data.append(LENGTH(item) as U8); } return vrf_input(domain, data); } Note that each item length is safely casted to an U8 as: In the context of this protocol all items lengths are less than 256. The function is internal and not designed for generic use.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.1. VRF Input","id":"42","title":"5.1. VRF Input"},"420":{"body":"","breadcrumbs":"RFC-0015: Market Design Revisit » Explanation","id":"420","title":"Explanation"},"421":{"body":"The BULK_PERIOD has been restructured into two primary segments: the MARKET_PERIOD and RENEWAL_PERIOD, along with an auxiliary SETTLEMENT_PERIOD. This latter period doesn't necessitate any actions from the coretime system chain, but it facilitates a more efficient allocation of coretime in secondary markets. A significant departure from the original proposal lies in the timing of renewals, which now occur post-market phase. This adjustment aims to harmonize renewal prices with their market counterparts, ensuring a more consistent and equitable pricing model. Market Period (14 days) During the market period, core sales are conducted through a well-established clearing price Dutch auction that features a RESERVE_PRICE. The price initiates at a premium, designated as PRICE_PREMIUM (for instance, 30%) and descends linearly to the RESERVE_PRICE throughout the duration of the MARKET_PERIOD. Each bidder is expected to submit both their desired price and the quantity (that is, the amount of Coretime) they wish to purchase. To secure these acquisitions, bidders must make a deposit equivalent to their bid multiplied by the chosen quantity, in DOT. The market achieves resolution once all quantities have been sold, or the RESERVE_PRICE has been reached. This situation leads to determining the MARKET_PRICE either by the lowest bid that was successful in clearing the entire market or by the RESERVE_PRICE. This mechanism yields a uniform price, shaped by market forces (refer to the following discussion for an explanation of its benefits). In other words, all buyers pay the same price (per unit of Coretime). Further down the benefits of this variant of a Dutch auction is discussed. Note: In cases where some cores remain unsold in the market, all buyers are obligated to pay the RESERVE_PRICE. Renewal Period (7 days) As the RENEWAL_PERIOD commences, all current tenants are granted the opportunity to renew their cores at a slight discount of MARKET_PRICE * RENEWAL_DISCOUNT (for instance, 10%). This provision affords marginal benefits to existing tenants, balancing out the non-transferability aspect of renewals. At the end of the period, all available cores are allocated to the current tenants who have opted for renewal and the participants who placed bids during the market period. If the demand for cores exceeds supply, the cores left unclaimed from renewals may be awarded to bidders who placed their bids early in the auction, thereby subtly incentivizing early participation. If the supply exceeds the demand, all unsold cores are transferred to the Instantanous Market. Reserve Price Adjustment After all cores are allocated, the RESERVE_PRICE is adjusted following the process described in RFC-1 and serves as baseline price in the next BULK_PERIOD. Note: The particular price curve is outside the scope of the proposal. The MARKET_PRICE (as a function of RESERVE_PRICE), however, is able to capture higher demand very well while being capped downwards. That means, the curve that adjusts the RESERVE_PRICE should be more sensitive to undercapacity. Price Predictability Tasks that are in the \"renewal-pipeline\" can determine the upper bound for the price they will pay in any future period. The main driver of any price increase over time is the adjustment of the RESERVE_PRICE, that occurs at the end of each BULK_PERIOD after determining the capacity fillment of Polkadot UC. To calculate the maximum price in some future period, a task could assume maximum capacity in all upcoming periods and track the resulting price increase of RESERVE_PRICE. In the final period, that price can get a maximum premium of PRICE_PREMIUM and after deducting a potential RENEWAL_DISCOUNT, the maximum price can be determined. Settlement Period (7 days) During the settlement period, participants have ample time to trade Coretime on secondary markets before the onset of the next BULK_PERIOD. This allows for trading with full Coretime availability. Trading transferrable Coretime naturally continues during each BULK_PERIOD, albeit with cores already in use.","breadcrumbs":"RFC-0015: Market Design Revisit » Bulk Markets","id":"421","title":"Bulk Markets"},"422":{"body":"The introduction of a single price, the RESERVE_PRICE, provides an anchor for all Coretime markets. This is a preventative measure against the possible divergence and mismatch of prices, which could inadvertently lead to a situation where existing tenants secure cores at significantly below-market rates. With a more market-responsive pricing system, we can achieve a more efficient price discovery process. Any price increases will be less arbitrary and more dynamic. The ideal strategy for existing tenants is to maintain passivity, i.e., refrain from active market participation and simply accept the offer presented to them during the renewal phase. This approach lessens the organizational overhead for long-term projects. In the two-week market phase, the maximum price increase is known well in advance, providing ample time for tenants to secure necessary funds to meet the potential price escalation. All existing tenants pay an equal amount for Coretime, reflecting our intent to price the Coretime itself and not the relative timing of individual projects. Discussion: Clearing Price Dutch Auctions Having all bidders pay the market clearing price offers some benefits and disadvantages. Advantages: Fairness : All bidders pay the same price. Active participation : Because bidders are protected from overbidding (winner's curse), they are more likely to engage and reveal their true valuations. Simplicity : A single price is easier to work with for pricing renewals later. Truthfulness : There is no need to try to game the market by waiting with bidding. Bidders can just bid their valuations. Disadvantages: (Potentially) Lower Revenue : While the theory predicts revenue-equivalence between a uniform price and pay-as-bid type of auction, slightly lower revenue for the former type is observed empirically. Arguably, revenue maximization (i.e., squeezing out the maximum willingness to pay from bidders) is not the priority for Polkadot UC. Instead, it is interested in efficient allocation and the other benefits illustrated above. (Technical) Complexity : Instead of making a final purchase within the auction, the bid is only a deposit. Some refunds might happen after the auction is finished. This might pose additional challenges from the technical side (e.g., storage requirements).","breadcrumbs":"RFC-0015: Market Design Revisit » Benefits of this system","id":"422","title":"Benefits of this system"},"423":{"body":"Long-term Coretime : The Polkadot UC is undergoing a transition from two-year leases without an instantaneous market to a model encompassing instantaneous and one-month leases. This shift seems to pivot from one extreme to another. While the introduction of short-term leases, both instantaneous and for one month, is a constructive move to lower barriers to entry and promote experimentation, it seems to be the case that established projects might benefit from more extended lease options. We could consider offering another product, such as a six-month Coretime lease, using the same mechanism described herein. Although the majority of leases would still be sold on a one-month basis, the addition of this option would enhance market efficiency as it would strengthen the impact of a secondary market .","breadcrumbs":"RFC-0015: Market Design Revisit » Further Discussion Points","id":"423","title":"Further Discussion Points"},"424":{"body":"There are trade-offs that arise from this proposal, compared to the initial model. The most notable one is that here, I prioritize requirement 6 over requirement 2. The price, in the very \"worst-case\" (meaning a huge explosion in demand for coretime) could lead to a much larger increase of prices in Coretime. From an economic perspective, this (rare edgecase) would also mean that we'd vastly underprice Coretime in the original model, leading to highly inefficient allocations.","breadcrumbs":"RFC-0015: Market Design Revisit » Drawbacks","id":"424","title":"Drawbacks"},"425":{"body":"This RFC builds extensively on the available ideas put forward in RFC-1 . Additionally, I want to express a special thanks to Samuel Haefner and Shahar Dobzinski for fruitful discussions and helping me structure my thoughts.","breadcrumbs":"RFC-0015: Market Design Revisit » Prior Art and References","id":"425","title":"Prior Art and References"},"426":{"body":"The technical feasability needs to be assessed.","breadcrumbs":"RFC-0015: Market Design Revisit » Unresolved Questions","id":"426","title":"Unresolved Questions"},"427":{"body":"(source) Table of Contents RFC-0020: Treasurer Track Confirmation Period Duration Modification Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics & Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date August 10, 2023 Description Treasurer Track Confirmation Period Duration Modification Authors ChaosDAO","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » RFC-0020: Treasurer Track Confirmation Period Duration Modification","id":"427","title":"RFC-0020: Treasurer Track Confirmation Period Duration Modification"},"428":{"body":"This RFC proposes a change to the duration of the confirmation period for the treasurer track from 3 hours to at least 48 hours.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Summary","id":"428","title":"Summary"},"429":{"body":"Track parameters for Polkadot OpenGov should be configured in a way that their \"difficulty\" increases relative to the power associated with their respective origin. When we look at the confirmation periods for treasury based tracks, we can see that this is clearly the case - with the one notable exception to the trend being the treasurer track: Track Description Confirmation Period Duration Small Tipper 10 Min Big Tipper 1 Hour Small Spender 12 Hours Medium Spender 24 Hours Big Spender 48 Hours Treasurer 3 Hours The confirmation period is one of the last lines of defence for the collective Polkadot stakeholders to react to a potentially bad referendum and vote NAY in order for its confirmation period to be aborted. Since the power / privilege level of the treasurer track is greater than that of the the big spender track – their confirmation period should be either equal, or the treasurer track's should be higher (note: currently the big spender track has a longer confirmation period than even the root track).","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Motivation","id":"429","title":"Motivation"},"43":{"body":"Functionally, the VrfPreOutput can be considered as a seed for a PRNG to produce an arbitrary number of output bytes. It is computed as function of a VrfInput and a BandersnatchSecretKey. Two different approaches can be used to generate it: as a standalone object or as part of a signature. While the resulting VrfPreOutput is identical in both cases, the legitimacy of the latter can be confirmed by verifying the signature using the BandersnatchPublicKey of the expected signer. When constructed as a standalone object, VrfPreOutput is primarily employed in situations where the secret key owner needs to check if the generated output bytes fulfill some context specific criteria before applying the signature. To facilitate the construction, the following helper function is provided: fn vrf_pre_output(secret: BandernatchSecretKey, input: VrfInput) -> VrfPreOutput; An additional helper function is provided for producing an arbitrary number of output bytes from VrfInput and VrfPreOutput: fn vrf_bytes(len: U32, input: VrfInput, pre_output: VrfPreOuput) -> OCTET_STRING; Similar to the vrf_input function, the details about the implementation of these functions is omitted. Reference implementations are provided by the dleq_vrfs project vrf_pre_output vrf_bytes","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.2. VRF PreOutput","id":"43","title":"5.2. VRF PreOutput"},"430":{"body":"The primary stakeholders of this RFC are: DOT token holders – as this affects the protocol's treasury Entities wishing to submit a referendum via the treasurer track - as this affects the referendum timeline Projects with governance app integrations - see Performance, Ergonomics, and Compatibility section below. lolmcshizz - expressed interest to change this parameter Leemo - expressed interest to change this parameter Paradox - expressed interest to change this parameter","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Stakeholders","id":"430","title":"Stakeholders"},"431":{"body":"This RFC proposes to change the duration of the confirmation period for the treasurer track. In order to achieve that, the confirm_period parameter for the treasurer track in runtime/polkadot/src/governance/tracks.rs must be changed. Currently it is set to confirm_period: 3 * HOURS It should be changed to confirm_period: 48 * HOURS as a minimum. It may make sense for it to be changed to a value greater than 48 hours since the treasurer track has more power than the big spender track (48 hour confirmation period); however, the root track's confirmation period is 24 hours. 48 hours may be on the upper bounds of a trade-off between security and flexibility.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Explanation","id":"431","title":"Explanation"},"432":{"body":"The drawback of changing the treasurer track's confirmation period would be that the lifecycle of a referendum submitted on the treasurer track would ultimately be longer. However, the security of the protocol and its treasury should take priority here.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Drawbacks","id":"432","title":"Drawbacks"},"433":{"body":"This change will enhance / improve the security of the protocol as it relates to its treasury. The confirmation period is one of the last lines of defence for the collective Polkadot stakeholders to react to a potentially bad referendum and vote NAY in order for its confirmation period to be aborted. It makes sense for the treasurer track's confirmation period duration to be either equal to, or higher than, the big spender track confirmation period.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Testing, Security, and Privacy","id":"433","title":"Testing, Security, and Privacy"},"434":{"body":"","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Performance, Ergonomics, and Compatibility","id":"434","title":"Performance, Ergonomics, and Compatibility"},"435":{"body":"This is a simple change (code wise) which should not affect the performance of the Polkadot protocol, outside of increasing the duration of the confirmation period on the treasurer track.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Performance","id":"435","title":"Performance"},"436":{"body":"If the proposal alters exposed interfaces to developers or end-users, which types of usage patterns have been optimized for? I have confirmed with the following projects that this is not a breaking change for their governance apps: Nova Wallet - directly uses on-chain data, and change will be automatically reflected. Polkassembly - directly uses on-chain data via rpc to fetch trackInfo so the change will be automatically reflected. SubSquare - scan script will update their app to the latest parameters and it will be automatically reflected in their app.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Ergonomics & Compatibility","id":"436","title":"Ergonomics & Compatibility"},"437":{"body":"N/A","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Prior Art and References","id":"437","title":"Prior Art and References"},"438":{"body":"The proposed change to the confirmation period duration for the treasurer track is to set it to 48 hours. This is equal to the current confirmation period for the big spender track. Typically it seems that track parameters increase in difficulty (duration, etc.) based on the power level of their associated origin. The longest confirmation period is that of the big spender, at 48 hours. There may be value in discussing whether or not the treasurer track confirmation period should be longer than 48 hours – a discussion of the trade-offs between security vs flexibility/agility. As a side note, the root track confirmation period is 24 hours.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Unresolved Questions","id":"438","title":"Unresolved Questions"},"439":{"body":"This RFC hopefully reminds the greater Polkadot community that it is possible to submit changes to the parameters of Polkadot OpenGov, and the greater protocol as a whole through the RFC process.","breadcrumbs":"RFC-0020: Treasurer Track Confirmation Period Duration Modification » Future Directions and Related Material","id":"439","title":"Future Directions and Related Material"},"44":{"body":"This section outlines the data to be signed utilizing the VRF primitive: VrfSignatureData ::= SEQUENCE { transcript: Transcript, inputs: SEQUENCE_OF VrfInput } Where: transcript: a Transcript instance. In practice, this is a special hash of some protocol-specific data to sign which doesn't influence the VrfPreOutput. inputs: sequence of VrfInputs to be signed. To simplify the construction of VrfSignatureData objects, a helper function is defined: fn vrf_signature_data( transcript_label: OCTET_STRING, transcript_data: SEQUENCE_OF OCTET_STRING, inputs: SEQUENCE_OF VrfInput ) -> VrfSignatureData { let mut transcript = Transcript::new_labeled(transcript_label); for data in transcript_data { transcript.append(data); } VrfSignatureData { transcript, inputs } }","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.3. VRF Signature Data","id":"44","title":"5.3. VRF Signature Data"},"440":{"body":"(source) Table of Contents RFC-0035: Conviction Voting Delegation Modifications Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics & Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material October 10, 2023 Conviction Voting Delegation Modifications ChaosDAO","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » RFC-0035: Conviction Voting Delegation Modifications","id":"440","title":"RFC-0035: Conviction Voting Delegation Modifications"},"441":{"body":"This RFC proposes to make modifications to voting power delegations as part of the Conviction Voting pallet. The changes being proposed include: Allow a Delegator to vote independently of their Delegate if they so desire. Allow nested delegations – for example Charlie delegates to Bob who delegates to Alice – when Alice votes then both Bob and Charlie vote alongside Alice (in the current implementation Charlie will not vote when Alice votes). Make a change so that when a delegate votes abstain their delegated votes also vote abstain. Allow a Delegator to delegate/ undelegate their votes for all tracks with a single call.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Summary","id":"441","title":"Summary"},"442":{"body":"It has become clear since the launch of OpenGov that there are a few common tropes which pop up time and time again: The frequency of referenda is often too high for network participants to have sufficient time to review, comprehend, and ultimately vote on each individual referendum. This means that these network participants end up being inactive in on-chain governance. There are active network participants who are reviewing every referendum and are providing feedback in an attempt to help make the network thrive – but often time these participants do not control enough voting power to influence the network with their positive efforts. Delegating votes for all tracks currently requires long batched calls which result in high fees for the Delegator - resulting in a reluctance from many to delegate their votes. We believe (based on feedback from token holders with a larger stake in the network) that if there were some changes made to delegation mechanics, these larger stake holders would be more likely to delegate their voting power to active network participants – thus greatly increasing the support turnout.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Motivation","id":"442","title":"Motivation"},"443":{"body":"The primary stakeholders of this RFC are: The Polkadot Technical Fellowship who will have to research and implement the technical aspects of this RFC DOT token holders in general","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Stakeholders","id":"443","title":"Stakeholders"},"444":{"body":"This RFC proposes to make 4 changes to the convictionVoting pallet logic in order to improve the user experience of those delegating their voting power to another account. Allow a Delegator to vote independently of their Delegate if they so desire – this would empower network participants to more actively delegate their voting power to active voters, removing the tedious steps of having to undelegate across an entire track every time they do not agree with their delegate's voting direction for a particular referendum. Allow nested delegations – for example Charlie delegates to Bob who delegates to Alice – when Alice votes then both Bob and Charlie vote alongside Alice (in the current runtime Charlie will not vote when Alice votes) – This would allow network participants who control multiple (possibly derived) accounts to be able to delegate all of their voting power to a single account under their control, which would in turn delegate to a more active voting participant. Then if the delegator wishes to vote independently of their delegate they can control all of their voting power from a single account, which again removes the pain point of having to issue multiple undelegate extrinsics in the event that they disagree with their delegate. Have delegated votes follow their delegates abstain votes – there are times where delegates may vote abstain on a particular referendum and adding this functionality will increase the support of a particular referendum. It has a secondary benefit of meaning that Validators who are delegating their voting power do not lose points in the 1KV program in the event that their delegate votes abstain (another pain point which may be preventing those network participants from delegating). Allow a Delegator to delegate/ undelegate their votes for all tracks with a single call - in order to delegate votes across all tracks, a user must batch 15 calls - resulting in high costs for delegation. A single call for delegate_all/ undelegate_all would reduce the complexity and therefore costs of delegations considerably for prospective Delegators.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Explanation","id":"444","title":"Explanation"},"445":{"body":"We do not foresee any drawbacks by implementing these changes. If anything we believe that this should help to increase overall voter turnout (via the means of delegation) which we see as a net positive.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Drawbacks","id":"445","title":"Drawbacks"},"446":{"body":"We feel that the Polkadot Technical Fellowship would be the most competent collective to identify the testing requirements for the ideas presented in this RFC.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Testing, Security, and Privacy","id":"446","title":"Testing, Security, and Privacy"},"447":{"body":"","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Performance, Ergonomics, and Compatibility","id":"447","title":"Performance, Ergonomics, and Compatibility"},"448":{"body":"This change may add extra chain storage requirements on Polkadot, especially with respect to nested delegations.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Performance","id":"448","title":"Performance"},"449":{"body":"The change to add nested delegations may affect governance interfaces such as Nova Wallet who will have to apply changes to their indexers to support nested delegations. It may also affect the Polkadot Delegation Dashboard as well as Polkassembly & SubSquare. We want to highlight the importance for ecosystem builders to create a mechanism for indexers and wallets to be able to understand that changes have occurred such as increasing the pallet version, etc.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Ergonomics & Compatibility","id":"449","title":"Ergonomics & Compatibility"},"45":{"body":"Bandersnatch VRF offers two signature flavors: plain signature: much like a traditional Schnorr signature, ring signature: leverages a zk-SNARK to allows for anonymous signatures using a key from a predefined set of enabled keys, known as the ring. 5.4.1. Plain VRF Signature This section describes the signature process for VrfSignatureData using the plain signature flavor. PlainSignature ::= OCTET_STRING; VrfSignature ::= SEQUENCE { signature: PlainSignature, pre_outputs: SEQUENCE-OF VrfPreOutput } Where: signature: the actual plain signature. pre_outputs: sequence of VrfPreOutputs corresponding to the VrfInputs found within the VrfSignatureData. Helper function to construct VrfPlainSignature from VrfSignatureData: BandersnatchSecretKey ::= OCTET_STRING; fn vrf_sign( secret: BandernatchSecretKey, signature_data: VrfSignatureData ) -> VrfSignature Helper function for signature verification returning a BOOLEAN value indicating the validity of the signature (true on success): BandersnatchPublicKey ::= OCTET_STRING; fn vrf_verify( public: BandersnatchPublicKey, signature: VrfSignature ) -> BOOLEAN; In this document, the types BandersnatchSecretKey, BandersnatchPublicKey and PlainSignature are intentionally left undefined. Their definitions can be found in the bandersnatch_vrfs reference implementation. 5.4.2. Ring VRF Signature This section describes the signature process for VrfSignatureData using the ring signature flavor. RingSignature ::= OCTET_STRING; RingVrfSignature ::= SEQUENCE { signature: RingSignature, pre_outputs: SEQUENCE_OF VrfPreOutput } signature: the actual ring signature. pre_outputs: sequence of VrfPreOutputs corresponding to the VrfInputs found within the VrfSignatureData. Helper function to construct RingVrfSignature from VrfSignatureData: BandersnatchRingProverKey ::= OCTET_STRING; fn ring_vrf_sign( secret: BandersnatchRingProverKey, signature_data: VrfSignatureData, ) -> RingVrfSignature; Helper function for signature verification returning a BOOLEAN value indicating the validity of the signature (true on success). BandersnatchRingVerifierKey ::= OCTET_STRING; fn ring_vrf_verify( verifier: BandersnatchRingVerifierKey, signature: RingVrfSignature, ) -> BOOLEAN; Note that this function doesn't require the signer's public key. In this document, the types BandersnatchRingProverKey, BandersnatchRingVerifierKey, and RingSignature are intentionally left undefined. Their definitions can be found in the bandersnatch_vrfs reference implementation.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 5.4. VRF Signature","id":"45","title":"5.4. VRF Signature"},"450":{"body":"N/A","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Prior Art and References","id":"450","title":"Prior Art and References"},"451":{"body":"N/A","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Unresolved Questions","id":"451","title":"Unresolved Questions"},"452":{"body":"Additionally we would like to re-open the conversation about the potential for there to be free delegations. This was discussed by Dr Gavin Wood at Sub0 2022 and we feel like this would go a great way towards increasing the amount of network participants that are delegating: https://youtu.be/hSoSA6laK3Q?t=526 Overall, we strongly feel that delegations are a great way to increase voter turnout, and the ideas presented in this RFC would hopefully help in that aspect.","breadcrumbs":"RFC-0035: Conviction Voting Delegation Modifications » Future Directions and Related Material","id":"452","title":"Future Directions and Related Material"},"453":{"body":"(source) Table of Contents RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization Summary Motivation Stakeholders Explanation Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Start Date 30 October 2023 Description Host function to provide the storage proof size to runtimes. Authors Sebastian Kunert","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization","id":"453","title":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization"},"454":{"body":"This RFC proposes a new host function for parachains, storage_proof_size. It shall provide the size of the currently recorded storage proof to the runtime. Runtime authors can use the proof size to improve block utilization by retroactively reclaiming unused storage weight.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Summary","id":"454","title":"Summary"},"455":{"body":"The number of extrinsics that are included in a parachain block is limited by two constraints: execution time and proof size. FRAME weights cover both concepts, and block-builders use them to decide how many extrinsics to include in a block. However, these weights are calculated ahead of time by benchmarking on a machine with reference hardware. The execution-time properties of the state-trie and its storage items are unknown at benchmarking time. Therefore, we make some assumptions about the state-trie: Trie Depth: We assume a trie depth to account for intermediary nodes. Storage Item Size: We make a pessimistic assumption based on the MaxEncodedLen trait. These pessimistic assumptions lead to an overestimation of storage weight, negatively impacting block utilization on parachains. In addition, the current model does not account for multiple accesses to the same storage items. While these repetitive accesses will not increase storage-proof size, the runtime-side weight monitoring will account for them multiple times. Since the proof size is completely opaque to the runtime, we can not implement retroactive storage weight correction. A solution must provide a way for the runtime to track the exact storage-proof size consumed on a per-extrinsic basis.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Motivation","id":"455","title":"Motivation"},"456":{"body":"Parachain Teams: They MUST include this host function in their runtime and node. Light-client Implementors: They SHOULD include this host function in their runtime and node.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Stakeholders","id":"456","title":"Stakeholders"},"457":{"body":"This RFC proposes a new host function that exposes the storage-proof size to the runtime. As a result, runtimes can implement storage weight reclaiming mechanisms that improve block utilization. This RFC proposes the following host function signature: fn ext_storage_proof_size_version_1() -> u64; The host function MUST return an unsigned 64-bit integer value representing the current proof size. In block-execution and block-import contexts, this function MUST return the current size of the proof. To achieve this, parachain node implementors need to enable proof recording for block imports. In other contexts, this function MUST return 18446744073709551615 (u64::MAX), which represents disabled proof recording.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Explanation","id":"457","title":"Explanation"},"458":{"body":"","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Performance, Ergonomics, and Compatibility","id":"458","title":"Performance, Ergonomics, and Compatibility"},"459":{"body":"Parachain nodes need to enable proof recording during block import to correctly implement the proposed host function. Benchmarking conducted with balance transfers has shown a performance reduction of around 0.6% when proof recording is enabled.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Performance","id":"459","title":"Performance"},"46":{"body":"","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6. Sassafras Protocol","id":"46","title":"6. Sassafras Protocol"},"460":{"body":"The host function proposed in this RFC allows parachain runtime developers to keep track of the proof size. Typical usage patterns would be to keep track of the overall proof size or the difference between subsequent calls to the host function.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Ergonomics","id":"460","title":"Ergonomics"},"461":{"body":"Parachain teams will need to include this host function to upgrade.","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Compatibility","id":"461","title":"Compatibility"},"462":{"body":"Pull Request including proposed host function: PoV Reclaim (Clawback) Node Side . Issue with discussion: [FRAME core] Clawback PoV Weights For Dispatchables","breadcrumbs":"RFC-0043: Introduce storage_proof_size Host Function for Improved Parachain Block Utilization » Prior Art and References","id":"462","title":"Prior Art and References"},"463":{"body":"(source) Table of Contents RFC-0044: Rent based registration model Summary Motivation Requirements Stakeholders Explanation Registering an on-demand parachain On-demand parachain pruning Ensuring rent is paid On-demand para re-registration Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 6 November 2023 Description A new rent based parachain registration model Authors Sergej Sakac","breadcrumbs":"RFC-0044: Rent based registration model » RFC-0044: Rent based registration model","id":"463","title":"RFC-0044: Rent based registration model"},"464":{"body":"This RFC proposes a new model for a sustainable on-demand parachain registration, involving a smaller initial deposit and periodic rent payments. The new model considers that on-demand chains may be unregistered and later re-registered. The proposed solution also ensures a quick startup for on-demand chains on Polkadot in such cases.","breadcrumbs":"RFC-0044: Rent based registration model » Summary","id":"464","title":"Summary"},"465":{"body":"With the support of on-demand parachains on Polkadot, there is a need to explore a new, more cost-effective model for registering validation code. In the current model, the parachain manager is responsible for reserving a unique ParaId and covering the cost of storing the validation code of the parachain. These costs can escalate, particularly if the validation code is large. We need a better, sustainable model for registering on-demand parachains on Polkadot to help smaller teams deploy more easily. This RFC suggests a new payment model to create a more financially viable approach to on-demand parachain registration. In this model, a lower initial deposit is required, followed by recurring payments upon parachain registration. This new model will coexist with the existing one-time deposit payment model, offering teams seeking to deploy on-demand parachains on Polkadot a more cost-effective alternative.","breadcrumbs":"RFC-0044: Rent based registration model » Motivation","id":"465","title":"Motivation"},"466":{"body":"The solution SHOULD NOT affect the current model for registering validation code. The solution SHOULD offer an easily configurable way for governance to adjust the initial deposit and recurring rent cost. The solution SHOULD provide an incentive to prune validation code for which rent is not paid. The solution SHOULD allow anyone to re-register validation code under the same ParaId without the need for redundant pre-checking if it was already verified before. The solution MUST be compatible with the Agile Coretime model, as described in RFC#0001 The solution MUST allow anyone to pay the rent. The solution MUST prevent the removal of validation code if it could still be required for disputes or approval checking.","breadcrumbs":"RFC-0044: Rent based registration model » Requirements","id":"466","title":"Requirements"},"467":{"body":"Future Polkadot on-demand Parachains","breadcrumbs":"RFC-0044: Rent based registration model » Stakeholders","id":"467","title":"Stakeholders"},"468":{"body":"This RFC proposes a set of changes that will enable the new rent based approach to registering and storing validation code on-chain. The new model, compared to the current one, will require periodic rent payments. The parachain won't be pruned automatically if the rent is not paid, but by permitting anyone to prune the parachain and rewarding the caller, there will be an incentive for the removal of the validation code. On-demand parachains should still be able to utilize the current one-time payment model. However, given the size of the deposit required, it's highly likely that most on-demand parachains will opt for the new rent-based model. Importantly, this solution doesn't require any storage migrations in the current system nor does it introduce any breaking changes. The following provides a detailed description of this solution.","breadcrumbs":"RFC-0044: Rent based registration model » Explanation","id":"468","title":"Explanation"},"469":{"body":"In the current implementation of the registrar pallet, there are two constants that specify the necessary deposit for parachains to register and store their validation code: trait Config { // -- snip -- /// The deposit required for reserving a `ParaId`. #[pallet::constant] type ParaDeposit: Get>; /// The deposit to be paid per byte stored on chain. #[pallet::constant] type DataDepositPerByte: Get>;\n} This RFC proposes the addition of three new constants that will determine the payment amount and the frequency of the recurring rent payment: trait Config { // -- snip -- /// Defines how frequently the rent needs to be paid. /// /// The duration is set in sessions instead of block numbers. #[pallet::constant] type RentDuration: Get; /// The initial deposit amount for registering validation code. /// /// This is defined as a proportion of the deposit that would be required in the regular /// model. #[pallet::constant] type RentalDepositProportion: Get; /// The recurring rental cost defined as a proportion of the initial rental registration deposit. #[pallet::constant] type RentalRecurringProportion: Get;\n} Users will be able to reserve a ParaId and register their validation code for a proportion of the regular deposit required. However, they must also make additional rent payments at intervals of T::RentDuration. For registering using the new rental system we will have to make modifications to the paras-registrar pallet. We should expose two new extrinsics for this: mod pallet { // -- snip -- pub fn register_rental( origin: OriginFor, id: ParaId, genesis_head: HeadData, validation_code: ValidationCode, ) -> DispatchResult { /* ... */ } pub fn pay_rent(origin: OriginFor, id: ParaId) -> DispatchResult { /* ... */ }\n} A call to register_rental will require the reservation of only a percentage of the deposit that would otherwise be required to register the validation code when using the regular model. As described later in the Quick para re-registering section below, we will also store the code hash of each parachain to enable faster re-registration after a parachain has been pruned. For this reason the total initial deposit amount is increased to account for that. // The logic for calculating the initial deposit for parachain registered with the // new rent-based model: let validation_code_deposit = per_byte_fee.saturating_mul((validation_code.0.len() as u32).into()); let head_deposit = per_byte_fee.saturating_mul((genesis_head.0.len() as u32).into())\nlet hash_deposit = per_byte_fee.saturating_mul(HASH_SIZE); let deposit = T::RentalDepositProportion::get().mul_ceil(validation_code_deposit) .saturating_add(T::ParaDeposit::get()) .saturating_add(head_deposit) .saturating_add(hash_deposit) Once the ParaId is reserved and the validation code is registered the rent must be periodically paid to ensure the on-demand parachain doesn't get removed from the state. The pay_rent extrinsic should be callable by anyone, removing the need for the parachain to depend on the parachain manager for rent payments.","breadcrumbs":"RFC-0044: Rent based registration model » Registering an on-demand parachain","id":"469","title":"Registering an on-demand parachain"},"47":{"body":"For epoch N, the first block produced must include a descriptor for some of the subsequent epoch (N+1) parameters. This descriptor is defined as: NextEpochDescriptor ::= SEQUENCE { randomness: OCTET_STRING(SIZE(32)), authorities: SEQUENCE_OF BandersnatchPublicKey, configuration: ProtocolConfiguration OPTIONAL } Where: randomness: 32-bytes pseudo random value. authorities: list of authorities. configuration: optional protocol configuration. This descriptor must be encoded using the SCALE encoding system and embedded in the block header's digest log. The identifier for the digest element is BYTES(\"SASS\"). A special case arises for the first block for epoch 0, which each node produces independently during the genesis phase. In this case, the NextEpochDescriptor relative to epoch 1 is shared within the second block, as outlined in section 6.1.3 . 6.1.1. Epoch Randomness The randomness in the NextEpochDescriptor randomness is computed as: randomness = BLAKE2(32, CONCAT(randomness_accumulator, BYTES(next_epoch.index))); Here, randomness_accumulator refers to a 32-byte OCTET_STRING stored on-chain and computed through a process that incorporates verifiable random elements from all previously imported blocks. The exact procedure is described in section 6.7 . 6.1.2. Protocol Configuration The ProtocolConfiguration primarily influences certain checks carried out during tickets validation. It is defined as: ProtocolConfiguration ::= SEQUENCE { attempts_number: U32, redundancy_factor: U32 } Where: attempts_number: maximum number of tickets that each authority for the next epoch is allowed to submit. redundancy_factor: expected ratio between epoch's slots and the cumulative number of tickets which can be submitted by the set of epoch validators. The attempts_number influences the anonymity of block producers. As all published tickets have a public attempt number less than attempts_number, all the tickets which share the attempt number value must belong to different block producers, which reduces anonymity late as we approach the epoch tail. Bigger values guarantee more anonymity but also more computation. Details about how exactly these parameters drives the ticket validity probability can be found in section 6.2.2 . ProtocolConfiguration values can be adjusted via a dedicated on-chain call which should have origin set to Root. Any proposed changes to ProtocolConfiguration that are submitted in epoch K will be included in the NextEpochDescriptor at the start of epoch K+1 and will come into effect in epoch K+2. 6.1.3. Startup Parameters Some of the initial parameters for the first epoch, Epoch #0, are set through the genesis configuration, which is defined as: GenesisConfig ::= SEQUENCE { authorities: SEQUENCE_OF BandersnatchPublicKey, configuration: ProtocolConfiguration, } The on-chain randomness accumulator is initialized only after the genesis block is produced. It starts with the hash of the genesis block: randomness_accumulator = genesis_hash Since block #0 is generated locally by each node as part of the genesis process, the first block that a validator explicitly produces for Epoch #0 is block #1. Therefore, block #1 is required to contain the NextEpochDescriptor for the following epoch, Epoch #1. The NextEpochDescriptor for Epoch #1: randomness: computed using the randomness_accumulator established post-genesis, as mentioned above. authorities: the same as those specified in the genesis configuration. configuration: not set (i.e., None), implying the reuse of the one found in the genesis configuration.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.1. Epoch's First Block","id":"47","title":"6.1. Epoch's First Block"},"470":{"body":"If the rent is not paid, anyone has the option to prune the on-demand parachain and claim a portion of the initial deposit reserved for storing the validation code. This type of 'light' pruning only removes the validation code, while the head data and validation code hash are retained. The validation code hash is stored to allow anyone to register it again as well as to enable quicker re-registration by skipping the pre-checking process. The moment the rent is no longer paid, the parachain won't be able to purchase on-demand access, meaning no new blocks are allowed. This stage is called the \"hibernation\" stage, during which all the parachain-related data is still stored on-chain, but new blocks are not permitted. The reason for this is to ensure that the validation code is available in case it is needed in the dispute or approval checking subsystems. Waiting for one entire session will be enough to ensure it is safe to deregister the parachain. This means that anyone can prune the parachain only once the \"hibernation\" stage is over, which lasts for an entire session after the moment that the rent is not paid. The pruning described here is a light form of pruning, since it only removes the validation code. As with all parachains, the parachain or para manager can use the deregister extrinsic to remove all associated state.","breadcrumbs":"RFC-0044: Rent based registration model » On-demand parachain pruning","id":"470","title":"On-demand parachain pruning"},"471":{"body":"The paras pallet will be loosely coupled with the para-registrar pallet. This approach enables all the pallets tightly coupled with the paras pallet to have access to the rent status information. Once the validation code is stored without having its rent paid the assigner_on_demand pallet will ensure that an order for that parachain cannot be placed. This is easily achievable given that the assigner_on_demand pallet is tightly coupled with the paras pallet.","breadcrumbs":"RFC-0044: Rent based registration model » Ensuring rent is paid","id":"471","title":"Ensuring rent is paid"},"472":{"body":"If the rent isn't paid on time, and the parachain gets pruned, the new model should provide a quick way to re-register the same validation code under the same ParaId. This can be achieved by skipping the pre-checking process, as the validation code hash will be stored on-chain, allowing us to easily verify that the uploaded code remains unchanged. /// Stores the validation code hash for parachains that successfully completed the /// pre-checking process.\n///\n/// This is stored to enable faster on-demand para re-registration in case its pvf has been earlier\n/// registered and checked.\n///\n/// NOTE: During a runtime upgrade where the pre-checking rules change this storage map should be\n/// cleared appropriately.\n#[pallet::storage]\npub(super) type CheckedCodeHash = StorageMap<_, Twox64Concat, ParaId, ValidationCodeHash>; To enable parachain re-registration, we should introduce a new extrinsic in the paras-registrar pallet that allows this. The logic of this extrinsic will be same as regular registration, with the distinction that it can be called by anyone, and the required deposit will be smaller since it only has to cover for the storage of the validation code.","breadcrumbs":"RFC-0044: Rent based registration model » On-demand para re-registration","id":"472","title":"On-demand para re-registration"},"473":{"body":"This RFC does not alter the process of reserving a ParaId, and therefore, it does not propose reducing it, even though such a reduction could be beneficial. Even though this RFC doesn't delve into the specifics of the configuration values for parachain registration but rather focuses on the mechanism, configuring it carelessly could lead to potential problems. Since the validation code hash and head data are not removed when the parachain is pruned but only when the deregister extrinsic is called, the T::DataDepositPerByte must be set to a higher value to create a strong enough incentive for removing it from the state.","breadcrumbs":"RFC-0044: Rent based registration model » Drawbacks","id":"473","title":"Drawbacks"},"474":{"body":"The implementation of this RFC will be tested on Rococo first. Proper research should be conducted on setting the configuration values of the new system since these values can have great impact on the network. An audit is required to ensure the implementation's correctness. The proposal introduces no new privacy concerns.","breadcrumbs":"RFC-0044: Rent based registration model » Testing, Security, and Privacy","id":"474","title":"Testing, Security, and Privacy"},"475":{"body":"","breadcrumbs":"RFC-0044: Rent based registration model » Performance, Ergonomics, and Compatibility","id":"475","title":"Performance, Ergonomics, and Compatibility"},"476":{"body":"This RFC should not introduce any performance impact.","breadcrumbs":"RFC-0044: Rent based registration model » Performance","id":"476","title":"Performance"},"477":{"body":"This RFC does not affect the current parachains, nor the parachains that intend to use the one-time payment model for parachain registration.","breadcrumbs":"RFC-0044: Rent based registration model » Ergonomics","id":"477","title":"Ergonomics"},"478":{"body":"This RFC does not break compatibility.","breadcrumbs":"RFC-0044: Rent based registration model » Compatibility","id":"478","title":"Compatibility"},"479":{"body":"Prior discussion on this topic: https://github.com/paritytech/polkadot-sdk/issues/1796","breadcrumbs":"RFC-0044: Rent based registration model » Prior Art and References","id":"479","title":"Prior Art and References"},"48":{"body":"After the beginning of a new epoch N, each validator associated to the next epoch (N+1) constructs a set of tickets which may be eligible ( 6.2.2 ) to be submitted on-chain. These tickets aim to secure ownership of one or more slots in the upcoming epoch N+1. Each validator is allowed to submit a maximum number of tickets, as specified by the attempts_number field in the ProtocolConfiguration for the next epoch. The ideal timing for a validator to start creating the tickets is subject to strategy. A recommended approach is to initiate tickets creation once the block containing the NextEpochDescriptor is either probabilistically or, preferably, deterministically finalized. This timing is suggested to prevent to waste resources on tickets that might become obsolete if a different chain branch is finally chosen as the best one by the distributed system. However, validators are also advised to avoid submitting tickets too late, as tickets submitted during the second half of the epoch must be discarded. 6.2.1. Ticket Identifier Value Each ticket has an associated 128-bit unique identifier defined as: TicketId ::= U128; The value of the TicketId is determined by the output of the Bandersnatch VRF with the following input: ticket_id_vrf_input = vrf_input_from_items( BYTES(\"sassafras-ticket-v1.0\"), [ next_epoch.randomness, BYTES(next_epoch.index), BYTES(attempt_index) ] ); ticket_id_vrf_pre_output = vrf_pre_output(AUTHORITY_SECRET_KEY, ticket_id_vrf_input); ticket_bytes = vrf_bytes(16, ticket_id_vrf_input, ticket_id_vrf_pre_output); ticket_id = U128(ticket_bytes); Where: next_epoch.randomness: randomness associated to the target epoch. next_epoch.index: index of the target epoch as a U64. attempt_index: value going from 0 to attempts_number as a U32. 6.2.2. Tickets Threshold A TicketId value is valid if its value is less than the ticket threshold: T = (r·s)/(a·v) Where: v: epoch's authorities (aka validators) number s: epoch's slots number r: redundancy factor a: attempts number T: ticket threshold value (0 ≤ T ≤ 1) 6.2.2.1 Formula Derivation In an epoch with s slots, the goal is to achieve an expected number of tickets for block production equal to r·s. It's crucial to ensure that the probability of having fewer than s winning tickets is very low, even in scenarios where up to 1/3 of the authorities might be offline. To accomplish this, we first define the winning probability of a single ticket as T = (r·s)/(a·v). Let n be the actual number of participating validators, where v·2/3 ≤ n ≤ v. These n validators each make a attempts, for a total of a·n attempts. Let X be the random variable associated to the number of winning tickets, then its expected value is: E[X] = T·a·n = (r·s·n)/v By setting r = 2, we get s·4/3 ≤ E[X] ≤ s·2 Using Bernestein's inequality we get Pr[X < s] ≤ e^(-s/21). For instance, with s = 600 this results in Pr[X < s] < 4·10⁻¹³. Consequently, this approach offers considerable tolerance for offline nodes and ensures that all slots are likely to be filled with tickets. For more details about threshold formula please refer to the probabilities and parameters paragraph in the Web3 foundation description of the protocol. 6.2.3. Ticket Body Every candidate ticket identifier has an associated body, defined as: TicketBody ::= SEQUENCE { attempt_index: U32, erased_pub: Ed25519PublicKey, revealed_pub: Ed25519PublicKey } Where: attempt_index: attempt index used to generate the associated TicketId. erased_pub: Ed25519 ephemeral public key which gets erased as soon as the ticket is claimed. This key can be used to encrypt data for the validator. revealed_pub: Ed25519 ephemeral public key which gets exposed as soon as the ticket is claimed. The process of generating an erased key pair is intentionally left undefined, allowing the implementor the freedom to choose the most suitable strategy. Revealed key pair is generated using the bytes produced by the VRF with input parameters equal to those employed in TicketId generation, only the label is different. revealed_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-revealed-v1.0\"), data: [ next_epoch.randomness, BYTES(next_epoch.index), BYTES(attempt_index) ] ); revealed_vrf_pre_output = vrf_pre_output(AUTHORITY_SECRET_KEY, revealed_vrf_input); revealed_seed = vrf_bytes(32, revealed_vrf_input, revealed_vrf_pre_output); revealed_pub = ed25519_secret_from_seed(revealed_seed).public(); Where: next_epoch.randomness: randomness associated to the target epoch. next_epoch.index: index of the target epoch as a U64. attempt_index: value going from 0 to attempts_number as a U32. The ephemeral public keys are also used for claiming the tickets on block production. Refer to section 6.5 for details. 6.2.4. Ring Signature Production TicketBody must be signed using the Bandersnatch ring VRF flavor ( 5.4.2 ). sign_data = vrf_signature_data( transcript_label: BYTES(\"sassafras-ticket-body-v1.0\"), transcript_data: [ SCALE(ticket_body) ], inputs: [ ticket_id_vrf_input ] ) ring_signature = ring_vrf_sign(AUTHORITY_SECRET_KEY, RING_PROVER_KEY, sign_data) RING_PROVER_KEY object is constructed using the set of public keys which belong to the target epoch's authorities and the zk-SNARK context parameters (for more details refer to the bandersnatch_vrfs reference implementation). The body and the ring signature are combined in the TicketEnvelope structure: TicketEnvelope ::= SEQUENCE { ticket_body: TicketBody, ring_signature: RingVrfSignature } All the envelopes corresponding to valid tickets can be submitted on-chain via a dedicated on-chain call (extrinsic).","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.2. Creation and Submission of Candidate Tickets","id":"48","title":"6.2. Creation and Submission of Candidate Tickets"},"480":{"body":"None at this time.","breadcrumbs":"RFC-0044: Rent based registration model » Unresolved Questions","id":"480","title":"Unresolved Questions"},"481":{"body":"As noted in this GitHub issue , we want to raise the per-byte cost of on-chain data storage. However, a substantial increase in this cost would make it highly impractical for on-demand parachains to register on Polkadot. This RFC offers an alternative solution for on-demand parachains, ensuring that the per-byte cost increase doesn't overly burden the registration process.","breadcrumbs":"RFC-0044: Rent based registration model » Future Directions and Related Material","id":"481","title":"Future Directions and Related Material"},"482":{"body":"(source) Table of Contents RFC-0048: Generate ownership proof for SessionKeys Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 13 November 2023 Description Change SessionKeys runtime api to also create a proof of ownership for on chain registration. Authors Bastian Köcher","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » RFC-0048: Generate ownership proof for SessionKeys","id":"482","title":"RFC-0048: Generate ownership proof for SessionKeys"},"483":{"body":"When rotating/generating the SessionKeys of a node, the node calls into the runtime using the SessionKeys::generate_session_keys runtime api. This runtime api function needs to be changed to add an extra parameter owner and to change the return value to also include the proof of ownership. The owner should be the account id of the account setting the SessionKeys on chain to allow the on chain logic the verification of the proof. The on chain logic is then able to proof the possession of the private keys of the SessionKeys using the proof.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Summary","id":"483","title":"Summary"},"484":{"body":"When a user sets new SessionKeys on chain the chain can currently not ensure that the user actually has control over the private keys of the SessionKeys. With the RFC applied the chain is able to ensure that the user actually is in possession of the private keys.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Motivation","id":"484","title":"Motivation"},"485":{"body":"Polkadot runtime implementors Polkadot node implementors Validator operators","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Stakeholders","id":"485","title":"Stakeholders"},"486":{"body":"We are first going to explain the proof format being used: type Proof = (Signature, Signature, ..); The proof being a SCALE encoded tuple over all signatures of each private session key signing the owner. The actual type of each signature depends on the corresponding session key cryptographic algorithm. The order of the signatures in the proof is the same as the order of the session keys in the SessionKeys type. The version of the SessionKeys needs to be bumped to 1 to reflect the changes to the signature of SessionKeys_generate_session_keys: pub struct OpaqueGeneratedSessionKeys { pub keys: Vec, pub proof: Vec,\n} fn SessionKeys_generate_session_keys(owner: Vec, seed: Option>) -> OpaqueGeneratedSessionKeys; The default calling convention for runtime apis is applied, meaning the parameters passed as SCALE encoded array and the length of the encoded array. The return value being the SCALE encoded return value as u64 (array_ptr | length << 32). So, the actual exported function signature looks like: fn SessionKeys_generate_session_keys(array: *const u8, len: usize) -> u64; The on chain logic for setting the SessionKeys needs to be changed as well. It already gets the proof passed as Vec. This proof needs to be decoded to the actual Proof type as explained above. The proof and the SCALE encoded account_id of the sender are used to verify the ownership of the SessionKeys.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Explanation","id":"486","title":"Explanation"},"487":{"body":"Validator operators need to pass the their account id when rotating their session keys in a node. This will require updating some high level docs and making users familiar with the slightly changed ergonomics.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Drawbacks","id":"487","title":"Drawbacks"},"488":{"body":"Testing of the new changes is quite easy as it only requires passing an appropriate owner for the current testing context. The changes to the proof generation and verification got audited to ensure they are correct.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Testing, Security, and Privacy","id":"488","title":"Testing, Security, and Privacy"},"489":{"body":"","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Performance, Ergonomics, and Compatibility","id":"489","title":"Performance, Ergonomics, and Compatibility"},"49":{"body":"All the actions in the steps described by this paragraph are executed by on-chain code. Validation rules: Tickets submissions must occur within a block part of the first half of the epoch. Ring signature is verified using the on-chain RING_VERIFIER_KEY. Ticket identifier is locally (re)computed from the VrfPreOutput contained in the RingVrfSignature and its value is checked to be less than the tickets' threshold. Valid tickets bodies are all persisted on-chain.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.3. Validation of candidate tickets","id":"49","title":"6.3. Validation of candidate tickets"},"490":{"body":"Does not have any impact on the overall performance, only setting SessionKeys will require more weight.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Performance","id":"490","title":"Performance"},"491":{"body":"If the proposal alters exposed interfaces to developers or end-users, which types of usage patterns have been optimized for?","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Ergonomics","id":"491","title":"Ergonomics"},"492":{"body":"Introduces a new version of the SessionKeys runtime api. Thus, nodes should be updated before a runtime is enacted that contains these changes otherwise they will fail to generate session keys.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Compatibility","id":"492","title":"Compatibility"},"493":{"body":"None.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Prior Art and References","id":"493","title":"Prior Art and References"},"494":{"body":"None.","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Unresolved Questions","id":"494","title":"Unresolved Questions"},"495":{"body":"Substrate implementation of the RFC .","breadcrumbs":"RFC-0048: Generate ownership proof for SessionKeys » Future Directions and Related Material","id":"495","title":"Future Directions and Related Material"},"496":{"body":"(source) Table of Contents RFC-0054: Remove the concept of \"heap pages\" from the client Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-11-24 Description Remove the concept of heap pages from the client and move it to the runtime. Authors Pierre Krieger","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » RFC-0054: Remove the concept of \"heap pages\" from the client","id":"496","title":"RFC-0054: Remove the concept of \"heap pages\" from the client"},"497":{"body":"Rather than enforce a limit to the total memory consumption on the client side by loading the value at :heappages, enforce that limit on the runtime side.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Summary","id":"497","title":"Summary"},"498":{"body":"From the early days of Substrate up until recently, the runtime was present in two forms: the wasm runtime (wasm bytecode passed through an interpreter) and the native runtime (native code directly run by the client). Since the wasm runtime has a lower amount of available memory (4 GiB maximum) compared to the native runtime, and in order to ensure sure that the wasm and native runtimes always produce the same outcome, it was necessary to clamp the amount of memory available to both runtimes to the same value. In order to achieve this, a special storage key (a \"well-known\" key) :heappages was introduced and represents the number of \"wasm pages\" (one page equals 64kiB) of memory that are available to the memory allocator of the runtimes. If this storage key is absent, it defaults to 2048, which is 128 MiB. The native runtime has since then been disappeared, but the concept of \"heap pages\" still exists. This RFC proposes a simplification to the design of Polkadot by removing the concept of \"heap pages\" as is currently known, and proposes alternative ways to achieve the goal of limiting the amount of memory available.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Motivation","id":"498","title":"Motivation"},"499":{"body":"Client implementers and low-level runtime developers.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Stakeholders","id":"499","title":"Stakeholders"},"5":{"body":"NFT Creators : Primary beneficiaries of the proposed change, particularly those who found the current deposit requirements prohibitive. NFT Platforms : As the facilitator of artists' relations, NFT Marketplaces has a vested interest in onboarding new users and making the platform more accessible. dApp Developers : Making the blockspace more accessible will encourage developers to create and build unique dApps in the Polkadot ecosystem. Polkadot Community : Stands to benefit from an influx of artists, creators and diverse NFT collections, enhancing the overall ecosystem. Previous discussions have been held within the Polkadot Forum community and with artists expressing their concerns about the deposit amounts. Link .","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Stakeholders","id":"5","title":"Stakeholders"},"50":{"body":"Before the beginning of the next epoch, the on-chain list of tickets must be associated with the next epoch's slots such that there must be at most one ticket per slot. The assignment process happens in the second half of the submission epoch and follows these steps: Sorting: The complete list of tickets is sorted based on their TicketId value, with smaller values coming first. Trimming: In scenarios where there are more tickets than available slots, the list is trimmed to fit the epoch's slots by removing the larger value. Assignment: Tickets are assigned to the epoch's slots following an outside-in strategy. 6.4.1. Outside-In Assignment Given an ordered sequence of tickets [t0, t1, t2, ..., tk] to be assigned to n slots, where n ≥ k, the tickets are allocated according to the following strategy: slot-index : [ 0, 1, 2, ............ , n ] tickets : [ t1, t3, t5, ... , t4, t2, t0 ] Here slot-index is a relative value computed as: slot-index = absolute_slot - epoch_start_slot The association between each ticket and a slot is recorded on-chain and thus is public. What remains confidential is the identity of the ticket's author, and consequently, who possesses the authority to claim the corresponding slot. This information is known only to the author of the ticket. In case the number of available tickets is less than the number of epoch slots, some orphan slots in the middle of the epoch will remain unbounded to any ticket. For claiming strategy refer to 6.5.2 .","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.4. Ticket-Slot Binding","id":"50","title":"6.4. Ticket-Slot Binding"},"500":{"body":"This RFC proposes the following changes to the client: The client no longer considers :heappages as special. The memory allocator of the runtime is no longer bounded by the value of :heappages. With these changes, the memory available to the runtime is now only bounded by the available memory space (4 GiB), and optionally by the maximum amount of memory specified in the Wasm binary (see https://webassembly.github.io/spec/core/bikeshed/#memories%E2%91%A0). In Rust, the latter can be controlled during compilation with the flag -Clink-arg=--max-memory=.... Since the client-side change is strictly more tolerant than before, we can perform the change immediately after the runtime has been updated, and without having to worry about backwards compatibility. This RFC proposes three alternative paths (different chains might choose to follow different paths): Path A: add back the same memory limit to the runtime, like so: At initialization, the runtime loads the value of :heappages from the storage (using ext_storage_get or similar), and sets a global variable to the decoded value. The runtime tracks the total amount of memory that it has allocated using its instance of #[global_allocator] (https://github.com/paritytech/polkadot-sdk/blob/e3242d2c1e2018395c218357046cc88caaed78f3/substrate/primitives/io/src/lib.rs#L1748-L1762). This tracking should also be added around the host functions that perform allocations. If an allocation is attempted that would go over the value in the global variable, the memory allocation fails. Path B: define the memory limit using the -Clink-arg=--max-memory=... flag. Path C: don't add anything to the runtime. This is effectively the same as setting the memory limit to ~4 GiB (compared to the current default limit of 128 MiB). This solution is viable only because we're compiling for 32bits wasm rather than for example 64bits wasm. If we ever compile for 64bits wasm, this would need to be revisited. Each parachain can choose the option that they prefer, but the author of this RFC strongly suggests either option C or B.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Explanation","id":"500","title":"Explanation"},"501":{"body":"In case of path A, there is one situation where the behaviour pre-RFC is not equivalent to the one post-RFC: when a host function that performs an allocation (for example ext_storage_get) is called, without this RFC this allocation might fail due to reaching the maximum heap pages, while after this RFC this will always succeed. This is most likely not a problem, as storage values aren't supposed to be larger than a few megabytes at the very maximum. In the unfortunate event where the runtime runs out of memory, path B would make it more difficult to relax the memory limit, as we would need to re-upload the entire Wasm, compared to updating only :heappages in path A or before this RFC. In the case where the runtime runs out of memory only in the specific event where the Wasm runtime is modified, this could brick the chain. However, this situation is no different than the thousands of other ways that a bug in the runtime can brick a chain, and there's no reason to be particularily worried about this situation in particular.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Drawbacks","id":"501","title":"Drawbacks"},"502":{"body":"This RFC would reduce the chance of a consensus issue between clients. The :heappages are a rather obscure feature, and it is not clear what happens in some corner cases such as the value being too large (error? clamp?) or malformed. This RFC would completely erase these questions.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Testing, Security, and Privacy","id":"502","title":"Testing, Security, and Privacy"},"503":{"body":"","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Performance, Ergonomics, and Compatibility","id":"503","title":"Performance, Ergonomics, and Compatibility"},"504":{"body":"In case of path A, it is unclear how performances would be affected. Path A consists in moving client-side operations to the runtime without changing these operations, and as such performance differences are expected to be minimal. Overall, we're talking about one addition/subtraction per malloc and per free, so this is more than likely completely negligible. In case of path B and C, the performance gain would be a net positive, as this RFC strictly removes things.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Performance","id":"504","title":"Performance"},"505":{"body":"This RFC would isolate the client and runtime more from each other, making it a bit easier to reason about the client or the runtime in isolation.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Ergonomics","id":"505","title":"Ergonomics"},"506":{"body":"Not a breaking change. The runtime-side changes can be applied immediately (without even having to wait for changes in the client), then as soon as the runtime is updated, the client can be updated without any transition period. One can even consider updating the client before the runtime, as it corresponds to path C.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Compatibility","id":"506","title":"Compatibility"},"507":{"body":"None.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Prior Art and References","id":"507","title":"Prior Art and References"},"508":{"body":"None.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Unresolved Questions","id":"508","title":"Unresolved Questions"},"509":{"body":"This RFC follows the same path as https://github.com/polkadot-fellows/RFCs/pull/4 by scoping everything related to memory allocations to the runtime.","breadcrumbs":"RFC-0054: Remove the concept of \"heap pages\" from the client » Future Directions and Related Material","id":"509","title":"Future Directions and Related Material"},"51":{"body":"With tickets bound to epoch slots, every validator acquires information about the slots for which they are supposed to produce a block. The procedure for slot claiming depends on whether a given slot has an associated ticket according to the on-chain state. If a slot is associated with a ticket, the primary authoring method is used. Conversely, the protocol resorts to the secondary method as a fallback. 6.5.1. Primary Method Let ticket_body be the TicketBody that has been committed to the on-chain state, curr_epoch denote an object containing information about the current epoch, and slot represent the slot number (absolute). Follows the construction of VrfSignatureData: randomness_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-randomness-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(slot) ] ); revealed_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-revealed-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(ticket_body.attempt_index) ] ); sign_data = vrf_signature_data( transcript_label: BYTES(\"sassafras-claim-v1.0\"), transcript_data: [ SCALE(ticket_body) ], inputs: [ randomness_vrf_input, revealed_vrf_input ] ); 6.5.1.1. Ephemeral Key Claim Fiat-Shamir transform is used to obtain a 32-byte challenge associated with the VrfSignData transcript. Validators employ the secret key associated with erased_pub, which has been committed in the TicketBody, to sign the challenge. challenge = sign_data.transcript.challenge(); erased_signature = ed25519_sign(ERASED_SECRET_KEY, challenge); As ticket's ownership can be claimed by reconstructing the revealed_pub entry of the committed TicketBody, this step is considered optional. Is this step really necessary?\n- Isn't better to keep it simple if this step doesn't offer any extra security?\n- We already have a strong method to claim ticket ownership using the vrf output\n- What if a validator provides both the proofs? More weight for the branch (i.e. used to decide what is the best branch by validators)? E.g. - primary method + ed25519 erased signature => score 2 - primary method => score 1 - fallback method => score 0 6.5.2. Secondary Method By noting that the authorities registered on-chain are kept in an ordered list, the index of the authority which has the privilege to claim an orphan slot is: index_bytes = BLAKE2(4, CONCAT(epoch_randomness, BYTES(slot))); index = U32(index_bytes) mod authorities_number; Given randomness_vrf_input constructed as shown for the primary method ( 6.5.1 ), the VrfSignatureData is constructed as: sign_data = vrf_signature_data( transcript_label: BYTES(\"sassafras-claim-v1.0\"), transcript_data: [ ], inputs: [ randomness_vrf_input ] ) 6.5.3. Slot Claim Object The SlotClaim structure is used to contain all the necessary information to assess ownership of a slot. SlotClaim ::= SEQUENCE { authority_index: U32, slot: U64, signature: VrfSignature, erased_signature: Ed25519Signature OPTIONAL } The claim is constructed as follows: signature = vrf_sign(AUTHORITY_SECRET_KEY, sign_data); claim = SlotClaim { authority_index, slot, signature, erased_signature } Where: authority_index: index of the block author in the on-chain authorities list. slot: slot number (absolute, not relative to the epoch start) signature: signature relative to the sign_data constructed via the primary 6.5.1 or secondary ( 6.5.2 ) method. erased_signature: optional signature providing an additional proof of ticket ownership ( 6.5.1.1 ). The signature includes one or two VrfPreOutputs. The first is always present and is used to generate per-block randomness to feed the randomness accumulator ( 6.7 ). The second is included if the slot is bound to a ticket. This is relevant to claim ticket ownership ( 6.6.1 ). The claim object is SCALE encoded and sent in the block's header digest log.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.5. Slot Claim Production","id":"51","title":"6.5. Slot Claim Production"},"52":{"body":"The signature within the SlotClaim is verified using a VrfSignData constructed as specified in 6.5 . public_key = authorities[claim.authority_index]; result = vrf_verify(public_key, sign_data, claim.signature); assert(result == true); With: authorities: list of authorities for the epoch, as recorded on-chain. sign_data: data that has been signed, constructed as specified in 6.5 . If signature verification is successful, the validation process then diverges based on whether the slot is associated with a ticket according to the on-chain state. For slots tied to a ticket, the primary verification method is employed. Otherwise, the secondary method is utilized.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.6. Slot Claim Verification","id":"52","title":"6.6. Slot Claim Verification"},"53":{"body":"This method verifies ticket ownership using the second VrfPreOutput from the SlotClaim signature The process involves comparing the revealed_pub key from the committed TicketBody with a reconstructed key using the VrfPreOutput and the expected VrfInput. A mismatch indicates an illegitimate claim. revealed_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-revealed-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(ticket_body.attempt_index) ] ); reveled_vrf_pre_output = claim.signature.pre_outputs[1]; revealed_seed = vrf_bytes(32, revealed_vrf_input, revealed_vrf_pre_output); revealed_pub = ed25519_secret_from_seed(revealed_seed).public(); assert(revealed_pub == ticket_body.revealed_pub); 6.6.1.1. Ephemeral Key Signature Check If the erased_signature is present in SlotClaim, the erased_pub within the committed TicketBody key is used to verify it. The signed challenge is generated as outlined in section 6.5.1.1 . challenge = sign_data.transcript.challenge(); result = ed25519_verify(ticket_body.erased_pub, challenge, claim.erased_signature); assert(result == true); 6.6.2. Secondary Method If the slot doesn't have any associated ticket then the validator index contained in the claim should match the one given by the rule outlined in section 6.5.2 .","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.6.1. Primary Method","id":"53","title":"6.6.1. Primary Method"},"54":{"body":"The first VrfPreOutput which ships within the block's SlotClaim signature is mandatory and must be used as entropy source for the randomness which gets accumulated on-chain after block transactions execution. Given claim the instance of SlotClaim found within the block header, and randomness_accumulator the current value for the randomness accumulator, the randomness_accumulator value is updated as follows: randomness_vrf_input = vrf_input_from_items( domain: BYTES(\"sassafras-randomness-v1.0\"), data: [ curr_epoch.randomness, BYTES(curr_epoch.index), BYTES(slot) ] ); randomness_vrf_pre_output = claim.signature.pre_outputs[0]; randomness = vrf_bytes(32, randomness_vrf_input, randomness_vrf_pre_output); randomness_accumulator = BLAKE2(32, CONCAT(randomness_accumulator, randomness)); The randomness_accumulator never resets and is a continuously evolving value. It primarily serves as a basis for calculating the randomness associated to the epochs as outlined on section 6.1 , but custom usages from the user are not excluded.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 6.7. Randomness Accumulator","id":"54","title":"6.7. Randomness Accumulator"},"55":{"body":"None","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 7. Drawbacks","id":"55","title":"7. Drawbacks"},"56":{"body":"It is critical that implementations of this RFC undergo thorough testing on test networks. A security audit may be desirable to ensure the implementation does not introduce unwanted side effects.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 8. Testing, Security, and Privacy","id":"56","title":"8. Testing, Security, and Privacy"},"57":{"body":"","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9. Performance, Ergonomics, and Compatibility","id":"57","title":"9. Performance, Ergonomics, and Compatibility"},"58":{"body":"Adopting Sassafras consensus marks a significant improvement in reducing the frequency of short-lived forks. Forks are eliminated by design. Forks may only result from network disruptions or protocol attacks. In such cases, the choice of which fork to follow upon recovery is clear-cut, with only one valid option.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9.1. Performance","id":"58","title":"9.1. Performance"},"59":{"body":"No specific considerations.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9.2. Ergonomics","id":"59","title":"9.2. Ergonomics"},"6":{"body":"This RFC proposes a revision of the deposit constants in the nfts pallet on the Polkadot Asset Hub. The new deposit amounts would be determined by a standard deposit formula. This RFC suggests modifying deposit constants defined in the nfts pallet on the Polkadot Asset Hub to require a lower deposit. The reduced deposit amount should be determined by the deposit adjusted by the pricing mechanism (arbitrary number/another pricing function).","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Explanation","id":"6","title":"Explanation"},"60":{"body":"The adoption of Sassafras affects the native client and thus can't be introduced just via a runtime upgrade. A deployment strategy should be carefully engineered for live networks. This subject is left open for a dedicated RFC.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 9.3. Compatibility","id":"60","title":"9.3. Compatibility"},"61":{"body":"Web3 Foundation research page Sassafras research paper Ring-VRF research paper Sassafras reference implementation tracking issue Sassafras reference implementation main PR Bandersnatch VRFS reference implementation","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 10. Prior Art and References","id":"61","title":"10. Prior Art and References"},"62":{"body":"None","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 11. Unresolved Questions","id":"62","title":"11. Unresolved Questions"},"63":{"body":"While this RFC lays the groundwork and outlines the core aspects of the protocol, several crucial topics remain to be addressed in future RFCs. These include:","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12. Future Directions and Related Material","id":"63","title":"12. Future Directions and Related Material"},"64":{"body":"Outbound Interfaces : Interfaces that the host environment provides to the on-chain code, typically known as Host Functions . Unrecorded Inbound Interfaces . Interfaces that the on-chain code provides to the host code, typically known as Runtime APIs . Transactional Inbound Interfaces . Interfaces that the on-chain code provides to the world to alter the chain state, typically known as Transactions (or extrinsics in the Polkadot ecosystem)","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.1. Interactions with On-Chain Code","id":"64","title":"12.1. Interactions with On-Chain Code"},"65":{"body":"Protocol Migration . Exploring how this protocol can seamlessly replace an already operational instance of another protocol. Future RFCs should focus on deployment strategies to facilitate a smooth transition.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.2. Deployment Strategies","id":"65","title":"12.2. Deployment Strategies"},"66":{"body":"Procedure : Determining the procedure for the zk-SNARK SRS (Structured Reference String) initialization. Future RFCs should provide insights into whether this process should include an ad-hoc initialization ceremony or if we can reuse an SRS from another ecosystem (e.g. Zcash or Ethereum). Sharing with Para-chains : Considering the complexity of the process, we must understand whether the SRS is shared with system para-chains or maintained independently.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.3. ZK-SNARK SRS Initialization","id":"66","title":"12.3. ZK-SNARK SRS Initialization"},"67":{"body":"Mixnet Integration : Submitting tickets directly can pose a risk of potential deanonymization through traffic analysis. Subsequent RFCs should investigate the potential for incorporating Mixnet protocol or other privacy-enhancing mechanisms to address this concern.","breadcrumbs":"RFC-0026: Sassafras Consensus Protocol » 12.4. Anonymous Submission of Tickets.","id":"67","title":"12.4. Anonymous Submission of Tickets."},"68":{"body":"(source) Table of Contents RFC-34: XCM Absolute Location Account Derivation Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Start Date 05 October 2023 Description XCM Absolute Location Account Derivation Authors Gabriel Facco de Arruda","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » RFC-34: XCM Absolute Location Account Derivation","id":"68","title":"RFC-34: XCM Absolute Location Account Derivation"},"69":{"body":"This RFC proposes changes that enable the use of absolute locations in AccountId derivations, which allows protocols built using XCM to have static account derivations in any runtime, regardless of its position in the family hierarchy.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Summary","id":"69","title":"Summary"},"7":{"body":"Current deposit requirements are as follows Looking at the current code structure the currently implemented we can find that the pricing re-uses the logic of how Uniques are defined: parameter_types! { // re-use the Uniques deposits pub const NftsCollectionDeposit: Balance = UniquesCollectionDeposit::get(); pub const NftsItemDeposit: Balance = UniquesItemDeposit::get(); pub const NftsMetadataDepositBase: Balance = UniquesMetadataDepositBase::get(); pub const NftsAttributeDepositBase: Balance = UniquesAttributeDepositBase::get(); pub const NftsDepositPerByte: Balance = UniquesDepositPerByte::get();\n} In the existing setup, the Uniques are defined with specific deposit values for different elements: parameter_types! { pub const UniquesCollectionDeposit: Balance = UNITS / 10; // 1 / 10 UNIT deposit to create a collection pub const UniquesItemDeposit: Balance = UNITS / 1_000; // 1 / 1000 UNIT deposit to mint an item pub const UniquesMetadataDepositBase: Balance = deposit(1, 129); pub const UniquesAttributeDepositBase: Balance = deposit(1, 0); pub const UniquesDepositPerByte: Balance = deposit(0, 1);\n} As we can see in the code definition above the current code does not use the deposit funtion when the collection in the following instances: UniquesCollectionDeposit and UniquesItemDeposit.","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Current code structure","id":"7","title":"Current code structure"},"70":{"body":"These changes would allow protocol builders to leverage absolute locations to maintain the exact same derived account address across all networks in the ecosystem, thus enhancing user experience. One such protocol, that is the original motivation for this proposal, is InvArch's Saturn Multisig, which gives users a unifying multisig and DAO experience across all XCM connected chains.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Motivation","id":"70","title":"Motivation"},"71":{"body":"Ecosystem developers","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Stakeholders","id":"71","title":"Stakeholders"},"72":{"body":"This proposal aims to make it possible to derive accounts for absolute locations, enabling protocols that require the ability to maintain the same derived account in any runtime. This is done by deriving accounts from the hash of described absolute locations, which are static across different destinations. The same location can be represented in relative form and absolute form like so: // Relative location (from own perspective)\n{ parents: 0, interior: Here\n} // Relative location (from perspective of parent)\n{ parents: 0, interior: [Parachain(1000)]\n} // Relative location (from perspective of sibling)\n{ parents: 1, interior: [Parachain(1000)]\n} // Absolute location\n[GlobalConsensus(Kusama), Parachain(1000)] Using DescribeFamily, the above relative locations would be described like so: // Relative location (from own perspective)\n// Not possible. // Relative location (from perspective of parent)\n(b\"ChildChain\", Compact::::from(*index)).encode() // Relative location (from perspective of sibling)\n(b\"SiblingChain\", Compact::::from(*index)).encode() The proposed description for absolute location would follow the same pattern, like so: ( b\"GlobalConsensus\", network_id, b\"Parachain\", Compact::::from(para_id), tail\n).encode() This proposal requires the modification of two XCM types defined in the xcm-builder crate: The WithComputedOrigin barrier and the DescribeFamily MultiLocation descriptor. WithComputedOrigin The WtihComputedOrigin barrier serves as a wrapper around other barriers, consuming origin modification instructions and applying them to the message origin before passing to the inner barriers. One of the origin modifying instructions is UniversalOrigin, which serves the purpose of signaling that the origin should be a Universal Origin that represents the location as an absolute path prefixed by the GlobalConsensus junction. In it's current state the barrier transforms locations with the UniversalOrigin instruction into relative locations, so the proposed changes aim to make it return absolute locations instead. DescribeFamily The DescribeFamily location descriptor is part of the HashedDescription MultiLocation hashing system and exists to describe locations in an easy format for encoding and hashing, so that an AccountId can be derived from this MultiLocation. This implementation contains a match statement that does not match against absolute locations, so changes to it involve matching against absolute locations and providing appropriate descriptions for hashing.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Explanation","id":"72","title":"Explanation"},"73":{"body":"No drawbacks have been identified with this proposal.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Drawbacks","id":"73","title":"Drawbacks"},"74":{"body":"Tests can be done using simple unit tests, as this is not a change to XCM itself but rather to types defined in xcm-builder. Security considerations should be taken with the implementation to make sure no unwanted behavior is introduced. This proposal does not introduce any privacy considerations.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Testing, Security, and Privacy","id":"74","title":"Testing, Security, and Privacy"},"75":{"body":"","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Performance, Ergonomics, and Compatibility","id":"75","title":"Performance, Ergonomics, and Compatibility"},"76":{"body":"Depending on the final implementation, this proposal should not introduce much overhead to performance.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Performance","id":"76","title":"Performance"},"77":{"body":"The ergonomics of this proposal depend on the final implementation details.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Ergonomics","id":"77","title":"Ergonomics"},"78":{"body":"Backwards compatibility should remain unchanged, although that depend on the final implementation.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Compatibility","id":"78","title":"Compatibility"},"79":{"body":"DescirbeFamily type: https://github.com/paritytech/polkadot-sdk/blob/master/polkadot/xcm/xcm-builder/src/location_conversion.rs#L122 WithComputedOrigin type: https://github.com/paritytech/polkadot-sdk/blob/master/polkadot/xcm/xcm-builder/src/barriers.rs#L153","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Prior Art and References","id":"79","title":"Prior Art and References"},"8":{"body":"This proposed modification adjusts the deposits to use the deposit function instead of using an arbitrary number. parameter_types! { pub const NftsCollectionDeposit: Balance = deposit(1, 130); pub const NftsItemDeposit: Balance = deposit(1, 164); pub const NftsMetadataDepositBase: Balance = deposit(1, 129); pub const NftsAttributeDepositBase: Balance = deposit(1, 0); pub const NftsDepositPerByte: Balance = deposit(0, 1);\n} Calculations viewed bellow were calculated by using the following repository rfc-pricing . Polkadot | Name | Current price implementation | Proposed Modified by using the new deposit function | |---------------------------|----------------------------------|-------------------------| | collectionDeposit | 10 DOT | 0.20064 DOT | | itemDeposit | 0.01 DOT | 0.20081 DOT | | metadataDepositBase | 0.20129 DOT | 0.20076 DOT | | attributeDepositBase | 0.2 DOT | 0.2 DOT | Similarly the prices for Kusama ecosystem were calculated as: Kusama: | Name | Current price implementation | Proposed Price in KSM | |---------------------------|----------------------------------|---------------------------| | collectionDeposit | 0.1 KSM | 0.006688 KSM | | itemDeposit | 0.001 KSM | 0.000167 KSM | | metadataDepositBase | 0.006709666617 KSM | 0.0006709666617 KSM | | attributeDepositBase | 0.00666666666 KSM | 0.000666666666 KSM |","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Proposed Modification Using the Deposit Function","id":"8","title":"Proposed Modification Using the Deposit Function"},"80":{"body":"Implementation details and overall code is still up to discussion.","breadcrumbs":"RFC-34: XCM Absolute Location Account Derivation » Unresolved Questions","id":"80","title":"Unresolved Questions"},"81":{"body":"(source) Table of Contents RFC-0042: Add System version that replaces StateVersion on RuntimeVersion Summary Motivation Stakeholders Explanation Drawbacks Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 25th October 2023 Description Add System Version and remove State Version Authors Vedhavyas Singareddi","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » RFC-0042: Add System version that replaces StateVersion on RuntimeVersion","id":"81","title":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion"},"82":{"body":"At the moment, we have system_version field on RuntimeVersion that derives which state version is used for the Storage. We have a use case where we want extrinsics root is derived using StateVersion::V1. Without defining a new field under RuntimeVersion, we would like to propose adding system_version that can be used to derive both storage and extrinsic state version.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Summary","id":"82","title":"Summary"},"83":{"body":"Since the extrinsic state version is always StateVersion::V0, deriving extrinsic root requires full extrinsic data. This would be problematic when we need to verify the extrinsics root if the extrinsic sizes are bigger. This problem is further explored in https://github.com/polkadot-fellows/RFCs/issues/19 For Subspace project, we have an enshrined rollups called Domain with optimistic verification and Fraud proofs are used to detect malicious behavior. One of the Fraud proof variant is to derive Domain block extrinsic root on Subspace's consensus chain. Since StateVersion::V0 requires full extrinsic data, we are forced to pass all the extrinsics through the Fraud proof. One of the main challenge here is some extrinsics could be big enough that this variant of Fraud proof may not be included in the Consensus block due to Block's weight restriction. If the extrinsic root is derived using StateVersion::V1, then we do not need to pass the full extrinsic data but rather at maximum, 32 byte of extrinsic data.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Motivation","id":"83","title":"Motivation"},"84":{"body":"Technical Fellowship, in its role of maintaining system runtimes.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Stakeholders","id":"84","title":"Stakeholders"},"85":{"body":"In order to use project specific StateVersion for extrinsic roots, we proposed an implementation that introduced parameter to frame_system::Config but that unfortunately did not feel correct. So we would like to propose adding this change to the RuntimeVersion object. The system version, if introduced, will be used to derive both storage and extrinsic state version. If system version is 0, then both Storage and Extrinsic State version would use V0. If system version is 1, then Storage State version would use V1 and Extrinsic State version would use V0. If system version is 2, then both Storage and Extrinsic State version would use V1. If implemented, the new RuntimeVersion definition would look something similar to /// Runtime version (Rococo).\n#[sp_version::runtime_version]\npub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!(\"rococo\"), impl_name: create_runtime_str!(\"parity-rococo-v2.0\"), authoring_version: 0, spec_version: 10020, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 22, system_version: 1, };","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Explanation","id":"85","title":"Explanation"},"86":{"body":"There should be no drawbacks as it would replace state_version with same behavior but documentation should be updated so that chains know which system_version to use.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Drawbacks","id":"86","title":"Drawbacks"},"87":{"body":"AFAIK, should not have any impact on the security or privacy.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Testing, Security, and Privacy","id":"87","title":"Testing, Security, and Privacy"},"88":{"body":"These changes should be compatible for existing chains if they use state_version value for system_verision.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Performance, Ergonomics, and Compatibility","id":"88","title":"Performance, Ergonomics, and Compatibility"},"89":{"body":"I do not believe there is any performance hit with this change.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Performance","id":"89","title":"Performance"},"9":{"body":"In an effort to further lower barriers to entry and foster greater inclusivity, we propose additional modifications to the pricing structure. These proposed reductions are based on a collaborative and calculated approach, involving the consensus of leading NFT creators within the Polkadot and Kusama Asset Hub communities. The adjustments to deposit amounts are not made arbitrarily. Instead, they are the result of detailed discussions and analyses conducted with prominent NFT creators. Proposed Code Adjustments parameter_types! { pub const NftsCollectionDeposit: Balance = deposit(1, 130); pub const NftsItemDeposit: Balance = deposit(1, 164) / 40; pub const NftsMetadataDepositBase: Balance = deposit(1, 129) / 10; pub const NftsAttributeDepositBase: Balance = deposit(1, 0) / 10; pub const NftsDepositPerByte: Balance = deposit(0, 1);\n} Prices and Proposed Prices on Polkadot Asset Hub: Polkadot | Name | Current price implementation | Proposed Prices | |---------------------------|----------------------------------|---------------------| | collectionDeposit | 10 DOT | 0.20064 DOT | | itemDeposit | 0.01 DOT | 0.005 DOT | | metadataDepositBase | 0.20129 DOT | 0.002 DOT | | attributeDepositBase | 0.2 DOT | 0.002 DOT | Kusama | Name | Current price implementation | Proposed Price in KSM | |---------------------------|----------------------------------|---------------------------| | collectionDeposit | 0.1 KSM | 0.006688 KSM | | itemDeposit | 0.001 KSM | 0.000167 KSM | | metadataDepositBase | 0.006709666617 KSM | 0.0006709666617 KSM | | attributeDepositBase | 0.00666666666 KSM | 0.000666666666 KSM |","breadcrumbs":"RFC-0000: Lowering NFT Deposits on Polkadot and Kusama Asset Hubs » Enhanced Approach to Further Lower Barriers for Entry","id":"9","title":"Enhanced Approach to Further Lower Barriers for Entry"},"90":{"body":"This does not break any exposed Apis.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Ergonomics","id":"90","title":"Ergonomics"},"91":{"body":"This change should not break any compatibility.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Compatibility","id":"91","title":"Compatibility"},"92":{"body":"We proposed introducing a similar change by introducing a parameter to frame_system::Config but did not feel that is the correct way of introducing this change.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Prior Art and References","id":"92","title":"Prior Art and References"},"93":{"body":"I do not have any specific questions about this change at the moment.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Unresolved Questions","id":"93","title":"Unresolved Questions"},"94":{"body":"IMO, this change is pretty self-contained and there won't be any future work necessary.","breadcrumbs":"RFC-0042: Add System version that replaces StateVersion on RuntimeVersion » Future Directions and Related Material","id":"94","title":"Future Directions and Related Material"},"95":{"body":"(source) Table of Contents RFC-0000: Metadata for offline signers Summary Motivation Background Solution requirements Stakeholders Explanation Definitions General flow Metadata modularization Merging protocol Complete Binary Merkle Tree construction protocol Digest Chain verification Drawbacks Increased transaction size Transition overhead Testing, Security, and Privacy Performance, Ergonomics, and Compatibility Performance Ergonomics Compatibility Prior Art and References Unresolved Questions Future Directions and Related Material Start Date 2023-10-31 Description Add SignedExtension to check Metadata Root Hash Authors Alzymologist Oy, Zondax LLC, Parity Technologies","breadcrumbs":"RFC-0000: Metadata for offline signers » RFC-0000: Metadata for offline signers","id":"95","title":"RFC-0000: Metadata for offline signers"},"96":{"body":"Add a metadata digest value (33-byte constant within fixed spec_version) to Signed Extensions to supplement signer party with proof of correct extrinsic interpretation. The digest value is generated once before release and is well-known and deterministic. The digest mechanism is designed to be modular and flexible. It also supports partial metadata transfer as needed by the signing party's extrinsic decoding mechanism. This considers signing devices potentially limited communication bandwidth and/or memory capacity.","breadcrumbs":"RFC-0000: Metadata for offline signers » Summary","id":"96","title":"Summary"},"97":{"body":"","breadcrumbs":"RFC-0000: Metadata for offline signers » Motivation","id":"97","title":"Motivation"},"98":{"body":"While all blockchain systems support (at least in some sense) offline signing used in air-gapped wallets and lightweight embedded devices, only few allow simultaneously complex upgradeable logic and full message decoding on the cold off-line signer side; Substrate is one of these heartening few, and therefore - we should build on this feature to greatly improve transaction security, and thus in general, network resilience. As a starting point, it is important to recognise that prudence and due care are naturally required. As we build further reliance on this feature we should be very careful to make sure it works correctly every time so as not to create false sense of security. In order to enable decoding that is small and optimized for chain storage transactions, a metadata entity is used, which is not at all small in itself (on the order of half-MB for most networks). This is a dynamic data chunk which completely describes chain interfaces and properties that could be made into a portable scale-encoded string for any given network version and passed along into an off-chain device to familiarize it with latest network updates. Of course, compromising this metadata anywhere in the path could result in differences between what user sees and signs, thus it is essential that we protect it. Therefore, we have 2 problems to be solved: Metadata is large, takes long time to be passed into a cold storage device with memory insufficient for its storage; metadata SHOULD be shortened and transmission SHOULD be optimized. Metadata authenticity SHOULD be ensured. As of now, there is no working solution for (1), as the whole metadata has to be passed to the device. On top of this, the solution for (2) heavily relies on a trusted party managing keys and ensuring metadata is indeed authentic: creating poorly decentralized points of potential failure.","breadcrumbs":"RFC-0000: Metadata for offline signers » Background","id":"98","title":"Background"},"99":{"body":"Include metadata digest into signature Some cryptographically strong digest of metadata MAY be included into signable blob. There SHALL NOT be storage overhead for this blob, nor computational overhead; thus MUST be a constant within a given runtime, deterministically defined by metadata. Metadata information that could be used in signable extrinsic decoding MAY be included in digest, its inclusion MUST be indicated in signed extensions; Digest MUST be deterministic with respect to metadata; Digest MUST be cryptographically strong against pre-image, both first and second; Extra-metadata information necessary for extrinsic decoding and constant within runtime version MUST be included in digest; It SHOULD be possible to quickly withdraw offline signing mechanism without access to cold signing devices; Digest format SHOULD be versioned. Work necessary for proving metadata authenticity MAY be omitted at discretion of signer device design (to support automation tools). Reduce metadata size Metadata should be stripped from parts that are not necessary to parse a signable extrinsic, then it should be separated into a finite set of self-descriptive chunks. Thus, a subset of chunks necessary for signable extrinsic decoding and rendering could be sent, possibly in small portions (ultimately - one at a time), to cold device together with proof. Single chunk with proof payload size SHOULD fit within few kB; Chunks handling mechanism SHOULD support chunks being sent in any order without memory utilization overhead; Unused enum variants MUST be stripped (this has great impact on transmitted metadata size; examples: era enum, enum with all calls for call batching).","breadcrumbs":"RFC-0000: Metadata for offline signers » Solution requirements","id":"99","title":"Solution requirements"}},"length":510,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"0":{"0":{"1":{"6":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"9":{"tf":1.0}}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":6,"docs":{"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"7":{"5":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"5":{"df":1,"docs":{"327":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"192":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"0":{"0":{"6":{"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"9":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"327":{"tf":1.0}}},"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"5":{"df":1,"docs":{"375":{"tf":1.0}}},"6":{"df":1,"docs":{"459":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"174":{"tf":1.0},"353":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"364":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"394":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"399":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"275":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"427":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"292":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"303":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"440":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"453":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"463":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"323":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"496":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"339":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"120":{"tf":1.0}}},"4":{"df":1,"docs":{"353":{"tf":1.0}}},"5":{".":{"0":{"8":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":2,"docs":{"216":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":4,"docs":{"230":{"tf":1.0},"248":{"tf":1.0},"353":{"tf":1.0},"380":{"tf":1.0}}},"9":{":":{"1":{"3":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"364":{"tf":1.0}}},"b":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":3.3166247903554}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"127":{"tf":1.0},"164":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":3.872983346207417},"223":{"tf":1.0},"329":{"tf":1.7320508075688772},"358":{"tf":4.58257569495584},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"9":{"tf":1.0}},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":4.795831523312719}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"x":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"1":{"df":1,"docs":{"108":{"tf":1.0}}},"2":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"3":{"d":{"d":{"8":{"0":{"8":{"4":{"d":{"5":{"0":{"d":{"b":{"b":{"b":{"c":{"9":{"6":{"2":{"0":{"6":{"7":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"c":{"3":{"7":{"b":{"6":{"2":{"7":{"8":{"3":{"1":{"d":{"9":{"3":{"3":{"9":{"df":0,"docs":{},"f":{"5":{"a":{"6":{"df":0,"docs":{},"e":{"4":{"2":{"6":{"a":{"3":{"2":{"df":0,"docs":{},"e":{"3":{"0":{"7":{"6":{"3":{"1":{"3":{"d":{"8":{"7":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"108":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"179":{"tf":1.0},"188":{"tf":1.0},"385":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"27":{"tf":1.0}}},"5":{"df":3,"docs":{"327":{"tf":1.0},"375":{"tf":1.4142135623730951},"385":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"8":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"224":{"tf":1.0},"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":8,"docs":{"153":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"375":{"tf":2.0},"7":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":3.872983346207417},"224":{"tf":1.0},"358":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"183":{"tf":1.0},"209":{"tf":2.23606797749979},"224":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"440":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"1":{",":{"6":{"df":1,"docs":{"384":{"tf":1.0}}},"7":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"209":{"tf":2.0}},"u":{"3":{"2":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"329":{"tf":1.0},"339":{"tf":1.0},"496":{"tf":1.0},"62":{"tf":1.0}}},"2":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"66":{"tf":1.0}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}}},"8":{"df":6,"docs":{"126":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}}},"9":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":5,"docs":{"141":{"tf":1.0},"188":{"tf":1.0},"23":{"tf":1.0},"429":{"tf":1.0},"63":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":1,"docs":{"482":{"tf":1.0}}},"4":{"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"175":{"tf":1.0},"209":{"tf":1.0},"248":{"tf":1.0},"421":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.0}}}}},"5":{"0":{"0":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":1,"docs":{"209":{"tf":3.4641016151377544}},"u":{"3":{"2":{"df":1,"docs":{"209":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"209":{"tf":1.0}}},"2":{"df":1,"docs":{"209":{"tf":1.0}}},"df":5,"docs":{"209":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"323":{"tf":1.0},"444":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":4,"docs":{"146":{"tf":1.0},"209":{"tf":3.4641016151377544},"384":{"tf":1.0},"385":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}}}},"8":{",":{"3":{"3":{"3":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"141":{"tf":1.0},"188":{"tf":1.0}}},"9":{".":{"0":{"7":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"394":{"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":1,"docs":{"14":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"380":{"tf":1.0}}},":":{"1":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":52,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"108":{"tf":1.0},"110":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"307":{"tf":1.0},"327":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.23606797749979},"358":{"tf":5.656854249492381},"365":{"tf":1.0},"366":{"tf":1.7320508075688772},"371":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"375":{"tf":3.1622776601683795},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":2.23606797749979},"385":{"tf":1.4142135623730951},"406":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":0,"docs":{},"v":{"df":1,"docs":{"444":{"tf":1.0}}}}},"2":{",":{"8":{"9":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"'":{"df":2,"docs":{"177":{"tf":1.4142135623730951},"195":{"tf":1.0}}},"df":5,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"327":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"29":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"30":{"tf":1.0}}},"5":{"df":1,"docs":{"327":{"tf":2.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":2.0},"329":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.7320508075688772}},"u":{"3":{"2":{"df":1,"docs":{"209":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"2":{"df":2,"docs":{"293":{"tf":1.0},"452":{"tf":1.0}}},"3":{"df":30,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"399":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":3,"docs":{"14":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":2.0},"303":{"tf":1.0}}},"2":{",":{"5":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{",":{"8":{"3":{"3":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"153":{"tf":1.0},"199":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"399":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"496":{"tf":1.0}}},"5":{"6":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":1,"docs":{"275":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"7":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"159":{"tf":1.0},"329":{"tf":1.0}}},"8":{"df":1,"docs":{"208":{"tf":1.0}}},"9":{"6":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"164":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"23":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"291":{"tf":1.0},"358":{"tf":3.4641016151377544},"371":{"tf":1.7320508075688772},"375":{"tf":2.23606797749979},"384":{"tf":2.0},"406":{"tf":1.0},"424":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"3":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"32":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"33":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"34":{"tf":1.0}}},"a":{"df":1,"docs":{"140":{"tf":1.0}}},"b":{"df":1,"docs":{"140":{"tf":1.0}}},"c":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"196":{"tf":1.0},"208":{"tf":1.0},"339":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":2.0},"421":{"tf":1.0},"453":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":10,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.4142135623730951},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"486":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}},"3":{"3":{"8":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}}},"4":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"209":{"tf":1.0}}},"8":{"df":1,"docs":{"358":{"tf":1.0}}},"df":25,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.0},"122":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"31":{"tf":1.0},"329":{"tf":1.4142135623730951},"358":{"tf":2.449489742783178},"366":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":2.0},"406":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0}}},"4":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"36":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"37":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.0}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.0}}},"5":{"df":2,"docs":{"23":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"209":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"14":{"tf":1.0}}},"5":{"df":3,"docs":{"208":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":2.0}}},"8":{",":{"6":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"428":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":2.0},"438":{"tf":1.7320508075688772}}},"9":{",":{"2":{"1":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"206":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.0},"358":{"tf":2.449489742783178},"366":{"tf":1.0},"375":{"tf":1.4142135623730951},"384":{"tf":1.7320508075688772},"444":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951}},"·":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"42":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"45":{"tf":1.0}}},"2":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":6,"docs":{"126":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.0},"209":{"tf":2.0},"258":{"tf":1.0}}},"3":{",":{"3":{"3":{"3":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{",":{"6":{"0":{"0":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.4142135623730951},"222":{"tf":1.0},"23":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.4142135623730951},"400":{"tf":1.0},"41":{"tf":1.0}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"48":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"49":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"50":{"tf":1.0}}},"5":{".":{"1":{".":{"1":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"3":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}},"2":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"52":{"tf":1.0}}},"7":{"df":4,"docs":{"23":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"358":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"33":{"tf":1.0},"457":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"5":{",":{"3":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{",":{"6":{"6":{"7":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"206":{"tf":1.0},"23":{"tf":1.0},"384":{"tf":1.4142135623730951},"424":{"tf":1.0},"46":{"tf":1.0},"463":{"tf":1.0}}},"7":{"7":{",":{"0":{"0":{"0":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"179":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"23":{"tf":1.0},"400":{"tf":1.0},"421":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"8":{"0":{",":{"0":{"0":{"0":{"df":3,"docs":{"209":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"134":{"tf":1.0},"205":{"tf":1.7320508075688772},"209":{"tf":2.23606797749979}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"1":{",":{"8":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"102":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"222":{"tf":1.0},"23":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"56":{"tf":1.0}}},"9":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"59":{"tf":1.0}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"183":{"tf":1.0}}},"1":{"b":{"1":{"7":{"1":{"b":{"b":{"1":{"5":{"8":{"df":0,"docs":{},"e":{"2":{"d":{"3":{"8":{"4":{"8":{"df":0,"docs":{},"f":{"a":{"2":{"3":{"a":{"9":{"df":0,"docs":{},"f":{"1":{"c":{"2":{"5":{"1":{"8":{"2":{"df":0,"docs":{},"f":{"b":{"8":{"df":0,"docs":{},"e":{"2":{"0":{"3":{"1":{"3":{"b":{"2":{"c":{"1":{"df":0,"docs":{},"e":{"b":{"4":{"9":{"2":{"1":{"9":{"d":{"a":{"7":{"a":{"7":{"0":{"c":{"df":0,"docs":{},"e":{"9":{"0":{"c":{"3":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"9":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"57":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}},"_":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"164":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"(":{"1":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{},"x":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{".":{"a":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"200":{"tf":1.7320508075688772},"204":{"tf":1.0},"312":{"tf":1.0},"331":{"tf":1.0},"72":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}}},"v":{"df":12,"docs":{"107":{"tf":1.0},"136":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"406":{"tf":1.0},"51":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":3.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"441":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"151":{"tf":1.0},"256":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"131":{"tf":1.0},"149":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.4142135623730951},"358":{"tf":3.0},"359":{"tf":1.0},"362":{"tf":1.0},"378":{"tf":1.0},"422":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"144":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"455":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"5":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"365":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"r":{"d":{"df":10,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"161":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"235":{"tf":1.0},"269":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"197":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.0},"206":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.4142135623730951},"444":{"tf":2.0},"455":{"tf":1.7320508075688772},"469":{"tf":1.0},"483":{"tf":1.4142135623730951},"487":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772}},"i":{"d":{"df":6,"docs":{"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":2,"docs":{"396":{"tf":1.0},"398":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"223":{"tf":1.0},"23":{"tf":1.0},"398":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.7320508075688772}}}}},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":14,"docs":{"209":{"tf":1.0},"236":{"tf":1.0},"254":{"tf":1.0},"276":{"tf":1.0},"375":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.0},"331":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"269":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"211":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"281":{"tf":1.0},"421":{"tf":1.0},"49":{"tf":1.0}}}},"v":{"df":8,"docs":{"178":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"24":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"310":{"tf":1.0},"398":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"12":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.4142135623730951},"374":{"tf":1.0},"384":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"377":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"222":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":1.0},"418":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"146":{"tf":1.0},"177":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"359":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951},"51":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"504":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"108":{"tf":1.0}}}}}}}},"df":6,"docs":{"130":{"tf":1.0},"14":{"tf":1.0},"205":{"tf":1.4142135623730951},"393":{"tf":1.0},"425":{"tf":1.0},"452":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"165":{"tf":1.0},"184":{"tf":1.4142135623730951},"24":{"tf":1.0},"250":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":2.0},"277":{"tf":1.0},"365":{"tf":1.0},"418":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":18,"docs":{"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"140":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"444":{"tf":1.0},"500":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"191":{"tf":1.0},"211":{"tf":1.0},"296":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"418":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"204":{"tf":1.0},"254":{"tf":1.0},"3":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"4":{"tf":1.0},"421":{"tf":2.23606797749979},"466":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"31":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"199":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"384":{"tf":1.0},"422":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"13":{"tf":1.0},"33":{"tf":1.0},"411":{"tf":1.0},"422":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"412":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"132":{"tf":1.0},"14":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"306":{"tf":1.0},"418":{"tf":1.0},"430":{"tf":1.4142135623730951},"435":{"tf":1.0},"449":{"tf":1.4142135623730951},"466":{"tf":1.0},"477":{"tf":1.0},"504":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"375":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1":{"tf":1.0},"421":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"382":{"tf":1.0},"398":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"422":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"196":{"tf":1.7320508075688772},"211":{"tf":1.0},"217":{"tf":1.0},"311":{"tf":1.0},"34":{"tf":1.0},"466":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"269":{"tf":1.0},"327":{"tf":1.0},"444":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"143":{"tf":1.0},"455":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":17,"docs":{"177":{"tf":1.0},"19":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"382":{"tf":1.0},"41":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"a":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{}},"l":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":5,"docs":{"101":{"tf":1.0},"125":{"tf":2.0},"161":{"tf":1.0},"214":{"tf":1.4142135623730951},"486":{"tf":1.0}}}}}}}}},"i":{"c":{"df":4,"docs":{"209":{"tf":4.242640687119285},"364":{"tf":1.0},"441":{"tf":2.0},"444":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"398":{"tf":1.0}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}}},"v":{"df":1,"docs":{"284":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"404":{"tf":1.0},"414":{"tf":1.0}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":46,"docs":{"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":2.8284271247461903},"164":{"tf":2.449489742783178},"165":{"tf":3.1622776601683795},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.0},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":2.0},"209":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"303":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"317":{"tf":1.0},"353":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":3.7416573867739413},"358":{"tf":3.4641016151377544},"363":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.7320508075688772},"421":{"tf":1.7320508075688772},"422":{"tf":1.0},"424":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.4142135623730951},"509":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":54,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"161":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":2.23606797749979},"222":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"255":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.7320508075688772},"343":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.0},"404":{"tf":1.4142135623730951},"411":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.23606797749979},"421":{"tf":1.0},"441":{"tf":1.7320508075688772},"444":{"tf":2.0},"45":{"tf":1.0},"460":{"tf":1.0},"466":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"3":{"tf":1.0},"421":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"441":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":23,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.23606797749979},"211":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"341":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.4142135623730951},"414":{"tf":1.0},"421":{"tf":1.0},"466":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"206":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"222":{"tf":1.0},"318":{"tf":1.0},"436":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":12,"docs":{"196":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"228":{"tf":1.0},"344":{"tf":1.0},"358":{"tf":1.7320508075688772},"384":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"178":{"tf":1.0},"27":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"423":{"tf":1.0},"78":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":25,"docs":{"104":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"164":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"312":{"tf":1.0},"339":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":2.8284271247461903},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"384":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"26":{"tf":1.0},"358":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"180":{"tf":1.0},"340":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"14":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"358":{"tf":1.7320508075688772},"386":{"tf":1.0},"388":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.7320508075688772},"498":{"tf":1.7320508075688772},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"421":{"tf":1.0},"422":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"179":{"tf":1.0}},"u":{"df":1,"docs":{"197":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}},"i":{"df":2,"docs":{"3":{"tf":1.0},"67":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"418":{"tf":1.0},"422":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"131":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"319":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"210":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"250":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"12":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"311":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"398":{"tf":1.0},"423":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"384":{"tf":1.0},"386":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"250":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"179":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.7320508075688772},"472":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"119":{"tf":1.0},"200":{"tf":1.7320508075688772},"209":{"tf":1.0},"281":{"tf":1.0},"358":{"tf":2.449489742783178},"384":{"tf":1.0},"445":{"tf":1.0},"500":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"358":{"tf":1.0},"406":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"#":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":20,"docs":{"140":{"tf":1.4142135623730951},"206":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"309":{"tf":1.4142135623730951},"319":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.4142135623730951},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"492":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":2,"docs":{"200":{"tf":1.0},"235":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"188":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"118":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}},"r":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":11,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.23606797749979},"183":{"tf":2.0},"188":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0}}},"df":14,"docs":{"145":{"tf":1.0},"226":{"tf":1.0},"252":{"tf":1.0},"283":{"tf":1.0},"315":{"tf":1.0},"358":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"449":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"34":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"422":{"tf":1.0},"43":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"205":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"472":{"tf":1.0},"488":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":4,"docs":{"140":{"tf":1.7320508075688772},"268":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"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":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"236":{"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":11,"docs":{"146":{"tf":1.0},"153":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"43":{"tf":1.4142135623730951},"6":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"177":{"tf":2.0},"179":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"303":{"tf":1.0},"310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"144":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.0},"158":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"146":{"tf":1.0},"384":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":1,"docs":{"500":{"tf":1.4142135623730951}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"177":{"tf":1.0},"398":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"223":{"tf":1.0},"372":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":2.0},"418":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"312":{"tf":1.0},"365":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"14":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.0},"258":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"459":{"tf":1.0},"500":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}}}}}},"df":3,"docs":{"122":{"tf":1.0},"33":{"tf":1.0},"486":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"u":{"d":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":56,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"172":{"tf":1.0},"196":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"377":{"tf":1.0},"380":{"tf":1.0},"391":{"tf":1.0},"399":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"493":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"255":{"tf":1.0},"382":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"n":{".":{"1":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.4142135623730951},"421":{"tf":1.0},"443":{"tf":1.0},"452":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"222":{"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":2,"docs":{"125":{"tf":1.0},"167":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"426":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"178":{"tf":1.0},"183":{"tf":1.0}}}}}}}}},"df":24,"docs":{"1":{"tf":1.7320508075688772},"14":{"tf":2.0},"175":{"tf":2.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"184":{"tf":2.6457513110645907},"19":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"310":{"tf":2.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"'":{"df":2,"docs":{"179":{"tf":1.0},"183":{"tf":1.0}}},"df":15,"docs":{"12":{"tf":1.0},"175":{"tf":2.6457513110645907},"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":2.23606797749979},"179":{"tf":2.449489742783178},"180":{"tf":2.0},"181":{"tf":2.23606797749979},"183":{"tf":2.23606797749979},"184":{"tf":2.6457513110645907},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"184":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.7320508075688772},"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":16,"docs":{"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"128":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":2.449489742783178},"206":{"tf":3.1622776601683795},"209":{"tf":3.1622776601683795},"217":{"tf":1.4142135623730951},"222":{"tf":2.449489742783178},"24":{"tf":1.0},"358":{"tf":1.0},"50":{"tf":2.23606797749979}},"e":{"d":{"(":{"a":{"df":1,"docs":{"209":{"tf":2.0}}},"b":{"df":1,"docs":{"209":{"tf":2.449489742783178}}},"c":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":22,"docs":{"106":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"210":{"tf":1.0},"269":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"384":{"tf":1.4142135623730951},"429":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"48":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":14,"docs":{"131":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"421":{"tf":1.0},"455":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"232":{"tf":1.4142135623730951},"398":{"tf":1.0},"407":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772}}}}},"r":{"df":2,"docs":{"284":{"tf":1.0},"398":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"184":{"tf":2.6457513110645907},"188":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"151":{"tf":1.7320508075688772},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"231":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"162":{"tf":1.0},"232":{"tf":1.0},"356":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"500":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"47":{"tf":2.0},"48":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"310":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"199":{"tf":2.0},"204":{"tf":1.0},"206":{"tf":1.0},"307":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}},"df":10,"docs":{"210":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"402":{"tf":1.0},"474":{"tf":1.0},"488":{"tf":1.0},"56":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"292":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":48,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"388":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.7320508075688772},"500":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"26":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"209":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.7320508075688772},"468":{"tf":1.0}}}},"df":4,"docs":{"11":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"99":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"421":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":35,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":2.0},"143":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.4142135623730951},"395":{"tf":1.0},"402":{"tf":1.0},"421":{"tf":1.4142135623730951},"425":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":2.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.4142135623730951},"358":{"tf":1.0},"374":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"421":{"tf":1.0}}},"df":8,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"358":{"tf":1.0}}},"y":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"140":{"tf":2.0},"204":{"tf":1.0},"222":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"406":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"147":{"tf":1.0},"218":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"158":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"355":{"tf":1.0},"500":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":2,"docs":{"235":{"tf":1.4142135623730951},"307":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"222":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":3.0},"321":{"tf":1.0},"322":{"tf":1.0},"382":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":1.0},"459":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"9":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":5,"docs":{"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"61":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"3":{"tf":1.0},"423":{"tf":1.0},"72":{"tf":2.23606797749979},"9":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"5":{"8":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":42,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"164":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"3":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.7320508075688772},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"375":{"tf":1.4142135623730951},"398":{"tf":1.0},"421":{"tf":1.0}}}}}},"i":{"c":{"df":6,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"377":{"tf":1.0}}},"df":6,"docs":{"204":{"tf":1.0},"219":{"tf":1.0},"247":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"54":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"139":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"126":{"tf":1.4142135623730951},"184":{"tf":1.0},"209":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"504":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.4142135623730951},"199":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.4142135623730951},"355":{"tf":1.0},"388":{"tf":1.0},"406":{"tf":1.0},"442":{"tf":1.0},"48":{"tf":1.0}}}}},"df":36,"docs":{"104":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.0},"209":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"235":{"tf":1.0},"255":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"310":{"tf":1.0},"359":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.7320508075688772},"384":{"tf":1.0},"386":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"486":{"tf":1.7320508075688772},"502":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"146":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":31,"docs":{"112":{"tf":1.0},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.4142135623730951},"421":{"tf":1.0},"43":{"tf":1.0},"466":{"tf":1.0},"492":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":1,"docs":{"398":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"130":{"tf":1.4142135623730951},"140":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":5.5677643628300215},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"308":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"384":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"384":{"tf":1.4142135623730951},"74":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"358":{"tf":3.1622776601683795},"501":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"165":{"tf":1.0},"199":{"tf":1.0},"250":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":11,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"193":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"129":{"tf":1.4142135623730951},"358":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}},"w":{"df":13,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"205":{"tf":1.4142135623730951},"329":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.0},"469":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"210":{"tf":1.0},"240":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"455":{"tf":1.4142135623730951},"459":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"206":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}},"df":5,"docs":{"161":{"tf":1.0},"250":{"tf":1.0},"296":{"tf":1.4142135623730951},"418":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":14,"docs":{"14":{"tf":1.0},"161":{"tf":1.7320508075688772},"176":{"tf":1.0},"179":{"tf":1.0},"268":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"398":{"tf":2.449489742783178},"416":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"444":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"169":{"tf":1.0},"180":{"tf":1.0},"313":{"tf":1.0},"355":{"tf":1.0},"396":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"119":{"tf":1.0},"179":{"tf":1.0},"250":{"tf":1.4142135623730951},"372":{"tf":1.0},"414":{"tf":1.0},"465":{"tf":1.0},"51":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"120":{"tf":1.0},"158":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"208":{"tf":1.0},"214":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"327":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"460":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"98":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"183":{"tf":1.0},"200":{"tf":1.4142135623730951},"215":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"199":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.23606797749979}}}}},"df":3,"docs":{"199":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":5,"docs":{"429":{"tf":2.0},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.4142135623730951},"83":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"166":{"tf":1.0},"47":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"171":{"tf":1.0},"500":{"tf":1.0},"95":{"tf":1.0}}}}},"d":{"df":4,"docs":{"208":{"tf":1.0},"23":{"tf":1.4142135623730951},"38":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"102":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"209":{"tf":3.0},"32":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.7320508075688772},"384":{"tf":1.0},"388":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"505":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"209":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"(":{"3":{"2":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}},"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":2,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"191":{"tf":1.0}}}},"b":{"df":8,"docs":{"176":{"tf":1.0},"179":{"tf":2.6457513110645907},"181":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"99":{"tf":1.4142135623730951}},"s":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"'":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"407":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"399":{"tf":1.0},"400":{"tf":1.0},"405":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"14":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":66,"docs":{"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":2.6457513110645907},"146":{"tf":5.196152422706632},"158":{"tf":1.7320508075688772},"161":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":3.1622776601683795},"208":{"tf":2.23606797749979},"209":{"tf":3.1622776601683795},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"363":{"tf":1.0},"382":{"tf":2.0},"384":{"tf":1.0},"39":{"tf":1.0},"399":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":2.449489742783178},"402":{"tf":1.0},"404":{"tf":2.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":2.0},"457":{"tf":2.0},"459":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":3.7416573867739413},"470":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"205":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":6,"docs":{"183":{"tf":1.0},"215":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"311":{"tf":1.0},"366":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"b":{"df":4,"docs":{"209":{"tf":3.0},"364":{"tf":1.0},"441":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"232":{"tf":1.4142135623730951},"235":{"tf":2.6457513110645907},"236":{"tf":1.0},"241":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":1,"docs":{"398":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"384":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"142":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"248":{"tf":1.7320508075688772},"250":{"tf":2.6457513110645907},"256":{"tf":2.23606797749979},"258":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"119":{"tf":1.0}},"h":{"df":29,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"219":{"tf":1.0},"254":{"tf":1.0},"30":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"321":{"tf":1.0},"382":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"344":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.0},"355":{"tf":1.0}}}}},"df":8,"docs":{"209":{"tf":1.7320508075688772},"384":{"tf":1.0},"386":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"431":{"tf":1.0},"500":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"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":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"129":{"tf":1.4142135623730951},"384":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":13,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.0},"311":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.4142135623730951},"436":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":1.0},"506":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"187":{"tf":1.0},"268":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"217":{"tf":1.0},"220":{"tf":1.0}}}},"df":2,"docs":{"366":{"tf":1.0},"368":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"355":{"tf":2.449489742783178},"358":{"tf":5.5677643628300215},"362":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"146":{"tf":1.0},"501":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"215":{"tf":1.0},"235":{"tf":1.4142135623730951},"277":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"425":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"5":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"2":{"2":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"194":{"tf":1.0},"408":{"tf":1.0},"449":{"tf":1.0},"455":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"159":{"tf":1.0},"415":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":2.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"208":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"208":{"tf":3.1622776601683795},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}},"df":18,"docs":{"204":{"tf":3.0},"205":{"tf":3.4641016151377544},"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":2.23606797749979},"364":{"tf":1.7320508075688772},"365":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"129":{"tf":1.0},"296":{"tf":1.0},"400":{"tf":1.0},"486":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"402":{"tf":1.0},"481":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"394":{"tf":1.7320508075688772},"395":{"tf":1.4142135623730951},"398":{"tf":2.8284271247461903}}}},"y":{"df":2,"docs":{"186":{"tf":1.0},"200":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"398":{"tf":1.0},"421":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"253":{"tf":1.0},"254":{"tf":2.0},"33":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"355":{"tf":1.0},"358":{"tf":4.47213595499958},"384":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"51":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"s":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"51":{"tf":1.0},"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":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"256":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":7,"docs":{"309":{"tf":1.0},"421":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"401":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":46,"docs":{"102":{"tf":1.7320508075688772},"128":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.23606797749979},"209":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.7320508075688772},"281":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"355":{"tf":1.7320508075688772},"358":{"tf":2.449489742783178},"362":{"tf":1.4142135623730951},"382":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.7320508075688772},"460":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"df":2,"docs":{"206":{"tf":1.0},"468":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"206":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":1.0},"358":{"tf":1.0},"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"140":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"140":{"tf":3.7416573867739413},"23":{"tf":2.0},"235":{"tf":2.6457513110645907},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"307":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":16,"docs":{"141":{"tf":2.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"146":{"tf":2.8284271247461903},"147":{"tf":2.0},"148":{"tf":2.449489742783178},"149":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"158":{"tf":2.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"200":{"tf":1.0}}}},"c":{"df":6,"docs":{"266":{"tf":1.0},"313":{"tf":1.0},"327":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"179":{"tf":1.0},"204":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"197":{"tf":1.0},"201":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"386":{"tf":1.0},"98":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"473":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"101":{"tf":1.0},"171":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"296":{"tf":1.0},"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":45,"docs":{"106":{"tf":1.0},"112":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"255":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"464":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.4142135623730951},"58":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"382":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"164":{"tf":1.0},"415":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"129":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"358":{"tf":1.0},"361":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"506":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"130":{"tf":1.0},"204":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":2.0},"233":{"tf":1.0},"235":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"284":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"418":{"tf":1.0},"47":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"194":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"18":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0}}},"df":129,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":3.0},"149":{"tf":1.7320508075688772},"158":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":2.23606797749979},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.7320508075688772},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":2.0},"201":{"tf":1.0},"204":{"tf":4.47213595499958},"205":{"tf":2.6457513110645907},"206":{"tf":2.449489742783178},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":3.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.7320508075688772},"250":{"tf":3.1622776601683795},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":2.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":2.0},"309":{"tf":2.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.449489742783178},"312":{"tf":3.1622776601683795},"313":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"366":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":1.7320508075688772},"386":{"tf":1.0},"421":{"tf":1.0},"436":{"tf":1.4142135623730951},"442":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.7320508075688772},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.7320508075688772},"486":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":2.23606797749979},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"365":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"83":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"205":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":106,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"119":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"319":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":2.0},"385":{"tf":1.0},"386":{"tf":1.0},"400":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":2.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.7320508075688772},"468":{"tf":1.4142135623730951},"47":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"492":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":2.0},"504":{"tf":1.0},"506":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"235":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"220":{"tf":1.0},"222":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"427":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"209":{"tf":1.7320508075688772},"441":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"207":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":16,"docs":{"111":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"382":{"tf":1.0},"408":{"tf":1.4142135623730951},"43":{"tf":1.0},"466":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"472":{"tf":2.0},"49":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"358":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"384":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"384":{"tf":2.449489742783178}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"12":{"tf":1.0},"222":{"tf":1.0},"331":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"164":{"tf":1.0},"194":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"143":{"tf":1.4142135623730951},"253":{"tf":1.0},"310":{"tf":1.0},"372":{"tf":1.0},"421":{"tf":1.0},"48":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"129":{"tf":2.0}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"106":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"127":{"tf":2.6457513110645907},"128":{"tf":2.0},"129":{"tf":4.47213595499958},"130":{"tf":2.0},"139":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"122":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}}}}}}}}}}},"i":{"df":1,"docs":{"295":{"tf":1.0}},"r":{"c":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{},"s":{"[":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"179":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"241":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"470":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":3.605551275463989},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"498":{"tf":1.0},"502":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"31":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"179":{"tf":1.0},"187":{"tf":1.0}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"161":{"tf":1.0},"391":{"tf":1.0}}},"r":{"df":12,"docs":{"193":{"tf":1.0},"211":{"tf":1.0},"266":{"tf":1.0},"360":{"tf":1.0},"398":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"442":{"tf":1.0},"472":{"tf":1.0},"502":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.4142135623730951},"429":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":33,"docs":{"130":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"171":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"263":{"tf":1.0},"318":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":2.449489742783178},"386":{"tf":1.0},"388":{"tf":1.0},"456":{"tf":1.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.7320508075688772},"60":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"500":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"183":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"129":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"327":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"410":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"32":{"tf":1.0}}},"df":40,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":2.23606797749979},"126":{"tf":1.0},"127":{"tf":1.0},"134":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"184":{"tf":1.0},"23":{"tf":1.4142135623730951},"270":{"tf":1.0},"297":{"tf":1.0},"33":{"tf":1.7320508075688772},"341":{"tf":1.7320508075688772},"358":{"tf":1.7320508075688772},"360":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0},"385":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.0},"435":{"tf":1.0},"465":{"tf":1.7320508075688772},"466":{"tf":2.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.449489742783178},"470":{"tf":2.449489742783178},"471":{"tf":1.0},"472":{"tf":2.23606797749979},"473":{"tf":1.0},"49":{"tf":1.0},"498":{"tf":1.0},"64":{"tf":2.23606797749979},"7":{"tf":2.0},"80":{"tf":1.0},"9":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"308":{"tf":1.4142135623730951},"465":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"l":{"d":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":19,"docs":{"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":3.872983346207417},"233":{"tf":2.0},"235":{"tf":3.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":27,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":2.0},"265":{"tf":2.449489742783178},"266":{"tf":2.449489742783178},"268":{"tf":2.0},"269":{"tf":2.6457513110645907},"270":{"tf":1.0},"272":{"tf":2.449489742783178},"284":{"tf":1.4142135623730951},"3":{"tf":1.0},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"38":{"tf":1.0},"398":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"277":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"3":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.4142135623730951},"406":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"130":{"tf":1.0},"421":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"328":{"tf":1.0}}}}},"t":{"df":6,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"395":{"tf":1.0},"407":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"204":{"tf":1.0},"268":{"tf":1.4142135623730951},"325":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"183":{"tf":1.0},"305":{"tf":1.4142135623730951},"358":{"tf":1.0},"382":{"tf":1.0},"418":{"tf":1.0},"442":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":12,"docs":{"179":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"268":{"tf":1.0},"3":{"tf":1.0},"398":{"tf":1.0},"439":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":3,"docs":{"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"<":{"df":0,"docs":{},"u":{"3":{"2":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"*":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{")":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"343":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":12,"docs":{"188":{"tf":1.0},"205":{"tf":1.0},"295":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.0},"382":{"tf":1.0},"424":{"tf":1.0},"468":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"382":{"tf":1.0}}}}}}},"t":{"df":85,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"141":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":2.0},"196":{"tf":1.0},"20":{"tf":1.4142135623730951},"211":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"252":{"tf":1.7320508075688772},"257":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"275":{"tf":1.0},"288":{"tf":1.4142135623730951},"292":{"tf":1.0},"299":{"tf":1.0},"303":{"tf":1.4142135623730951},"316":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.4142135623730951},"333":{"tf":1.0},"336":{"tf":1.0},"339":{"tf":1.4142135623730951},"340":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.4142135623730951},"355":{"tf":1.0},"380":{"tf":1.4142135623730951},"387":{"tf":1.0},"390":{"tf":1.0},"399":{"tf":1.4142135623730951},"409":{"tf":1.0},"412":{"tf":1.0},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.4142135623730951},"466":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}},"t":{"df":3,"docs":{"232":{"tf":1.4142135623730951},"241":{"tf":1.0},"446":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"161":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.4142135623730951},"187":{"tf":1.0},"358":{"tf":2.0},"500":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":2,"docs":{"305":{"tf":1.0},"401":{"tf":1.0}}}}}},"t":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"127":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"341":{"tf":1.0},"455":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"x":{"df":12,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"22":{"tf":1.0},"312":{"tf":1.4142135623730951},"34":{"tf":1.0},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"444":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"408":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"131":{"tf":1.0},"149":{"tf":1.0},"312":{"tf":1.7320508075688772},"344":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0}}},"df":1,"docs":{"252":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"183":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"310":{"tf":1.4142135623730951}}},"s":{"df":3,"docs":{"177":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"145":{"tf":1.0},"25":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"128":{"tf":1.0},"180":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"305":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":2.0},"50":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"&":{"[":{"4":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":1,"docs":{"343":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"125":{"tf":1.7320508075688772},"206":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.0}}}}},"v":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"455":{"tf":1.0},"496":{"tf":1.7320508075688772},"498":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"16":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"252":{"tf":1.0},"285":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"398":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"208":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"11":{"tf":1.0},"146":{"tf":1.0},"276":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"132":{"tf":1.0},"212":{"tf":1.4142135623730951},"421":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.0}}}},"i":{"d":{"df":2,"docs":{"313":{"tf":1.0},"366":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"171":{"tf":1.4142135623730951},"184":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"130":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"209":{"tf":1.0},"223":{"tf":1.0},"266":{"tf":1.4142135623730951},"310":{"tf":1.0},"318":{"tf":1.0},"364":{"tf":1.0},"375":{"tf":1.0},"429":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":3.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"431":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"281":{"tf":1.0},"283":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"429":{"tf":2.449489742783178},"43":{"tf":1.0},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"433":{"tf":2.0},"435":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":2.23606797749979}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"250":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"378":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"143":{"tf":1.4142135623730951},"199":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"340":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"130":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"502":{"tf":1.0},"58":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"250":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"240":{"tf":1.0},"375":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":24,"docs":{"10":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"140":{"tf":1.0},"146":{"tf":1.0},"174":{"tf":1.0},"26":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.0},"359":{"tf":1.4142135623730951},"375":{"tf":1.0},"384":{"tf":1.4142135623730951},"398":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.0},"444":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"147":{"tf":1.0},"254":{"tf":1.4142135623730951},"294":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.0},"504":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"153":{"tf":1.0},"258":{"tf":1.0},"3":{"tf":1.0},"359":{"tf":1.0},"469":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"486":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}},"t":{"df":4,"docs":{"314":{"tf":1.0},"37":{"tf":1.0},"371":{"tf":1.0},"455":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"178":{"tf":1.0},"269":{"tf":1.0},"358":{"tf":1.0},"42":{"tf":1.4142135623730951},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":12,"docs":{"125":{"tf":1.0},"134":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"295":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"455":{"tf":1.0},"72":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"418":{"tf":1.0},"497":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"224":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":3.1622776601683795},"382":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":12,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.0},"179":{"tf":1.4142135623730951},"204":{"tf":1.0},"297":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.4142135623730951},"48":{"tf":1.0},"488":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":1,"docs":{"366":{"tf":1.0}}}}},"u":{"df":8,"docs":{"22":{"tf":1.0},"237":{"tf":1.0},"295":{"tf":1.0},"325":{"tf":1.0},"355":{"tf":1.0},"383":{"tf":1.4142135623730951},"421":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"175":{"tf":3.1622776601683795},"176":{"tf":1.7320508075688772},"177":{"tf":2.449489742783178},"178":{"tf":2.449489742783178},"179":{"tf":1.7320508075688772},"180":{"tf":2.23606797749979},"181":{"tf":2.0},"183":{"tf":3.4641016151377544},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":2.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"199":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":1.0},"30":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"209":{"tf":1.7320508075688772},"23":{"tf":1.0},"30":{"tf":1.0},"327":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"151":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"256":{"tf":1.0},"294":{"tf":1.0},"355":{"tf":1.0},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":2.0},"442":{"tf":1.0},"444":{"tf":1.7320508075688772},"484":{"tf":1.0},"500":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"363":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}},"t":{"df":4,"docs":{"23":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"486":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"452":{"tf":1.0},"51":{"tf":1.0}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"161":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"307":{"tf":1.0},"440":{"tf":1.7320508075688772},"441":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"170":{"tf":1.0}}}}},"n":{"c":{"df":2,"docs":{"162":{"tf":1.0},"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"358":{"tf":2.0},"362":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"204":{"tf":1.0},"209":{"tf":1.4142135623730951}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"399":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"128":{"tf":2.0},"131":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}}},"df":41,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":2.6457513110645907},"179":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":2.0},"204":{"tf":3.3166247903554},"205":{"tf":3.1622776601683795},"206":{"tf":4.123105625617661},"207":{"tf":1.7320508075688772},"208":{"tf":3.0},"209":{"tf":5.656854249492381},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.7320508075688772},"220":{"tf":1.0},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"231":{"tf":1.0},"266":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":2.449489742783178},"314":{"tf":1.0},"365":{"tf":2.0},"371":{"tf":2.0},"372":{"tf":2.23606797749979},"374":{"tf":2.23606797749979},"375":{"tf":1.0},"399":{"tf":1.7320508075688772},"400":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"421":{"tf":3.0},"422":{"tf":1.0},"462":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"128":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":2.0},"222":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"131":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"206":{"tf":1.0},"209":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"180":{"tf":1.0}}},"df":8,"docs":{"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":1.0},"195":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"208":{"tf":2.449489742783178},"372":{"tf":1.0},"373":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":40,"docs":{"196":{"tf":2.23606797749979},"197":{"tf":1.0},"204":{"tf":6.244997998398398},"205":{"tf":4.58257569495584},"206":{"tf":4.0},"207":{"tf":3.3166247903554},"208":{"tf":3.1622776601683795},"209":{"tf":2.8284271247461903},"211":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":2.6457513110645907},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"223":{"tf":1.0},"227":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.0},"318":{"tf":1.0},"364":{"tf":1.7320508075688772},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"394":{"tf":1.7320508075688772},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":3.4641016151377544},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.0},"421":{"tf":2.6457513110645907},"422":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"466":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"165":{"tf":1.0},"502":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"112":{"tf":1.0},"375":{"tf":1.0},"455":{"tf":1.0},"474":{"tf":1.0},"488":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"167":{"tf":1.0},"309":{"tf":1.0},"459":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"418":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.0},"153":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"12":{"tf":1.0},"188":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"329":{"tf":1.0},"344":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"465":{"tf":2.0},"466":{"tf":1.0},"469":{"tf":1.0},"481":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"358":{"tf":3.3166247903554},"362":{"tf":1.4142135623730951},"421":{"tf":1.0}},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"471":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"205":{"tf":1.0},"238":{"tf":1.0},"455":{"tf":1.0},"465":{"tf":1.0},"472":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"296":{"tf":1.0},"72":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"296":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"126":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"284":{"tf":1.0},"29":{"tf":1.0},"358":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"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":{}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"204":{"tf":2.6457513110645907},"206":{"tf":1.7320508075688772},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"232":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":8,"docs":{"130":{"tf":1.0},"14":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"25":{"tf":1.0},"407":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"199":{"tf":1.0},"204":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":2.6457513110645907},"307":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"207":{"tf":1.4142135623730951},"398":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"41":{"tf":1.4142135623730951},"486":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}},"u":{"df":2,"docs":{"204":{"tf":1.0},"255":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"102":{"tf":1.0},"13":{"tf":1.7320508075688772},"22":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":67,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":2.449489742783178},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"179":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.449489742783178},"209":{"tf":2.0},"222":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.4142135623730951},"284":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"310":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"393":{"tf":1.4142135623730951},"406":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"429":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.7320508075688772},"469":{"tf":1.0},"477":{"tf":1.0},"484":{"tf":1.0},"488":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":2.23606797749979},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"s":{"df":1,"docs":{"422":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"372":{"tf":1.0}}}}}},"df":7,"docs":{"205":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"421":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"161":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"179":{"tf":1.0},"54":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"130":{"tf":1.0},"58":{"tf":1.0}}}}},"d":{"a":{"df":4,"docs":{"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"415":{"tf":1.0}}},"df":4,"docs":{"325":{"tf":1.0},"327":{"tf":2.449489742783178},"328":{"tf":1.7320508075688772},"329":{"tf":1.0}}},"o":{"df":1,"docs":{"70":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":31,"docs":{"121":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":2.0},"129":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":2.0},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"254":{"tf":1.0},"281":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.4142135623730951},"358":{"tf":4.795831523312719},"362":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":2.23606797749979},"436":{"tf":1.4142135623730951},"44":{"tf":2.0},"470":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":2.0},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":6,"docs":{"179":{"tf":1.4142135623730951},"199":{"tf":1.0},"208":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"498":{"tf":1.0}}}},"df":2,"docs":{"209":{"tf":1.4142135623730951},"372":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"209":{"tf":1.0},"358":{"tf":2.0},"401":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"314":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"284":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"d":{"df":8,"docs":{"128":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.4142135623730951},"396":{"tf":1.0},"455":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"119":{"tf":1.0},"165":{"tf":1.0}}}},"o":{"d":{"df":13,"docs":{"102":{"tf":2.0},"119":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"202":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"134":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":2.0},"214":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"355":{"tf":1.0},"372":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"177":{"tf":1.0},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.4142135623730951},"325":{"tf":1.0},"340":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"256":{"tf":1.0},"277":{"tf":1.0},"384":{"tf":2.23606797749979},"486":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"+":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"178":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"178":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":2,"docs":{"178":{"tf":2.0},"183":{"tf":1.0}},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"146":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"164":{"tf":1.0},"208":{"tf":1.7320508075688772},"223":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"32":{"tf":1.4142135623730951},"340":{"tf":1.0},"370":{"tf":1.0},"44":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"500":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"7":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"412":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"11":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"444":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":8,"docs":{"440":{"tf":1.7320508075688772},"441":{"tf":3.1622776601683795},"442":{"tf":2.23606797749979},"444":{"tf":4.898979485566356},"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.7320508075688772},"452":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"473":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"185":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"375":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.7320508075688772},"465":{"tf":2.0},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.4142135623730951},"312":{"tf":1.0},"39":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"204":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772}}}}},"t":{"df":4,"docs":{"205":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"421":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"469":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"250":{"tf":1.4142135623730951},"27":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"465":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"0":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"1":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":2.0}}},"df":0,"docs":{}},"df":33,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"183":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"281":{"tf":1.0},"3":{"tf":2.6457513110645907},"312":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":3.3166247903554},"470":{"tf":1.0},"472":{"tf":1.0},"5":{"tf":1.4142135623730951},"6":{"tf":2.6457513110645907},"7":{"tf":2.449489742783178},"8":{"tf":2.0},"9":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":7,"docs":{"130":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"393":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"455":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"281":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"473":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":10,"docs":{"4":{"tf":1.0},"444":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":2.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"85":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"205":{"tf":1.0},"384":{"tf":1.7320508075688772},"421":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":26,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.7320508075688772},"307":{"tf":1.0},"316":{"tf":1.0},"358":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.4142135623730951},"466":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"248":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":2.0},"107":{"tf":1.0},"47":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":23,"docs":{"13":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"172":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.4142135623730951},"24":{"tf":1.0},"284":{"tf":1.0},"341":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"498":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":16,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"153":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"238":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"421":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.0},"56":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"223":{"tf":1.0},"72":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"196":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"25":{"tf":1.4142135623730951},"296":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"277":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"200":{"tf":1.0},"227":{"tf":1.0},"254":{"tf":1.4142135623730951},"284":{"tf":1.0},"355":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":2.0},"469":{"tf":1.0},"48":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.0},"128":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":2,"docs":{"167":{"tf":1.0},"295":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":44,"docs":{"117":{"tf":1.4142135623730951},"123":{"tf":1.0},"144":{"tf":1.0},"166":{"tf":1.4142135623730951},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"192":{"tf":1.7320508075688772},"202":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":1.0},"250":{"tf":1.4142135623730951},"266":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"342":{"tf":1.0},"366":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"436":{"tf":1.0},"460":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"367":{"tf":1.0}}}},"c":{"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"t":{"df":13,"docs":{"141":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"148":{"tf":2.23606797749979},"149":{"tf":2.0},"151":{"tf":1.0},"153":{"tf":1.0},"248":{"tf":2.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.7320508075688772},"256":{"tf":1.0},"258":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"384":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"104":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"205":{"tf":1.4142135623730951},"219":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"415":{"tf":1.0},"43":{"tf":1.0},"460":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"504":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"179":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"312":{"tf":1.0},"360":{"tf":1.4142135623730951},"501":{"tf":1.0}},"i":{"df":3,"docs":{"277":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":2.449489742783178},"110":{"tf":1.0},"47":{"tf":1.4142135623730951},"51":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":2.6457513110645907}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"m":{"a":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":50,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"322":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"380":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"444":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"509":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"186":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.0},"405":{"tf":1.0},"436":{"tf":1.4142135623730951},"498":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"164":{"tf":1.0},"171":{"tf":1.4142135623730951},"256":{"tf":1.0},"457":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"444":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"106":{"tf":1.0},"205":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}},"v":{"df":5,"docs":{"142":{"tf":1.0},"158":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"277":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}},"i":{"df":6,"docs":{"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"249":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"418":{"tf":1.0},"422":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"131":{"tf":1.0},"174":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"384":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"416":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"425":{"tf":1.0},"438":{"tf":1.4142135623730951},"452":{"tf":1.0},"462":{"tf":1.0},"479":{"tf":1.0},"5":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"256":{"tf":1.0},"382":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"206":{"tf":3.0},"277":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"462":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"140":{"tf":2.6457513110645907},"466":{"tf":1.0},"470":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"305":{"tf":1.0},"35":{"tf":1.0},"472":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"206":{"tf":1.0},"249":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"418":{"tf":1.0},"422":{"tf":1.0},"52":{"tf":1.0}}},"s":{"df":2,"docs":{"3":{"tf":1.0},"5":{"tf":1.0}}},"t":{"df":2,"docs":{"395":{"tf":1.0},"398":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"158":{"tf":1.0},"205":{"tf":1.0},"35":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"419":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"204":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"425":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"487":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"34":{"tf":1.0}}},"df":11,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"26":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"358":{"tf":1.0},"417":{"tf":1.0},"45":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":9,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"132":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"358":{"tf":2.6457513110645907},"384":{"tf":2.0},"385":{"tf":1.0},"421":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"481":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"250":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0},"382":{"tf":1.4142135623730951},"386":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":19,"docs":{"119":{"tf":1.0},"153":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"235":{"tf":1.0},"258":{"tf":1.0},"308":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"406":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":36,"docs":{"11":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":2.0},"193":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.7320508075688772},"222":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.7320508075688772},"310":{"tf":1.4142135623730951},"312":{"tf":2.449489742783178},"313":{"tf":1.0},"328":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"419":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":1.0},"8":{"tf":2.8284271247461903},"9":{"tf":2.8284271247461903}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"208":{"tf":1.0},"375":{"tf":1.0}},"i":{"df":1,"docs":{"372":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":8,"docs":{"102":{"tf":1.0},"127":{"tf":1.0},"256":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"147":{"tf":1.0},"204":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"308":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"372":{"tf":1.4142135623730951},"421":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":59,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"166":{"tf":1.4142135623730951},"175":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.4142135623730951},"248":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"275":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"314":{"tf":1.0},"323":{"tf":1.0},"331":{"tf":1.0},"339":{"tf":1.0},"344":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"385":{"tf":1.0},"399":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.4142135623730951},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"463":{"tf":1.0},"473":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"501":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"452":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"312":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}},"n":{"df":1,"docs":{"417":{"tf":1.0}}},"r":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"129":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"110":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"204":{"tf":1.0},"256":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"205":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"469":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"146":{"tf":1.0},"165":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.449489742783178},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"311":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"417":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"417":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"296":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":15,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.4142135623730951},"3":{"tf":1.0},"364":{"tf":1.7320508075688772},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"422":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":9,"docs":{"178":{"tf":1.4142135623730951},"179":{"tf":2.0},"204":{"tf":1.0},"235":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"318":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0}}}},"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":42,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":2.6457513110645907},"222":{"tf":1.0},"232":{"tf":1.7320508075688772},"24":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"325":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"37":{"tf":1.0},"384":{"tf":1.4142135623730951},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"42":{"tf":1.0},"421":{"tf":1.7320508075688772},"442":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.0},"486":{"tf":1.4142135623730951},"50":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"178":{"tf":1.0},"215":{"tf":1.0},"386":{"tf":1.0},"421":{"tf":1.4142135623730951},"498":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"177":{"tf":1.0}},"i":{"df":5,"docs":{"129":{"tf":1.0},"140":{"tf":1.4142135623730951},"277":{"tf":1.0},"488":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"422":{"tf":1.0},"505":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"143":{"tf":1.0},"254":{"tf":1.0},"295":{"tf":1.0},"386":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":12,"docs":{"14":{"tf":1.4142135623730951},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.0},"244":{"tf":1.0},"3":{"tf":1.0},"396":{"tf":1.0},"424":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":26,"docs":{"115":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"313":{"tf":1.0},"449":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"48":{"tf":1.0},"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":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}},"g":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"424":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.8284271247461903},"208":{"tf":1.0},"209":{"tf":1.0},"285":{"tf":1.0},"398":{"tf":1.4142135623730951},"418":{"tf":1.0},"465":{"tf":1.4142135623730951},"47":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":15,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"166":{"tf":1.4142135623730951},"18":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"311":{"tf":1.0},"355":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"127":{"tf":1.0},"442":{"tf":1.0},"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"179":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"205":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"232":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"241":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"358":{"tf":1.0},"418":{"tf":1.0},"47":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"58":{"tf":1.0}}}}}}},"m":{"b":{"df":1,"docs":{"128":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"47":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"312":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"178":{"tf":1.0},"422":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":4,"docs":{"43":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"444":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"209":{"tf":2.0},"358":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"119":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"146":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"194":{"tf":1.0},"204":{"tf":1.0},"45":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"205":{"tf":1.0},"217":{"tf":1.0},"492":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":19,"docs":{"102":{"tf":2.0},"104":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"23":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":2.0},"358":{"tf":2.0},"47":{"tf":1.4142135623730951},"486":{"tf":2.23606797749979},"51":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"292":{"tf":2.0},"293":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"295":{"tf":2.0},"296":{"tf":2.449489742783178},"297":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"296":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"24":{"tf":1.0},"251":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"3":{"tf":1.0},"384":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"106":{"tf":1.4142135623730951},"125":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.6457513110645907},"208":{"tf":2.449489742783178},"209":{"tf":4.898979485566356},"341":{"tf":1.0},"373":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.4142135623730951},"436":{"tf":1.0},"442":{"tf":1.0},"491":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"311":{"tf":1.0},"398":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"253":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"284":{"tf":1.0},"339":{"tf":1.4142135623730951},"349":{"tf":1.0},"406":{"tf":1.0},"497":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"188":{"tf":1.0},"202":{"tf":1.0},"328":{"tf":1.4142135623730951},"337":{"tf":1.0},"419":{"tf":1.0},"60":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"19":{"tf":1.0},"22":{"tf":1.0},"423":{"tf":1.0},"433":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"126":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"233":{"tf":1.0},"262":{"tf":1.0},"442":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":48,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"412":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"484":{"tf":1.4142135623730951},"488":{"tf":1.0},"498":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":15,"docs":{"122":{"tf":1.0},"157":{"tf":1.0},"206":{"tf":2.0},"256":{"tf":1.0},"262":{"tf":1.0},"313":{"tf":1.4142135623730951},"35":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.4142135623730951},"501":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"430":{"tf":1.0},"98":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"151":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.4142135623730951},"256":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"406":{"tf":1.4142135623730951},"423":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"102":{"tf":1.0},"104":{"tf":2.6457513110645907},"129":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":1.0},"384":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"164":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"161":{"tf":1.4142135623730951},"164":{"tf":1.0},"176":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":3,"docs":{"179":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"'":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":4.123105625617661},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":23,"docs":{"129":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"206":{"tf":3.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"222":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.0},"340":{"tf":1.0},"358":{"tf":2.0},"362":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"422":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"48":{"tf":1.4142135623730951},"498":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"206":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":2,"docs":{"312":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"502":{"tf":1.0},"51":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"51":{"tf":2.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"120":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"134":{"tf":1.0}}}}}},"c":{"2":{"0":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"7":{"2":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":78,"docs":{"1":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"152":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"287":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"303":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"323":{"tf":1.4142135623730951},"333":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.4142135623730951},"346":{"tf":1.0},"348":{"tf":1.0},"380":{"tf":1.4142135623730951},"387":{"tf":1.0},"389":{"tf":1.0},"399":{"tf":1.4142135623730951},"409":{"tf":1.0},"411":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.4142135623730951},"458":{"tf":1.0},"460":{"tf":1.0},"463":{"tf":1.4142135623730951},"475":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"130":{"tf":1.0},"143":{"tf":1.0},"165":{"tf":1.0},"358":{"tf":4.242640687119285},"502":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"422":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"309":{"tf":1.0},"34":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.0},"448":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"308":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"421":{"tf":1.0},"423":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"t":{"c":{"df":5,"docs":{"250":{"tf":1.0},"313":{"tf":1.0},"384":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"179":{"tf":1.0}}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.0},"66":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"247":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"266":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"368":{"tf":1.0}}}}},"n":{"df":14,"docs":{"127":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":2.6457513110645907},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"429":{"tf":1.0},"473":{"tf":1.4142135623730951},"48":{"tf":1.0},"506":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"120":{"tf":1.0},"122":{"tf":1.0}}}},"t":{"df":4,"docs":{"140":{"tf":1.0},"311":{"tf":1.0},"444":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951}},"u":{"df":5,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.4142135623730951},"402":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"250":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"145":{"tf":1.0},"509":{"tf":1.0}}}}}}},"m":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":2.23606797749979},"179":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"189":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"310":{"tf":1.0},"54":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"146":{"tf":1.0},"366":{"tf":1.0},"382":{"tf":1.0},"415":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":35,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"112":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"235":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"321":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.4142135623730951},"364":{"tf":1.0},"375":{"tf":1.7320508075688772},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"421":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"32":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.7320508075688772},"429":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"183":{"tf":1.4142135623730951},"191":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"358":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"160":{"tf":1.0},"161":{"tf":1.0},"166":{"tf":1.0},"305":{"tf":1.4142135623730951},"358":{"tf":3.7416573867739413},"401":{"tf":1.7320508075688772},"408":{"tf":1.0},"413":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"165":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":47,"docs":{"151":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.7320508075688772},"179":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":2.449489742783178},"209":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"242":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":2.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"391":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"465":{"tf":1.0},"498":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"191":{"tf":1.0},"192":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"312":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"343":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.4142135623730951},"410":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"504":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"207":{"tf":1.0},"232":{"tf":1.0},"277":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"111":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"287":{"tf":1.0},"308":{"tf":1.0},"412":{"tf":1.0},"444":{"tf":1.0},"70":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"423":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"204":{"tf":1.0},"206":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"205":{"tf":1.0},"325":{"tf":1.0},"343":{"tf":1.0},"486":{"tf":1.4142135623730951}}}},"n":{"df":67,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"175":{"tf":1.0},"182":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0},"280":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"403":{"tf":1.0},"41":{"tf":1.4142135623730951},"416":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"431":{"tf":1.0},"440":{"tf":1.0},"444":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"130":{"tf":1.0},"223":{"tf":1.0},"276":{"tf":1.0},"283":{"tf":1.0},"32":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"21":{"tf":1.0},"306":{"tf":1.0},"41":{"tf":1.0},"465":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":1,"docs":{"424":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"12":{"tf":1.0},"372":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"161":{"tf":1.0},"164":{"tf":3.0},"165":{"tf":1.4142135623730951},"486":{"tf":1.0}}}},"s":{"df":13,"docs":{"179":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"316":{"tf":1.0},"359":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"457":{"tf":1.0},"469":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"265":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"358":{"tf":1.7320508075688772},"425":{"tf":1.0},"430":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"*":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"4":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"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":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"362":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"362":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":4,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"249":{"tf":1.0},"423":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":1.0},"184":{"tf":1.0},"289":{"tf":1.0},"411":{"tf":1.0},"425":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":1,"docs":{"187":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"161":{"tf":1.0},"212":{"tf":1.0},"296":{"tf":1.0},"398":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"343":{"tf":1.0}}}},"df":8,"docs":{"119":{"tf":1.0},"250":{"tf":1.4142135623730951},"358":{"tf":1.0},"362":{"tf":1.4142135623730951},"448":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"179":{"tf":1.0},"183":{"tf":1.0},"374":{"tf":1.4142135623730951},"423":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.7320508075688772},"130":{"tf":1.0},"181":{"tf":1.0},"404":{"tf":1.4142135623730951},"444":{"tf":1.0},"455":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.4641016151377544},"85":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":2.0}},"i":{"c":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"404":{"tf":1.7320508075688772},"414":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"f":{"+":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"201":{"tf":1.4142135623730951},"206":{"tf":1.0},"27":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"232":{"tf":1.0},"312":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":12,"docs":{"208":{"tf":2.6457513110645907},"222":{"tf":1.0},"312":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"126":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"358":{"tf":3.1622776601683795},"98":{"tf":1.0}}}}},"r":{"df":4,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"417":{"tf":1.4142135623730951},"422":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"126":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"127":{"tf":1.4142135623730951},"208":{"tf":1.0},"370":{"tf":1.0}}},"s":{"df":3,"docs":{"104":{"tf":1.0},"384":{"tf":2.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"157":{"tf":1.0},"178":{"tf":1.0},"262":{"tf":1.0},"487":{"tf":1.0},"98":{"tf":1.0}}}},"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":4,"docs":{"179":{"tf":1.0},"200":{"tf":1.0},"311":{"tf":1.0},"398":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"201":{"tf":1.0},"311":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"307":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"214":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"122":{"tf":1.0},"406":{"tf":1.0}}}}}}},"df":1,"docs":{"372":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"426":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"255":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"136":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"211":{"tf":1.0},"313":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"502":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"207":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.0},"268":{"tf":1.0},"442":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}},"df":2,"docs":{"398":{"tf":1.0},"442":{"tf":1.0}},"l":{"df":4,"docs":{"446":{"tf":1.0},"452":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"177":{"tf":1.0},"179":{"tf":1.0},"220":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"0":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"9":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"4":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"df":1,"docs":{"266":{"tf":1.0}}},"df":27,"docs":{"0":{"tf":1.0},"202":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":2.0},"273":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.0},"337":{"tf":1.0},"419":{"tf":1.0},"443":{"tf":1.0},"446":{"tf":1.0},"84":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"129":{"tf":1.0},"398":{"tf":1.0},"436":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"32":{"tf":1.0},"382":{"tf":1.0},"442":{"tf":1.0},"501":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"129":{"tf":1.0},"147":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"222":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"32":{"tf":1.0},"384":{"tf":2.0},"48":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"402":{"tf":1.0}}},"l":{"df":4,"docs":{"102":{"tf":1.0},"205":{"tf":1.0},"235":{"tf":1.4142135623730951},"48":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"146":{"tf":2.8284271247461903},"205":{"tf":2.0},"206":{"tf":3.605551275463989},"212":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"48":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"210":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"406":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"297":{"tf":1.0}},"i":{"df":3,"docs":{"13":{"tf":1.0},"3":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":15,"docs":{"125":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"178":{"tf":1.0},"200":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"398":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"130":{"tf":1.0},"418":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"358":{"tf":1.0},"422":{"tf":1.0}}}},"t":{"df":2,"docs":{"200":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":28,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":2.23606797749979},"223":{"tf":1.0},"23":{"tf":1.0},"258":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"312":{"tf":1.4142135623730951},"358":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":2.23606797749979},"474":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"171":{"tf":1.0},"205":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"358":{"tf":2.449489742783178},"50":{"tf":1.0},"99":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"236":{"tf":1.0},"35":{"tf":1.0}}}},"x":{"df":10,"docs":{"128":{"tf":1.0},"146":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"235":{"tf":2.0},"32":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"296":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"384":{"tf":1.0},"500":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"208":{"tf":1.0},"310":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"311":{"tf":1.0}},"p":{"df":1,"docs":{"372":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"103":{"tf":1.0},"398":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":10,"docs":{"128":{"tf":1.0},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":2.0},"457":{"tf":1.0},"469":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"327":{"tf":1.0},"65":{"tf":1.0}},"s":{"df":2,"docs":{"26":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":40,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"164":{"tf":1.7320508075688772},"177":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"268":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"359":{"tf":1.4142135623730951},"362":{"tf":1.0},"398":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.4142135623730951},"43":{"tf":1.0},"436":{"tf":1.0},"444":{"tf":1.0},"457":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"200":{"tf":1.0},"343":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":2.449489742783178},"421":{"tf":1.0},"83":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"445":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"254":{"tf":1.4142135623730951},"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"140":{"tf":1.4142135623730951},"24":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"58":{"tf":2.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}},"t":{"df":13,"docs":{"204":{"tf":1.0},"254":{"tf":1.0},"306":{"tf":1.0},"33":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"486":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}}}},"df":16,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"116":{"tf":1.0},"207":{"tf":1.0},"222":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"382":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"422":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"208":{"tf":1.0},"48":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"14":{"tf":1.0},"244":{"tf":1.0},"273":{"tf":1.0},"379":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"341":{"tf":1.0},"425":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"212":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0},"61":{"tf":1.0}}}},"df":10,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"32":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"45":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"179":{"tf":1.0},"235":{"tf":1.0},"255":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"455":{"tf":1.0},"462":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"204":{"tf":1.4142135623730951},"416":{"tf":1.0},"418":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":4,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"83":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":7,"docs":{"199":{"tf":1.0},"206":{"tf":1.4142135623730951},"281":{"tf":1.0},"312":{"tf":1.0},"355":{"tf":1.7320508075688772},"452":{"tf":1.0},"504":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"442":{"tf":1.0},"469":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"398":{"tf":1.0},"469":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"161":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"425":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"284":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0}}}}},"l":{"df":15,"docs":{"104":{"tf":1.0},"153":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"219":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":1.4142135623730951},"258":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"33":{"tf":1.0},"382":{"tf":2.23606797749979},"421":{"tf":1.0},"83":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":5,"docs":{"119":{"tf":1.0},"161":{"tf":1.0},"205":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"164":{"tf":3.0},"358":{"tf":7.0},"359":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},"df":74,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":2.23606797749979},"120":{"tf":1.0},"128":{"tf":2.6457513110645907},"130":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.0},"164":{"tf":2.23606797749979},"165":{"tf":1.7320508075688772},"179":{"tf":2.0},"196":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.7320508075688772},"208":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"253":{"tf":1.4142135623730951},"272":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.23606797749979},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"316":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"353":{"tf":1.0},"355":{"tf":2.0},"358":{"tf":7.280109889280518},"359":{"tf":2.23606797749979},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"372":{"tf":2.23606797749979},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":2.0},"421":{"tf":1.0},"43":{"tf":2.449489742783178},"44":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":2.23606797749979},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":2.23606797749979},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"157":{"tf":1.0},"262":{"tf":1.0}}}}}}},"df":9,"docs":{"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"269":{"tf":1.0},"297":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"422":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"204":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.4142135623730951},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"151":{"tf":1.0},"201":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"355":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":70,"docs":{"1":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.4142135623730951},"275":{"tf":1.0},"291":{"tf":1.7320508075688772},"292":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"374":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.4142135623730951},"419":{"tf":1.0},"421":{"tf":1.4142135623730951},"427":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"509":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"212":{"tf":1.0}}}}}},"g":{"a":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":2,"docs":{"180":{"tf":1.0},"183":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"384":{"tf":1.0},"504":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"231":{"tf":1.0},"422":{"tf":1.0}}}},"p":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"196":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"452":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"394":{"tf":1.0},"416":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":43,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"179":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.7320508075688772},"277":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"36":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"395":{"tf":1.0},"398":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"443":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"482":{"tf":1.4142135623730951},"488":{"tf":1.0},"492":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":10,"docs":{"143":{"tf":1.4142135623730951},"146":{"tf":2.0},"148":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"284":{"tf":1.7320508075688772},"308":{"tf":1.4142135623730951},"312":{"tf":1.0},"47":{"tf":2.8284271247461903}},"s":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"131":{"tf":1.0},"140":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"472":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"b":{"df":3,"docs":{"358":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":4,"docs":{"244":{"tf":1.4142135623730951},"250":{"tf":1.0},"268":{"tf":1.0},"481":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"143":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"70":{"tf":1.0}},"n":{"df":29,"docs":{"11":{"tf":1.0},"129":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.7320508075688772},"222":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"34":{"tf":1.0},"358":{"tf":2.8284271247461903},"362":{"tf":1.4142135623730951},"367":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"164":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"209":{"tf":1.0},"276":{"tf":1.0},"325":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.0}}}},"df":10,"docs":{"129":{"tf":1.0},"183":{"tf":1.0},"215":{"tf":1.0},"277":{"tf":1.0},"291":{"tf":1.0},"355":{"tf":1.0},"452":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"o":{"d":{"df":9,"docs":{"157":{"tf":1.0},"232":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"307":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"146":{"tf":1.0},"340":{"tf":1.0}}}}}},"v":{"1":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"365":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"183":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"312":{"tf":3.0},"313":{"tf":2.23606797749979},"321":{"tf":1.0},"322":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.0},"442":{"tf":1.0},"449":{"tf":1.0},"466":{"tf":1.0}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"421":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"452":{"tf":1.4142135623730951},"474":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"206":{"tf":1.0},"222":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"439":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"442":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":13,"docs":{"126":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"305":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"382":{"tf":1.0}}}},"w":{"df":2,"docs":{"179":{"tf":1.0},"367":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"188":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"204":{"tf":1.0},"232":{"tf":1.0},"305":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":3,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"245":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"209":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":2,"docs":{"232":{"tf":1.0},"312":{"tf":1.0}}},"v":{"df":1,"docs":{"134":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"130":{"tf":1.0},"297":{"tf":1.0},"329":{"tf":1.0}},"l":{"df":9,"docs":{"118":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"312":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"140":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"388":{"tf":1.0},"422":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"178":{"tf":1.0},"401":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"151":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}},"i":{"df":1,"docs":{"416":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"129":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"33":{"tf":1.4142135623730951},"355":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":2.23606797749979},"44":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"72":{"tf":2.0},"95":{"tf":1.0}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":22,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"385":{"tf":1.0},"422":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"141":{"tf":1.0},"146":{"tf":2.23606797749979},"149":{"tf":1.7320508075688772},"158":{"tf":1.0},"281":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"358":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"358":{"tf":2.23606797749979},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":5,"docs":{"164":{"tf":1.0},"355":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"498":{"tf":1.4142135623730951},"501":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"502":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"165":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"361":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"l":{"d":{"df":3,"docs":{"207":{"tf":1.0},"312":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":11,"docs":{"145":{"tf":1.0},"161":{"tf":1.0},"207":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"425":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"465":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":2.0}}}}}},"n":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"140":{"tf":1.0}}},"df":24,"docs":{"125":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"157":{"tf":1.0},"161":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.7320508075688772},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"50":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"470":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"341":{"tf":1.0},"343":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":12,"docs":{"179":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"227":{"tf":1.0},"325":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"41":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"487":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"370":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"473":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"235":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"166":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"232":{"tf":1.0},"424":{"tf":1.0},"468":{"tf":1.0},"481":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"449":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"158":{"tf":1.0},"412":{"tf":1.0}},"i":{"df":5,"docs":{"146":{"tf":2.23606797749979},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"127":{"tf":1.0},"165":{"tf":1.7320508075688772},"181":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"122":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"313":{"tf":1.0},"368":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"419":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"178":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"401":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"178":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"439":{"tf":1.0},"452":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}},"df":23,"docs":{"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"200":{"tf":1.0},"353":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"355":{"tf":3.0},"358":{"tf":4.898979485566356},"359":{"tf":2.23606797749979},"362":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"384":{"tf":1.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"428":{"tf":1.4142135623730951},"429":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"438":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.7320508075688772}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"296":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"3":{"7":{"7":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"4":{"7":{"5":{"8":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"8":{"5":{"df":2,"docs":{"289":{"tf":1.0},"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"3":{"9":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"130":{"tf":1.0},"146":{"tf":1.0},"479":{"tf":1.0},"500":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"509":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"3":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"0":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"383":{"tf":1.0}}},"6":{"df":1,"docs":{"358":{"tf":1.0}}},"7":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"/":{"#":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"9":{"1":{"%":{"a":{"0":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"6":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"q":{"?":{"df":0,"docs":{},"t":{"=":{"5":{"2":{"6":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":15,"docs":{"1":{"tf":1.7320508075688772},"14":{"tf":2.0},"175":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"19":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"235":{"tf":1.0},"3":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"411":{"tf":1.0},"424":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.0}}}}}}},"i":{"'":{"d":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"157":{"tf":1.0},"262":{"tf":1.0}}}},".":{"df":8,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"358":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"3":{"2":{"df":2,"docs":{"164":{"tf":2.8284271247461903},"358":{"tf":9.273618495495704}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"358":{"tf":8.246211251235321},"359":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":10,"docs":{"104":{"tf":2.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"358":{"tf":1.4142135623730951},"384":{"tf":1.0},"469":{"tf":1.4142135623730951},"483":{"tf":1.0},"487":{"tf":1.0}},"e":{"a":{"df":5,"docs":{"13":{"tf":1.0},"355":{"tf":1.0},"425":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0}},"l":{"df":8,"docs":{"200":{"tf":1.0},"208":{"tf":1.0},"277":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"24":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"312":{"tf":2.6457513110645907},"313":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.1622776601683795},"39":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":16,"docs":{"102":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"235":{"tf":1.0},"254":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"358":{"tf":2.23606797749979},"42":{"tf":1.0},"446":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"108":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"384":{"tf":1.0}}}}}},"i":{"df":3,"docs":{"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0}},"i":{"df":3,"docs":{"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"422":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"374":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":1,"docs":{"94":{"tf":1.0}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":23,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"14":{"tf":1.7320508075688772},"169":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.4142135623730951},"423":{"tf":1.0},"455":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":89,"docs":{"0":{"tf":1.0},"100":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":2.0},"151":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":2.0},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"27":{"tf":1.0},"285":{"tf":1.4142135623730951},"3":{"tf":1.0},"310":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"355":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"441":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951}}}}}}}}},"i":{"c":{"df":2,"docs":{"14":{"tf":1.0},"388":{"tf":1.0}}},"df":2,"docs":{"199":{"tf":1.0},"47":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"468":{"tf":1.0}}}}}}},"df":22,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"164":{"tf":2.0},"170":{"tf":1.0},"195":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"318":{"tf":1.0},"384":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"47":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"183":{"tf":1.0}},"s":{"df":4,"docs":{"127":{"tf":1.0},"200":{"tf":1.0},"341":{"tf":1.0},"385":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"481":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"239":{"tf":1.0},"275":{"tf":1.7320508075688772},"277":{"tf":1.0},"287":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"433":{"tf":1.0},"444":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"457":{"tf":1.0},"58":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"262":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"235":{"tf":1.0},"325":{"tf":1.0},"398":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"473":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"207":{"tf":1.0},"421":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":2.0},"146":{"tf":1.7320508075688772},"178":{"tf":1.0},"18":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"245":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"283":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"441":{"tf":1.0},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"483":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":2.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":6,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"324":{"tf":1.0},"398":{"tf":1.7320508075688772}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"398":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":43,"docs":{"110":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"153":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"214":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"235":{"tf":1.0},"258":{"tf":1.0},"327":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":2.0},"375":{"tf":1.7320508075688772},"398":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"429":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.4142135623730951},"455":{"tf":1.0},"469":{"tf":1.0},"481":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"310":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.4142135623730951},"358":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"140":{"tf":1.0},"178":{"tf":1.0},"337":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"207":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"205":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":3.605551275463989},"140":{"tf":2.449489742783178},"205":{"tf":1.4142135623730951},"222":{"tf":1.0},"449":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"i":{"c":{"df":15,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"255":{"tf":1.0},"269":{"tf":1.7320508075688772},"341":{"tf":1.0},"358":{"tf":3.605551275463989},"384":{"tf":1.0},"398":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":14,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.0},"310":{"tf":1.0},"327":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}},"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":2,"docs":{"355":{"tf":1.0},"424":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"358":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"398":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"398":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"396":{"tf":1.0},"398":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":3,"docs":{"104":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.0},"209":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"312":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"215":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"250":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"362":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":2.0},"407":{"tf":1.0},"413":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"12":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":2.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}},"k":{"!":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"175":{"tf":1.0},"176":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":2.449489742783178},"181":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"200":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":2.449489742783178},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":2.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"159":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"172":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"66":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"165":{"tf":1.4142135623730951},"26":{"tf":1.0},"272":{"tf":1.0},"421":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"196":{"tf":1.0},"204":{"tf":4.0},"205":{"tf":2.0},"206":{"tf":2.449489742783178},"207":{"tf":2.449489742783178},"208":{"tf":2.8284271247461903},"209":{"tf":2.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"222":{"tf":2.0},"223":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"165":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"209":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":2.449489742783178}}}}}}}},"t":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"204":{"tf":1.0},"255":{"tf":1.0},"328":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.3166247903554},"398":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.4142135623730951},"469":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"309":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"457":{"tf":1.0}},"r":{"df":12,"docs":{"164":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"27":{"tf":1.0},"315":{"tf":1.0},"416":{"tf":1.0},"430":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"n":{"d":{"df":6,"docs":{"208":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"41":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.0},"41":{"tf":1.0}}},"t":{"df":1,"docs":{"422":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"179":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"416":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.0},"144":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"382":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}},"f":{"a":{"c":{"df":25,"docs":{"179":{"tf":1.4142135623730951},"184":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"221":{"tf":1.0},"227":{"tf":1.0},"288":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.0},"411":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":2.449489742783178},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"199":{"tf":1.0},"406":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"206":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}},"l":{"a":{"c":{"df":3,"docs":{"205":{"tf":2.0},"206":{"tf":1.0},"209":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"205":{"tf":2.0},"206":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"205":{"tf":1.7320508075688772},"208":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"360":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"32":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"200":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.0},"498":{"tf":1.0},"96":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"201":{"tf":1.0},"469":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":33,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.4142135623730951},"358":{"tf":1.0},"374":{"tf":2.0},"398":{"tf":1.0},"400":{"tf":1.4142135623730951},"418":{"tf":2.0},"453":{"tf":1.4142135623730951},"468":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"492":{"tf":1.0},"498":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"t":{"df":8,"docs":{"0":{"tf":1.0},"23":{"tf":1.4142135623730951},"265":{"tf":1.0},"308":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"140":{"tf":1.0},"179":{"tf":1.0},"277":{"tf":1.4142135623730951},"284":{"tf":1.0},"358":{"tf":2.23606797749979},"384":{"tf":1.4142135623730951},"415":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"372":{"tf":1.0},"398":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"200":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":11,"docs":{"119":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"312":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"416":{"tf":1.0},"464":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"232":{"tf":1.0},"235":{"tf":2.449489742783178},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":9,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"389":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"256":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"472":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"310":{"tf":1.0},"352":{"tf":1.0},"505":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"395":{"tf":1.0},"398":{"tf":1.0}}},"df":0,"docs":{}}},"df":22,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"312":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"444":{"tf":1.0},"462":{"tf":1.0},"481":{"tf":1.0},"502":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}}}},"t":{"'":{"df":16,"docs":{"128":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"312":{"tf":1.0},"385":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"41":{"tf":1.0},"418":{"tf":1.0},"468":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":11,"docs":{"206":{"tf":1.7320508075688772},"224":{"tf":1.0},"3":{"tf":1.0},"341":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":2.0},"385":{"tf":2.0},"42":{"tf":2.449489742783178},"455":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"r":{"df":3,"docs":{"153":{"tf":1.0},"200":{"tf":1.0},"258":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":16,"docs":{"147":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"199":{"tf":1.0},"223":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"422":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"df":3,"docs":{"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0}}},"x":{"df":2,"docs":{"327":{"tf":1.0},"328":{"tf":1.0}}},"z":{"df":1,"docs":{"385":{"tf":1.0}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"293":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"230":{"tf":1.0},"264":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"235":{"tf":1.0},"268":{"tf":1.0},"296":{"tf":1.0},"329":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"296":{"tf":1.0}}}}}}},"n":{"a":{"df":2,"docs":{"394":{"tf":1.0},"416":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"118":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"208":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"216":{"tf":1.0},"230":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"364":{"tf":1.0},"399":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"196":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"165":{"tf":1.0}},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}}},"k":{"+":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"253":{"tf":1.7320508075688772},"256":{"tf":1.0},"258":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"129":{"tf":1.0},"145":{"tf":1.0},"167":{"tf":1.0},"209":{"tf":1.0},"296":{"tf":1.0},"384":{"tf":1.0},"460":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"191":{"tf":1.0},"256":{"tf":1.0},"51":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"358":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":3.605551275463989}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":32,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":2.8284271247461903},"151":{"tf":2.0},"153":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.7320508075688772},"253":{"tf":2.449489742783178},"256":{"tf":2.0},"258":{"tf":1.4142135623730951},"277":{"tf":1.0},"358":{"tf":5.916079783099616},"382":{"tf":2.8284271247461903},"384":{"tf":4.47213595499958},"386":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.6457513110645907},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":2.0},"487":{"tf":1.0},"492":{"tf":1.0},"498":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":2.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"358":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}},"b":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"153":{"tf":1.0},"258":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"164":{"tf":1.0},"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"129":{"tf":1.4142135623730951},"143":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"194":{"tf":1.0},"258":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"129":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"221":{"tf":1.0},"256":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"35":{"tf":1.0},"358":{"tf":2.0},"422":{"tf":1.0},"45":{"tf":1.0},"498":{"tf":1.4142135623730951},"50":{"tf":1.0},"64":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"141":{"tf":1.0},"248":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"380":{"tf":1.0},"496":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"m":{"df":5,"docs":{"184":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":3.0},"9":{"tf":3.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"453":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"a":{"'":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}}},"df":19,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"254":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":2.8284271247461903},"322":{"tf":1.0},"382":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"ö":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"1":{"7":{"6":{"2":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"179":{"tf":1.0}}},"2":{"df":1,"docs":{"194":{"tf":1.0}}},"3":{"4":{"0":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"5":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"c":{"1":{"5":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"245":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"188":{"tf":1.0},"235":{"tf":1.0},"277":{"tf":1.0},"358":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"161":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"358":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":17,"docs":{"126":{"tf":1.0},"134":{"tf":1.0},"151":{"tf":1.4142135623730951},"183":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"312":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"419":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"175":{"tf":1.0},"179":{"tf":1.0},"313":{"tf":1.0},"358":{"tf":1.4142135623730951},"424":{"tf":1.0},"442":{"tf":1.4142135623730951},"50":{"tf":1.0},"501":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"408":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}}}}}}},"df":13,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"149":{"tf":1.0},"161":{"tf":1.0},"188":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"384":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"470":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}},"n":{"c":{"df":2,"docs":{"208":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":9,"docs":{"131":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.0},"422":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":4,"docs":{"106":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"500":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"126":{"tf":1.0},"210":{"tf":1.0},"273":{"tf":1.0},"284":{"tf":1.0},"304":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"120":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"372":{"tf":1.0}},"e":{"a":{"d":{"df":18,"docs":{"14":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"193":{"tf":1.0},"206":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"455":{"tf":1.0},"473":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"205":{"tf":1.0},"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"205":{"tf":1.7320508075688772},"208":{"tf":2.23606797749979},"214":{"tf":1.0},"418":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":2,"docs":{"102":{"tf":1.0},"106":{"tf":2.0}}},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}},"s":{"df":14,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"277":{"tf":2.0},"278":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":2.449489742783178}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"204":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{">":{"1":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"1":{"2":{"8":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"430":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"372":{"tf":1.0}}},"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"372":{"tf":1.0}}},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"372":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"421":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"60":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"161":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.0},"167":{"tf":1.0},"171":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":1,"docs":{"486":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":8,"docs":{"125":{"tf":1.0},"205":{"tf":1.0},"254":{"tf":1.7320508075688772},"340":{"tf":1.0},"343":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"372":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"200":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.7320508075688772},"232":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"312":{"tf":1.0},"328":{"tf":1.0},"358":{"tf":1.0},"374":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"372":{"tf":1.0}}},"df":2,"docs":{"372":{"tf":1.0},"398":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"144":{"tf":1.0},"209":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"342":{"tf":1.0},"41":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"127":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"374":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":3,"docs":{"151":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":1,"docs":{"421":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"432":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"207":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"149":{"tf":1.0},"153":{"tf":1.0},"250":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"318":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":2.23606797749979},"388":{"tf":1.0},"456":{"tf":1.0},"470":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"232":{"tf":1.0},"269":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":31,"docs":{"126":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":2.8284271247461903},"191":{"tf":1.4142135623730951},"199":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"240":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"256":{"tf":1.0},"272":{"tf":1.0},"313":{"tf":1.0},"358":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"388":{"tf":1.0},"455":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.0},"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"179":{"tf":1.0},"375":{"tf":1.7320508075688772},"377":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"df":6,"docs":{"372":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"98":{"tf":1.0}}},"k":{"df":9,"docs":{"1":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"147":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"253":{"tf":1.0},"42":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"16":{"tf":1.0},"164":{"tf":1.0},"184":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.4142135623730951},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"269":{"tf":1.0},"307":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":2.23606797749979},"382":{"tf":1.4142135623730951},"386":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":7,"docs":{"128":{"tf":1.0},"239":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.0},"318":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951}}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":5,"docs":{"130":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"497":{"tf":1.0},"500":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":10,"docs":{"117":{"tf":1.0},"238":{"tf":1.0},"296":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"358":{"tf":3.1622776601683795},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":4.47213595499958}}}},"df":0,"docs":{},"k":{"df":12,"docs":{"199":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"281":{"tf":2.23606797749979},"282":{"tf":3.1622776601683795},"283":{"tf":1.4142135623730951},"284":{"tf":1.7320508075688772},"291":{"tf":1.0},"312":{"tf":2.0},"406":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":3,"docs":{"130":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}},"i":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":24,"docs":{"161":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.0},"272":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"358":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.4142135623730951},"444":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"430":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":22,"docs":{"143":{"tf":1.0},"151":{"tf":1.0},"180":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"232":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"223":{"tf":1.0},"277":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.4142135623730951},"386":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"429":{"tf":1.0},"486":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.0}}}}},"p":{"df":1,"docs":{"343":{"tf":1.0}}},"s":{"df":2,"docs":{"252":{"tf":1.0},"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"444":{"tf":1.0}}},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"t":{"df":1,"docs":{"252":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"df":13,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"180":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"342":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"3":{"tf":1.0},"329":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"465":{"tf":1.0},"498":{"tf":1.0},"6":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"199":{"tf":1.0},"305":{"tf":1.0},"358":{"tf":3.4641016151377544},"455":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":14,"docs":{"125":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"184":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"312":{"tf":1.0},"356":{"tf":1.0},"442":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"112":{"tf":1.0},"122":{"tf":1.0},"149":{"tf":2.0},"202":{"tf":1.0},"384":{"tf":2.23606797749979},"386":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"61":{"tf":1.0},"83":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"297":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":25,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"188":{"tf":1.4142135623730951},"2":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"390":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"250":{"tf":1.7320508075688772},"270":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"402":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"183":{"tf":1.4142135623730951},"195":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"423":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":62,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"325":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"341":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"377":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":2.23606797749979},"386":{"tf":1.0},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.4142135623730951},"501":{"tf":1.0},"505":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"502":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"386":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"504":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"188":{"tf":1.0},"200":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.7320508075688772},"240":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"278":{"tf":1.7320508075688772},"281":{"tf":2.23606797749979},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"311":{"tf":1.0},"328":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"266":{"tf":1.0},"268":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"209":{"tf":1.0},"252":{"tf":1.0},"343":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":24,"docs":{"100":{"tf":1.4142135623730951},"161":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.7320508075688772},"180":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.4142135623730951},"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"245":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"418":{"tf":1.0},"442":{"tf":1.0},"455":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"268":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"205":{"tf":2.0},"216":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"<":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":10,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"177":{"tf":1.0},"184":{"tf":2.0},"189":{"tf":1.0},"209":{"tf":1.4142135623730951},"24":{"tf":1.0},"35":{"tf":1.0},"472":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}}}}},"k":{"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"14":{"tf":1.0},"200":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"417":{"tf":1.0},"421":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}},"df":25,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"416":{"tf":2.23606797749979},"417":{"tf":1.7320508075688772},"418":{"tf":3.1622776601683795},"421":{"tf":3.605551275463989},"422":{"tf":2.6457513110645907},"423":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"205":{"tf":2.0},"206":{"tf":3.872983346207417},"209":{"tf":6.6332495807108}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"104":{"tf":1.0},"179":{"tf":1.0},"32":{"tf":1.0},"327":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"263":{"tf":1.0},"275":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"322":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"380":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"509":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"x":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"372":{"tf":1.0},"422":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"305":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":20,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"254":{"tf":1.0},"329":{"tf":1.4142135623730951},"365":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"418":{"tf":1.0},"421":{"tf":2.0},"422":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}},"y":{"b":{"df":5,"docs":{"153":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"285":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":3.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"98":{"tf":1.0}},"m":{"df":2,"docs":{"399":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":25,"docs":{"128":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.0},"179":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"227":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"470":{"tf":1.4142135623730951},"486":{"tf":1.0}},"t":{"df":3,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"328":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":42,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"153":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"244":{"tf":1.0},"252":{"tf":1.4142135623730951},"256":{"tf":2.8284271247461903},"258":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.0},"366":{"tf":1.4142135623730951},"391":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"416":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"473":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"429":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"165":{"tf":1.0},"232":{"tf":1.0},"328":{"tf":1.0},"422":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"268":{"tf":2.449489742783178},"269":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":17,"docs":{"140":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"358":{"tf":4.898979485566356},"386":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":2.23606797749979},"500":{"tf":3.3166247903554},"501":{"tf":1.7320508075688772},"509":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"245":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"145":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}},"g":{"df":8,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"265":{"tf":1.0},"413":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"k":{"df":0,"docs":{},"l":{"df":10,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.4142135623730951},"179":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"140":{"tf":1.0},"193":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":2.449489742783178},"222":{"tf":2.449489742783178},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"254":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":2.6457513110645907},"72":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":2.8284271247461903},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"2":{"tf":1.0},"3":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.6457513110645907},"99":{"tf":3.1622776601683795}},"v":{"1":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":3,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":1,"docs":{"325":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"197":{"tf":1.4142135623730951},"23":{"tf":1.0},"358":{"tf":1.4142135623730951},"38":{"tf":1.0},"51":{"tf":3.1622776601683795},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"i":{"b":{"df":4,"docs":{"384":{"tf":1.0},"385":{"tf":2.23606797749979},"498":{"tf":1.0},"500":{"tf":1.0}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"158":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"211":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"265":{"tf":1.0},"275":{"tf":1.0},"283":{"tf":1.7320508075688772},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.0},"311":{"tf":1.7320508075688772},"312":{"tf":2.8284271247461903},"313":{"tf":2.0},"399":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"406":{"tf":2.23606797749979},"411":{"tf":1.0},"413":{"tf":1.0},"468":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":1,"docs":{"429":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"303":{"tf":1.4142135623730951},"410":{"tf":1.0},"414":{"tf":1.0},"504":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"303":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"1":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"431":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}},"u":{"df":1,"docs":{"146":{"tf":1.0}},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"422":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":5,"docs":{"127":{"tf":1.0},"180":{"tf":1.0},"209":{"tf":1.0},"239":{"tf":1.0},"384":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"415":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"364":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":1.0},"131":{"tf":1.0},"18":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":2,"docs":{"469":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":2,"docs":{"406":{"tf":1.0},"414":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"11":{"tf":1.0}}},"df":33,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.4142135623730951},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":2.0},"367":{"tf":1.0},"370":{"tf":1.4142135623730951},"375":{"tf":1.0},"377":{"tf":2.0},"418":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"455":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.4142135623730951},"465":{"tf":2.6457513110645907},"466":{"tf":1.4142135623730951},"468":{"tf":1.7320508075688772},"469":{"tf":1.7320508075688772},"472":{"tf":1.0},"477":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1":{"tf":1.0},"272":{"tf":1.0},"427":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"469":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":16,"docs":{"127":{"tf":1.0},"14":{"tf":1.4142135623730951},"238":{"tf":1.0},"250":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"349":{"tf":1.4142135623730951},"358":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":1.0},"501":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"165":{"tf":1.4142135623730951},"266":{"tf":1.0},"272":{"tf":1.0},"413":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.0},"255":{"tf":1.0},"470":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"179":{"tf":1.0},"18":{"tf":1.0},"210":{"tf":1.0},"455":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"188":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.0},"311":{"tf":1.0},"423":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":67,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"34":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"377":{"tf":1.0},"384":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"411":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0},"423":{"tf":1.0},"431":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.4142135623730951},"465":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"490":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":68,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.4142135623730951},"416":{"tf":1.0},"418":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0},"498":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":17,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"172":{"tf":1.0},"215":{"tf":1.0},"231":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"320":{"tf":1.0},"321":{"tf":1.0},"355":{"tf":1.0},"415":{"tf":1.4142135623730951},"423":{"tf":1.0},"496":{"tf":1.0},"504":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":2.449489742783178}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"308":{"tf":1.0},"358":{"tf":1.0},"374":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":9,"docs":{"161":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"205":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.4142135623730951},"401":{"tf":1.0},"444":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"341":{"tf":1.0}}}},"i":{"df":3,"docs":{"205":{"tf":1.0},"208":{"tf":1.0},"421":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.4142135623730951},"312":{"tf":1.0}}}},"df":1,"docs":{"44":{"tf":1.0}}}}},"n":{"+":{"1":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"/":{"3":{"df":3,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}},"8":{"df":1,"docs":{"33":{"tf":1.0}}},"a":{"df":8,"docs":{"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"408":{"tf":1.4142135623730951},"437":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0}}},"df":0,"docs":{}},"=":{"3":{"df":0,"docs":{},"f":{"+":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"3":{"df":2,"docs":{"125":{"tf":1.0},"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"122":{"tf":1.0},"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"122":{"tf":1.0},"140":{"tf":1.0},"355":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.4142135623730951},"164":{"tf":1.0},"208":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.0},"310":{"tf":1.0},"358":{"tf":2.23606797749979},"359":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"13":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"199":{"tf":1.0},"498":{"tf":2.23606797749979},"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"398":{"tf":1.4142135623730951},"421":{"tf":1.0},"98":{"tf":1.0}}}}},"y":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"126":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":2.23606797749979},"372":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"180":{"tf":1.0},"204":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"134":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.0},"26":{"tf":1.0},"304":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"469":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.4142135623730951},"94":{"tf":1.0},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"341":{"tf":1.0}}}}}}},"df":3,"docs":{"295":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"421":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":69,"docs":{"11":{"tf":1.4142135623730951},"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.7320508075688772},"241":{"tf":1.0},"250":{"tf":2.0},"255":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":2.0},"312":{"tf":2.23606797749979},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.7320508075688772},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.4142135623730951},"374":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.4142135623730951},"398":{"tf":1.0},"401":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"487":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"455":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"114":{"tf":1.0},"153":{"tf":1.0},"193":{"tf":1.0},"258":{"tf":1.0},"362":{"tf":1.0},"504":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"441":{"tf":1.0},"444":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951}}}},"t":{"df":4,"docs":{"212":{"tf":1.0},"398":{"tf":1.0},"445":{"tf":1.0},"504":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"270":{"tf":1.0},"308":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":59,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"255":{"tf":2.0},"258":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":2.0},"269":{"tf":1.0},"27":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"341":{"tf":1.0},"366":{"tf":1.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.0},"382":{"tf":2.0},"384":{"tf":2.23606797749979},"386":{"tf":1.4142135623730951},"390":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"442":{"tf":2.6457513110645907},"444":{"tf":1.7320508075688772},"452":{"tf":1.0},"474":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":2.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"164":{"tf":1.0},"205":{"tf":1.0},"283":{"tf":1.4142135623730951},"289":{"tf":1.0},"358":{"tf":2.0},"54":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"208":{"tf":1.7320508075688772},"373":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":79,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.23606797749979},"140":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"167":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":2.0},"188":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"270":{"tf":1.0},"272":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"282":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":3.4641016151377544},"359":{"tf":1.4142135623730951},"361":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.7320508075688772},"400":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"417":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"468":{"tf":1.7320508075688772},"469":{"tf":2.0},"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"48":{"tf":1.0},"484":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"250":{"tf":1.0},"358":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"129":{"tf":1.0},"171":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"30":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":2.8284271247461903},"421":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"178":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"209":{"tf":1.0},"3":{"tf":1.7320508075688772},"5":{"tf":2.0},"6":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"307":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":49,"docs":{"102":{"tf":3.1622776601683795},"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":3.4641016151377544},"146":{"tf":2.449489742783178},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"153":{"tf":2.23606797749979},"158":{"tf":2.449489742783178},"232":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":2.8284271247461903},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":2.23606797749979},"258":{"tf":2.23606797749979},"312":{"tf":1.4142135623730951},"358":{"tf":1.0},"382":{"tf":2.6457513110645907},"384":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"412":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"191":{"tf":1.0},"206":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0}}}}},"n":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"358":{"tf":2.23606797749979},"421":{"tf":1.0}},"e":{"df":30,"docs":{"150":{"tf":1.0},"165":{"tf":1.4142135623730951},"173":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"246":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"338":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"358":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"47":{"tf":1.0},"480":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"160":{"tf":1.0},"165":{"tf":1.0},"222":{"tf":1.0},"414":{"tf":1.0}}}},"df":1,"docs":{"11":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"312":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":40,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"164":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.7320508075688772},"384":{"tf":1.7320508075688772},"386":{"tf":1.0},"398":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.4142135623730951},"429":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"51":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"296":{"tf":1.0}}}}}}}}},"i":{"c":{"df":3,"docs":{"140":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":7,"docs":{"209":{"tf":1.0},"339":{"tf":1.7320508075688772},"340":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"343":{"tf":2.8284271247461903},"344":{"tf":1.4142135623730951},"349":{"tf":1.0}},"i":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"222":{"tf":1.0},"223":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"v":{"a":{"df":2,"docs":{"436":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"b":{"df":5,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"323":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"161":{"tf":1.0},"179":{"tf":1.4142135623730951},"343":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"390":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"500":{"tf":1.0},"98":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"311":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"235":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":50,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"201":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":2.0},"219":{"tf":1.4142135623730951},"222":{"tf":2.449489742783178},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.7320508075688772},"256":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.3166247903554},"365":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"455":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":2.6457513110645907},"498":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"222":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"}":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"d":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"176":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"421":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"502":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"140":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"255":{"tf":1.0},"358":{"tf":1.4142135623730951},"362":{"tf":1.0},"382":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":4,"docs":{"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"235":{"tf":1.0},"355":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"235":{"tf":1.0}},"i":{"df":2,"docs":{"131":{"tf":1.0},"140":{"tf":2.23606797749979}}}},"r":{"df":7,"docs":{"205":{"tf":1.0},"305":{"tf":1.0},"374":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.4142135623730951},"449":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"33":{"tf":3.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.449489742783178},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"33":{"tf":1.7320508075688772},"42":{"tf":1.0}}}},"o":{"b":{"df":4,"docs":{"440":{"tf":1.0},"453":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":4,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"161":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"424":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"309":{"tf":1.0},"312":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":20,"docs":{"13":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"29":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.7320508075688772},"365":{"tf":1.0},"366":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"45":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"51":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"117":{"tf":1.0},"48":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":2.8284271247461903}}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"208":{"tf":2.449489742783178},"372":{"tf":1.4142135623730951},"373":{"tf":1.7320508075688772},"375":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.0},"206":{"tf":1.7320508075688772},"222":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.4142135623730951},"146":{"tf":1.0},"158":{"tf":1.4142135623730951},"363":{"tf":1.0},"390":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"399":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"401":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":20,"docs":{"122":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"167":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"266":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.7320508075688772},"362":{"tf":1.0},"382":{"tf":1.0},"410":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":68,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"255":{"tf":1.7320508075688772},"258":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"325":{"tf":1.0},"327":{"tf":1.0},"339":{"tf":1.7320508075688772},"341":{"tf":1.0},"343":{"tf":2.0},"344":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"429":{"tf":1.4142135623730951},"433":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"498":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"504":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"201":{"tf":1.0},"209":{"tf":1.0},"250":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"200":{"tf":1.0},"218":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"486":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"179":{"tf":1.7320508075688772},"189":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"206":{"tf":1.4142135623730951},"223":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"340":{"tf":1.0},"452":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"16":{"tf":1.0},"308":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0}}}}}},"r":{"df":21,"docs":{"14":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"186":{"tf":1.0},"206":{"tf":2.449489742783178},"208":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"26":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"305":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"157":{"tf":1.0},"262":{"tf":1.0},"384":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"322":{"tf":1.0},"421":{"tf":1.0},"468":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":15,"docs":{"115":{"tf":1.0},"13":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"310":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"341":{"tf":1.0},"384":{"tf":1.0},"436":{"tf":1.0},"491":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0}},"t":{"df":2,"docs":{"179":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"209":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"126":{"tf":1.4142135623730951},"171":{"tf":1.0},"188":{"tf":1.0},"254":{"tf":1.0},"384":{"tf":2.449489742783178},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"500":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":44,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"126":{"tf":1.7320508075688772},"140":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":2.8284271247461903},"381":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"486":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"267":{"tf":1.0},"268":{"tf":1.0},"298":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":3.1622776601683795},"235":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"281":{"tf":1.7320508075688772},"312":{"tf":1.0},"341":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.0},"272":{"tf":1.0},"308":{"tf":1.0},"327":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"205":{"tf":1.0},"277":{"tf":1.0},"375":{"tf":1.0},"406":{"tf":1.0},"469":{"tf":1.0},"492":{"tf":1.0},"52":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"22":{"tf":1.0},"498":{"tf":1.0}}}}},"df":16,"docs":{"111":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"296":{"tf":1.0},"358":{"tf":8.12403840463596},"363":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"47":{"tf":1.0},"501":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"31":{"tf":1.0},"398":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"51":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"119":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"268":{"tf":1.0},"358":{"tf":3.4641016151377544},"412":{"tf":1.0},"421":{"tf":1.0},"435":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"199":{"tf":1.0},"398":{"tf":1.4142135623730951},"445":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"80":{"tf":1.0}}}},"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}},"df":23,"docs":{"12":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"310":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.0},"372":{"tf":1.0},"384":{"tf":1.4142135623730951},"401":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"470":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":10,"docs":{"111":{"tf":1.4142135623730951},"127":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"410":{"tf":1.0},"422":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"128":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"312":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"481":{"tf":1.0}}},"o":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"196":{"tf":1.0},"204":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"41":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"204":{"tf":2.0},"205":{"tf":1.7320508075688772},"206":{"tf":2.8284271247461903},"209":{"tf":4.69041575982343},"39":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":14,"docs":{"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":2.23606797749979},"53":{"tf":1.0}}}}}}}}}},"y":{"df":1,"docs":{"95":{"tf":1.0}}}},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"372":{"tf":1.0}}}},"0":{"df":1,"docs":{"209":{"tf":1.0}}},"1":{"df":1,"docs":{"209":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"372":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"130":{"tf":1.0}}}},"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":4,"docs":{"496":{"tf":1.7320508075688772},"498":{"tf":2.0},"501":{"tf":1.0},"61":{"tf":1.0}}}},"i":{"d":{"df":13,"docs":{"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"268":{"tf":1.0},"398":{"tf":1.7320508075688772},"463":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"472":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"444":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"235":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":35,"docs":{"102":{"tf":1.0},"157":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":2.0},"262":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.7320508075688772},"281":{"tf":1.0},"296":{"tf":1.4142135623730951},"3":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":2.449489742783178},"319":{"tf":1.0},"328":{"tf":1.0},"401":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"441":{"tf":1.0},"444":{"tf":1.0},"449":{"tf":1.0},"469":{"tf":1.7320508075688772},"471":{"tf":2.6457513110645907},"472":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"253":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"281":{"tf":1.0}}},"(":{"1":{"0":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":82,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"178":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":2.6457513110645907},"210":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.0},"250":{"tf":2.23606797749979},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":2.449489742783178},"255":{"tf":2.23606797749979},"256":{"tf":2.6457513110645907},"258":{"tf":2.23606797749979},"263":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"272":{"tf":1.4142135623730951},"275":{"tf":1.7320508075688772},"276":{"tf":2.6457513110645907},"277":{"tf":4.58257569495584},"278":{"tf":2.6457513110645907},"279":{"tf":1.4142135623730951},"281":{"tf":4.123105625617661},"282":{"tf":3.3166247903554},"283":{"tf":2.449489742783178},"284":{"tf":3.7416573867739413},"287":{"tf":1.0},"289":{"tf":2.0},"291":{"tf":1.0},"304":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"306":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":3.872983346207417},"313":{"tf":2.23606797749979},"318":{"tf":1.4142135623730951},"368":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.0},"465":{"tf":2.6457513110645907},"467":{"tf":1.0},"468":{"tf":2.0},"469":{"tf":2.8284271247461903},"470":{"tf":2.8284271247461903},"471":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.4142135623730951},"477":{"tf":1.7320508075688772},"481":{"tf":1.4142135623730951},"500":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"430":{"tf":1.0}}}}},"df":12,"docs":{"130":{"tf":1.0},"209":{"tf":1.4142135623730951},"244":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"d":{"df":10,"docs":{"179":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.0},"269":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":2.23606797749979},"472":{"tf":1.4142135623730951},"473":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.0},"192":{"tf":1.0},"312":{"tf":1.4142135623730951}}}}}},"m":{"df":2,"docs":{"164":{"tf":2.449489742783178},"358":{"tf":11.269427669584644}},"e":{"df":0,"docs":{},"t":{"df":21,"docs":{"102":{"tf":1.0},"205":{"tf":1.7320508075688772},"208":{"tf":2.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"358":{"tf":3.1622776601683795},"364":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":2,"docs":{"128":{"tf":1.0},"197":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"324":{"tf":1.0},"325":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"72":{"tf":2.23606797749979}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"202":{"tf":1.4142135623730951},"419":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":2,"docs":{"126":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"385":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":23,"docs":{"102":{"tf":1.7320508075688772},"115":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"160":{"tf":1.0},"171":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"231":{"tf":1.4142135623730951},"235":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.0},"33":{"tf":1.0},"415":{"tf":1.0},"43":{"tf":1.0},"441":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.0},"158":{"tf":1.0},"235":{"tf":1.0},"284":{"tf":2.0},"3":{"tf":1.0},"398":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"442":{"tf":2.23606797749979},"444":{"tf":2.0},"452":{"tf":1.0},"48":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"122":{"tf":1.0},"14":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"232":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.7320508075688772},"501":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"129":{"tf":1.0},"318":{"tf":1.0},"465":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"169":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"t":{"df":4,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"5":{"7":{"6":{"0":{"0":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"206":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"329":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0}}}}},"t":{"df":2,"docs":{"222":{"tf":1.0},"384":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"120":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"266":{"tf":1.0},"395":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.7320508075688772},"504":{"tf":1.7320508075688772},"506":{"tf":1.0},"509":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"398":{"tf":1.0},"436":{"tf":1.0},"460":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"187":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":1,"docs":{"469":{"tf":1.0}}}}}}},"df":7,"docs":{"209":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":2.23606797749979},"466":{"tf":1.0}},"e":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"129":{"tf":1.0},"140":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"209":{"tf":1.0},"331":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.7320508075688772},"468":{"tf":1.4142135623730951},"469":{"tf":2.0},"477":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"119":{"tf":1.0},"209":{"tf":1.0},"313":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"254":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"126":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"158":{"tf":2.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"258":{"tf":1.0},"340":{"tf":1.0},"382":{"tf":1.4142135623730951}},"i":{"d":{"df":5,"docs":{"151":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.0},"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"13":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":7,"docs":{"144":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.0},"310":{"tf":1.4142135623730951},"322":{"tf":1.0},"329":{"tf":1.0},"384":{"tf":1.0}}}}},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"214":{"tf":1.0},"469":{"tf":1.0}}}},"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":25,"docs":{"122":{"tf":1.0},"128":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"236":{"tf":1.0},"328":{"tf":1.0},"339":{"tf":1.4142135623730951},"343":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.4142135623730951},"384":{"tf":1.0},"410":{"tf":1.0},"421":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.0},"481":{"tf":1.4142135623730951},"50":{"tf":1.0},"504":{"tf":1.4142135623730951},"51":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":95,"docs":{"1":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"18":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"248":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"275":{"tf":1.0},"277":{"tf":2.0},"278":{"tf":1.0},"281":{"tf":1.0},"286":{"tf":1.4142135623730951},"292":{"tf":1.0},"299":{"tf":1.0},"303":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"323":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.0},"339":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"362":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"382":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"409":{"tf":1.0},"410":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":35,"docs":{"151":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":4.242640687119285},"206":{"tf":2.6457513110645907},"207":{"tf":1.0},"208":{"tf":2.0},"214":{"tf":1.4142135623730951},"222":{"tf":1.0},"256":{"tf":1.0},"309":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":2.23606797749979},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"398":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":3.4641016151377544},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"429":{"tf":2.449489742783178},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"433":{"tf":2.0},"435":{"tf":1.0},"438":{"tf":2.23606797749979},"464":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"200":{"tf":1.0},"238":{"tf":1.0},"277":{"tf":1.0},"308":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}}}},"t":{"df":2,"docs":{"468":{"tf":1.0},"470":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"128":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"231":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.0},"72":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"230":{"tf":1.0},"264":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"140":{"tf":1.0},"210":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"143":{"tf":1.0},"215":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"370":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"141":{"tf":1.0},"248":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"380":{"tf":1.0},"496":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"206":{"tf":1.7320508075688772},"423":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":15,"docs":{"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"213":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"421":{"tf":1.4142135623730951},"471":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":5,"docs":{"177":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"308":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":3,"docs":{"370":{"tf":1.4142135623730951},"372":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"14":{"tf":1.0},"179":{"tf":2.0},"183":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":2.0},"5":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"145":{"tf":1.0},"414":{"tf":1.4142135623730951},"48":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"206":{"tf":1.0},"224":{"tf":1.0},"245":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"14":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"359":{"tf":1.0},"406":{"tf":1.4142135623730951},"416":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"444":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"358":{"tf":3.4641016151377544}}}}}}},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"'":{"df":9,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"188":{"tf":1.0},"232":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"398":{"tf":1.0}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":111,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":2.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"169":{"tf":1.0},"175":{"tf":2.449489742783178},"176":{"tf":1.7320508075688772},"177":{"tf":2.6457513110645907},"178":{"tf":2.6457513110645907},"179":{"tf":3.0},"180":{"tf":1.4142135623730951},"181":{"tf":2.0},"183":{"tf":2.449489742783178},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":2.6457513110645907},"201":{"tf":2.449489742783178},"202":{"tf":2.0},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"211":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"296":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":2.0},"316":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.0},"337":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"379":{"tf":1.0},"382":{"tf":1.4142135623730951},"395":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"413":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"429":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.4142135623730951},"443":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.4142135623730951},"498":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"436":{"tf":1.0},"449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"177":{"tf":1.0},"187":{"tf":1.0}}},"df":2,"docs":{"176":{"tf":1.0},"180":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":2,"docs":{"401":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"179":{"tf":1.0},"193":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"307":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}}}}},"r":{"df":1,"docs":{"166":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"442":{"tf":1.0}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"385":{"tf":1.0},"470":{"tf":1.0},"99":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"122":{"tf":1.0},"14":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"422":{"tf":1.0},"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"358":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"504":{"tf":1.0},"69":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"129":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"50":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":45,"docs":{"104":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"209":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"250":{"tf":1.0},"263":{"tf":1.0},"284":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"312":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"367":{"tf":1.0},"378":{"tf":1.0},"382":{"tf":3.1622776601683795},"384":{"tf":2.449489742783178},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"417":{"tf":1.0},"422":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.0}}}}}}}},"df":6,"docs":{"273":{"tf":1.0},"379":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"501":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":25,"docs":{"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"250":{"tf":1.0},"375":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"452":{"tf":1.0},"473":{"tf":1.0},"67":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"126":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"204":{"tf":1.0},"240":{"tf":1.4142135623730951},"313":{"tf":1.0},"462":{"tf":1.4142135623730951}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"179":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"431":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":2.23606797749979}}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.0}}}},"r":{"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"325":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"137":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"61":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":2.0}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"204":{"tf":1.0},"358":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"177":{"tf":1.0}}}},"s":{"df":1,"docs":{"252":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"165":{"tf":1.4142135623730951}},"t":{"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"151":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"256":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"398":{"tf":1.7320508075688772},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":7,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.7320508075688772},"501":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"174":{"tf":1.0},"311":{"tf":1.0},"384":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}},"r":{"df":1,"docs":{"398":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"254":{"tf":1.0},"358":{"tf":2.0},"382":{"tf":2.0},"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"127":{"tf":1.0},"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"232":{"tf":1.0},"421":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"363":{"tf":1.0},"399":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"149":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"125":{"tf":1.0},"417":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"341":{"tf":1.0},"343":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"355":{"tf":1.0},"94":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"166":{"tf":1.0},"2":{"tf":1.0},"256":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"444":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":13,"docs":{"14":{"tf":1.7320508075688772},"205":{"tf":2.449489742783178},"206":{"tf":1.0},"208":{"tf":2.0},"358":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"5":{"tf":1.0}},"s":{"df":5,"docs":{"206":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"416":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.4142135623730951}}}}}}}}}},"df":35,"docs":{"1":{"tf":1.0},"12":{"tf":2.23606797749979},"13":{"tf":1.4142135623730951},"183":{"tf":1.0},"204":{"tf":2.23606797749979},"205":{"tf":3.605551275463989},"206":{"tf":3.605551275463989},"207":{"tf":1.4142135623730951},"208":{"tf":4.795831523312719},"21":{"tf":1.0},"214":{"tf":2.449489742783178},"22":{"tf":1.0},"3":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":2.6457513110645907},"366":{"tf":2.23606797749979},"367":{"tf":2.6457513110645907},"370":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.7320508075688772},"374":{"tf":3.1622776601683795},"375":{"tf":3.605551275463989},"377":{"tf":1.4142135623730951},"379":{"tf":1.0},"398":{"tf":1.7320508075688772},"4":{"tf":1.0},"417":{"tf":2.23606797749979},"418":{"tf":3.7416573867739413},"421":{"tf":4.123105625617661},"422":{"tf":3.7416573867739413},"424":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":20,"docs":{"18":{"tf":1.0},"202":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"327":{"tf":1.0},"368":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"232":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"312":{"tf":1.0},"41":{"tf":1.7320508075688772},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":66,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"172":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"377":{"tf":1.0},"380":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"479":{"tf":1.4142135623730951},"482":{"tf":1.0},"493":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"424":{"tf":1.0}},"i":{"df":4,"docs":{"204":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"432":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":53,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"212":{"tf":1.4142135623730951},"216":{"tf":1.0},"226":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.4142135623730951},"292":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"399":{"tf":1.0},"408":{"tf":1.4142135623730951},"427":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.4142135623730951},"482":{"tf":1.0},"488":{"tf":1.0},"496":{"tf":1.0},"502":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"207":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"235":{"tf":1.0},"281":{"tf":1.0},"429":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"363":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":20,"docs":{"131":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.4142135623730951},"158":{"tf":1.0},"192":{"tf":1.4142135623730951},"196":{"tf":1.0},"200":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"358":{"tf":1.0},"380":{"tf":1.0},"473":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"199":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"210":{"tf":1.0},"264":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"358":{"tf":1.4142135623730951},"37":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"439":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":12,"docs":{"276":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":7,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"309":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"398":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"266":{"tf":1.0},"311":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"444":{"tf":1.0}},"m":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"178":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"137":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"325":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.4142135623730951},"201":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"398":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"166":{"tf":1.0},"9":{"tf":1.0}}},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"284":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"268":{"tf":1.0},"27":{"tf":1.0},"325":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":26,"docs":{"129":{"tf":2.6457513110645907},"146":{"tf":2.23606797749979},"179":{"tf":2.0},"181":{"tf":2.0},"183":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"377":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":2.23606797749979},"385":{"tf":2.23606797749979},"386":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":2.0},"457":{"tf":2.23606797749979},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772},"483":{"tf":2.0},"486":{"tf":3.0},"488":{"tf":1.0},"51":{"tf":1.4142135623730951},"83":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"116":{"tf":1.0},"206":{"tf":1.0},"341":{"tf":1.0},"474":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"204":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"396":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"128":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"364":{"tf":1.0},"374":{"tf":1.0},"455":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.7320508075688772}}}},"s":{"a":{"df":0,"docs":{},"l":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"df":114,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"10":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.8284271247461903},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":2.0},"235":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":2.449489742783178},"421":{"tf":1.4142135623730951},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.4142135623730951},"444":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.4142135623730951},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"6":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":2.449489742783178},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"386":{"tf":1.4142135623730951},"422":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"2":{"df":1,"docs":{"254":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"254":{"tf":1.0},"384":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":2,"docs":{"26":{"tf":1.0},"430":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}}},"df":68,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.0},"131":{"tf":1.0},"140":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"158":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":2.23606797749979},"231":{"tf":1.0},"235":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":2.449489742783178},"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"35":{"tf":1.7320508075688772},"368":{"tf":1.0},"37":{"tf":1.0},"380":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":2.449489742783178},"386":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"41":{"tf":1.0},"419":{"tf":1.0},"42":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"210":{"tf":1.0},"222":{"tf":2.0},"223":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"382":{"tf":1.4142135623730951},"99":{"tf":1.0}},"n":{"df":4,"docs":{"134":{"tf":1.0},"179":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0}}}},"i":{"d":{"df":70,"docs":{"101":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":3.605551275463989},"147":{"tf":2.8284271247461903},"148":{"tf":1.4142135623730951},"149":{"tf":2.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"158":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.23606797749979},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":2.0},"258":{"tf":1.7320508075688772},"26":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"358":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"384":{"tf":2.0},"401":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"442":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"51":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"207":{"tf":1.0},"421":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":2.0},"206":{"tf":1.4142135623730951}}}}}}}}},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"463":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":2.449489742783178},"472":{"tf":1.0},"473":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"33":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"df":10,"docs":{"128":{"tf":1.0},"129":{"tf":3.3166247903554},"309":{"tf":1.0},"319":{"tf":1.0},"469":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"317":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":8,"docs":{"199":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"358":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":1.0},"296":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"250":{"tf":1.0},"462":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"204":{"tf":2.0},"205":{"tf":3.605551275463989},"206":{"tf":3.3166247903554},"207":{"tf":2.8284271247461903},"208":{"tf":2.23606797749979},"211":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"470":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":8,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"158":{"tf":1.0},"188":{"tf":1.0},"249":{"tf":1.0},"312":{"tf":1.0},"384":{"tf":1.0},"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"188":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"200":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"406":{"tf":1.0},"425":{"tf":1.0}}}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"472":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"421":{"tf":1.7320508075688772}}}},"z":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"140":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":2.0},"384":{"tf":2.23606797749979},"385":{"tf":1.0},"386":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"382":{"tf":2.0},"384":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":57,"docs":{"1":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"321":{"tf":1.4142135623730951},"323":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"208":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"106":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"106":{"tf":2.23606797749979},"208":{"tf":1.4142135623730951}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"128":{"tf":1.0},"375":{"tf":1.4142135623730951},"415":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"488":{"tf":1.0}}}},"o":{"df":2,"docs":{"275":{"tf":1.0},"281":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"146":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"200":{"tf":1.0},"481":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"126":{"tf":1.4142135623730951},"147":{"tf":2.6457513110645907},"153":{"tf":1.0},"23":{"tf":1.0},"253":{"tf":2.23606797749979},"258":{"tf":1.0},"47":{"tf":3.1622776601683795},"48":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"54":{"tf":2.6457513110645907}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"126":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0},"256":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"54":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":2.0},"54":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"54":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"223":{"tf":1.4142135623730951},"358":{"tf":3.7416573867739413},"370":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"323":{"tf":1.0},"328":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"424":{"tf":1.0}}}},"t":{"a":{"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"200":{"tf":1.0},"367":{"tf":1.4142135623730951},"422":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}},"o":{"df":5,"docs":{"204":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"330":{"tf":1.0},"47":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"165":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"250":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"df":2,"docs":{"358":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"358":{"tf":1.4142135623730951},"367":{"tf":1.0},"421":{"tf":1.0},"501":{"tf":1.0}}},"t":{"df":3,"docs":{"375":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0}}}},"d":{"df":9,"docs":{"145":{"tf":1.4142135623730951},"149":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"111":{"tf":1.0},"200":{"tf":1.4142135623730951},"377":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"151":{"tf":1.0},"216":{"tf":1.0},"224":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"313":{"tf":1.0},"385":{"tf":1.0}}}},"z":{"df":2,"docs":{"251":{"tf":1.0},"372":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"128":{"tf":1.0},"151":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":12,"docs":{"129":{"tf":2.0},"153":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"385":{"tf":1.0},"418":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"208":{"tf":1.0},"498":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"454":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"328":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"312":{"tf":1.0},"98":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"22":{"tf":1.0},"268":{"tf":1.0},"412":{"tf":1.0},"48":{"tf":1.0}}},"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":5,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":14,"docs":{"104":{"tf":1.0},"140":{"tf":1.4142135623730951},"153":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":2.23606797749979},"209":{"tf":1.7320508075688772},"258":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":2.0},"291":{"tf":1.0},"58":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"u":{"c":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"239":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"367":{"tf":1.0},"381":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.4142135623730951},"444":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"502":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"459":{"tf":1.0},"473":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":13,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"209":{"tf":1.0},"384":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":2.0},"501":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"d":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":68,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"172":{"tf":1.0},"196":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"350":{"tf":1.0},"364":{"tf":1.4142135623730951},"371":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"391":{"tf":1.0},"399":{"tf":1.0},"41":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.4142135623730951},"450":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":2.0},"482":{"tf":1.0},"493":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.0},"61":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":3,"docs":{"268":{"tf":1.0},"307":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"130":{"tf":1.0},"268":{"tf":1.7320508075688772},"270":{"tf":1.0},"296":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"416":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"207":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.7320508075688772},"486":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}},"m":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"204":{"tf":1.4142135623730951},"422":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"161":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"130":{"tf":1.0},"222":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"206":{"tf":3.0}}},"df":9,"docs":{"204":{"tf":1.7320508075688772},"205":{"tf":5.196152422706632},"206":{"tf":6.082762530298219},"208":{"tf":1.0},"209":{"tf":4.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"206":{"tf":2.449489742783178},"209":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"141":{"tf":1.0},"147":{"tf":2.6457513110645907},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"309":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":3.0},"470":{"tf":1.0},"472":{"tf":1.4142135623730951},"481":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"472":{"tf":1.0}}}},"df":15,"docs":{"141":{"tf":1.0},"147":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"463":{"tf":2.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":2.0},"473":{"tf":1.0},"477":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0}},"i":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"107":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":2.6457513110645907},"206":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0},"469":{"tf":1.7320508075688772},"472":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"232":{"tf":1.0},"233":{"tf":1.0}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"268":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":62,"docs":{"1":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"322":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"352":{"tf":1.0},"380":{"tf":1.0},"393":{"tf":1.0},"399":{"tf":1.0},"41":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.0},"433":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"509":{"tf":1.4142135623730951},"63":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.0}}}}}}}}}},"x":{"df":1,"docs":{"501":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"277":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":47,"docs":{"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":3.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"208":{"tf":2.0},"209":{"tf":2.449489742783178},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"248":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"255":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"305":{"tf":2.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":2.449489742783178},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.4142135623730951}}}},"df":16,"docs":{"128":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"188":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"327":{"tf":1.4142135623730951},"330":{"tf":1.0},"422":{"tf":1.0},"429":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"72":{"tf":3.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"180":{"tf":1.0},"210":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"96":{"tf":1.0}}}},"df":1,"docs":{"418":{"tf":1.0}},"v":{"df":8,"docs":{"117":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"34":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"13":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"147":{"tf":1.0},"151":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"331":{"tf":1.0},"398":{"tf":1.0},"98":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":17,"docs":{"106":{"tf":1.4142135623730951},"178":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"24":{"tf":1.0},"321":{"tf":1.0},"358":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.4142135623730951},"63":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"312":{"tf":1.0},"381":{"tf":1.0},"384":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"384":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.7320508075688772}},"v":{"2":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":35,"docs":{"100":{"tf":1.0},"130":{"tf":1.4142135623730951},"151":{"tf":1.0},"164":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":2.0},"209":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"264":{"tf":1.4142135623730951},"269":{"tf":2.23606797749979},"276":{"tf":1.0},"291":{"tf":1.0},"312":{"tf":1.4142135623730951},"317":{"tf":1.0},"353":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"390":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"444":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"473":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"498":{"tf":1.0},"50":{"tf":1.0},"504":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"414":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"312":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"204":{"tf":2.8284271247461903},"205":{"tf":2.8284271247461903},"206":{"tf":4.123105625617661},"208":{"tf":1.7320508075688772},"214":{"tf":1.0},"277":{"tf":1.4142135623730951},"289":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":2.23606797749979},"421":{"tf":2.8284271247461903},"422":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}}}}}}}}},"df":1,"docs":{"469":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":8,"docs":{"463":{"tf":2.0},"464":{"tf":1.0},"466":{"tf":1.7320508075688772},"468":{"tf":2.0},"469":{"tf":2.449489742783178},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"472":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"254":{"tf":1.0},"341":{"tf":1.0},"384":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":12,"docs":{"235":{"tf":1.0},"256":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":3,"docs":{"382":{"tf":1.7320508075688772},"384":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"384":{"tf":2.0},"386":{"tf":1.4142135623730951}}}}}},"o":{"df":6,"docs":{"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"300":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"312":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"117":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"294":{"tf":1.0},"8":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":18,"docs":{"108":{"tf":1.7320508075688772},"151":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"384":{"tf":1.0},"419":{"tf":1.0},"457":{"tf":1.4142135623730951},"498":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"1":{"df":1,"docs":{"130":{"tf":1.0}}},"2":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":25,"docs":{"0":{"tf":1.0},"126":{"tf":1.7320508075688772},"129":{"tf":3.7416573867739413},"140":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.4142135623730951},"204":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.7320508075688772},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"254":{"tf":2.23606797749979},"255":{"tf":1.0},"358":{"tf":2.8284271247461903},"380":{"tf":1.7320508075688772},"384":{"tf":3.4641016151377544},"386":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"393":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"462":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":83,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"14":{"tf":2.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"165":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.7320508075688772},"275":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":2.0},"385":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"401":{"tf":1.4142135623730951},"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.4142135623730951},"468":{"tf":1.7320508075688772},"469":{"tf":2.23606797749979},"47":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":2,"docs":{"277":{"tf":1.4142135623730951},"278":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"202":{"tf":1.0},"212":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"368":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.0},"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"108":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"358":{"tf":1.7320508075688772},"421":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":2.0},"470":{"tf":1.0},"473":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"418":{"tf":1.0},"421":{"tf":3.1622776601683795},"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"199":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":23,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"205":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"277":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"314":{"tf":1.0},"317":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"140":{"tf":1.0},"184":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"404":{"tf":1.0},"429":{"tf":1.0},"448":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"254":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":17,"docs":{"11":{"tf":1.7320508075688772},"129":{"tf":2.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"151":{"tf":1.0},"204":{"tf":1.4142135623730951},"217":{"tf":1.0},"254":{"tf":2.23606797749979},"255":{"tf":1.0},"256":{"tf":1.0},"29":{"tf":1.0},"358":{"tf":1.4142135623730951},"384":{"tf":2.23606797749979},"385":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"422":{"tf":1.0},"465":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}},"df":3,"docs":{"343":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"417":{"tf":1.0},"421":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":29,"docs":{"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"199":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"277":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":3.0},"359":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"180":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"208":{"tf":1.0},"325":{"tf":1.0},"470":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"125":{"tf":1.0},"127":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"454":{"tf":1.0},"455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":21,"docs":{"106":{"tf":1.0},"129":{"tf":1.0},"165":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"222":{"tf":1.0},"281":{"tf":1.0},"33":{"tf":2.8284271247461903},"355":{"tf":1.0},"358":{"tf":7.280109889280518},"400":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"204":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"422":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":20,"docs":{"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.23606797749979},"394":{"tf":1.7320508075688772},"395":{"tf":2.0},"396":{"tf":1.0},"398":{"tf":2.6457513110645907},"422":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"112":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.4142135623730951},"295":{"tf":1.0},"407":{"tf":1.0},"442":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"268":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"244":{"tf":1.0},"416":{"tf":1.4142135623730951},"500":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"119":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"284":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"468":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"c":{"#":{"0":{"0":{"0":{"1":{"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":158,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"131":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"235":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":2.23606797749979},"253":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"27":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":1.0},"303":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"330":{"tf":1.0},"339":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"353":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":2.23606797749979},"368":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"401":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"425":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"443":{"tf":1.4142135623730951},"444":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"457":{"tf":1.4142135623730951},"460":{"tf":1.0},"463":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"498":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.23606797749979},"502":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"509":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"197":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":14,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"343":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"407":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"61":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":4,"docs":{"161":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"370":{"tf":1.0}}},"k":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"199":{"tf":1.0},"284":{"tf":1.7320508075688772},"297":{"tf":1.0},"311":{"tf":1.0},"375":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"245":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"216":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"311":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"313":{"tf":1.0},"418":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"285":{"tf":1.0},"474":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"267":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"84":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"196":{"tf":1.0},"210":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"p":{"df":11,"docs":{"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"179":{"tf":4.795831523312719},"181":{"tf":3.1622776601683795},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}},"t":{"df":25,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.7320508075688772},"312":{"tf":1.0},"384":{"tf":1.4142135623730951},"429":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"487":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"483":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"205":{"tf":1.0},"35":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"311":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"311":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"p":{"c":{"df":4,"docs":{"102":{"tf":1.0},"158":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"436":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"472":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}},"n":{"df":18,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"204":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"358":{"tf":1.0},"401":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":79,"docs":{"102":{"tf":1.4142135623730951},"112":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":2.23606797749979},"160":{"tf":2.0},"161":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"166":{"tf":2.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"292":{"tf":2.0},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"300":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.7320508075688772},"353":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":2.8284271247461903},"358":{"tf":4.47213595499958},"359":{"tf":1.7320508075688772},"362":{"tf":1.0},"374":{"tf":1.0},"385":{"tf":1.0},"399":{"tf":1.7320508075688772},"400":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"405":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"411":{"tf":1.0},"415":{"tf":2.0},"444":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"460":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":3.0},"499":{"tf":1.0},"500":{"tf":2.6457513110645907},"501":{"tf":2.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.7320508075688772},"509":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"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":{}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"414":{"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":{"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"33":{"tf":1.0},"500":{"tf":1.0}}}}},"·":{"df":1,"docs":{"48":{"tf":1.0}},"s":{")":{"/":{"(":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{")":{"/":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"/":{"2":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"140":{"tf":1.0},"42":{"tf":1.0},"470":{"tf":1.0}}}},"k":{"a":{"c":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"208":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"268":{"tf":1.0},"270":{"tf":1.0},"323":{"tf":2.0},"327":{"tf":1.4142135623730951},"328":{"tf":2.449489742783178},"329":{"tf":1.0},"337":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"205":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":19,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":4.58257569495584},"206":{"tf":3.0},"208":{"tf":3.3166247903554},"214":{"tf":1.7320508075688772},"223":{"tf":1.0},"364":{"tf":1.7320508075688772},"365":{"tf":1.7320508075688772},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"374":{"tf":1.0},"379":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":2.6457513110645907},"421":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":31,"docs":{"104":{"tf":1.4142135623730951},"129":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":1.0},"208":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.7320508075688772},"486":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"509":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"425":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":11,"docs":{"23":{"tf":2.23606797749979},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"127":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":2.0}}}}},"df":21,"docs":{"102":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"125":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"232":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"305":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"370":{"tf":1.0},"375":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":2.0},"51":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"266":{"tf":1.0}}},"n":{"df":1,"docs":{"436":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":7,"docs":{"130":{"tf":1.0},"140":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":9,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"311":{"tf":1.7320508075688772}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"209":{"tf":1.0},"384":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"127":{"tf":1.0},"130":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"27":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"41":{"tf":1.0},"421":{"tf":1.0},"509":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"436":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"#":{"1":{"7":{"8":{"1":{"df":1,"docs":{"413":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"7":{"9":{"6":{"df":1,"docs":{"479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"3":{"3":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"2":{"1":{"7":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"169":{"tf":1.0},"211":{"tf":1.0}}}},"df":2,"docs":{"358":{"tf":1.0},"48":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"141":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":2.23606797749979},"197":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"253":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.4142135623730951},"423":{"tf":1.0},"444":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0}}}}},"df":11,"docs":{"106":{"tf":1.0},"149":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"107":{"tf":1.0},"136":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.4142135623730951},"164":{"tf":2.0},"177":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"31":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"41":{"tf":1.0},"430":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":73,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"112":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"189":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"226":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"238":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.4142135623730951},"264":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"315":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.4142135623730951},"399":{"tf":1.0},"408":{"tf":1.4142135623730951},"417":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"488":{"tf":1.0},"496":{"tf":1.0},"502":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"211":{"tf":1.0}},"e":{"d":{"df":4,"docs":{"268":{"tf":1.0},"358":{"tf":1.7320508075688772},"43":{"tf":1.0},"486":{"tf":1.0}}},"df":27,"docs":{"101":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.4142135623730951},"150":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"273":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"321":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.4142135623730951},"429":{"tf":1.0},"430":{"tf":1.0},"445":{"tf":1.0},"500":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":5,"docs":{"268":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"417":{"tf":1.0},"465":{"tf":1.0}}},"m":{"df":4,"docs":{"167":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"438":{"tf":1.0}}},"n":{"df":4,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"140":{"tf":1.0},"188":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"35":{"tf":1.4142135623730951},"421":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"205":{"tf":1.0},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"235":{"tf":2.8284271247461903},"238":{"tf":1.0},"244":{"tf":1.4142135623730951},"247":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":9,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"209":{"tf":1.4142135623730951},"268":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"312":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"l":{"df":4,"docs":{"197":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"366":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"232":{"tf":1.0},"311":{"tf":1.0}}}},"n":{"d":{"df":17,"docs":{"129":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"258":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":2.0},"344":{"tf":1.0},"349":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":2.0},"386":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"343":{"tf":1.0},"349":{"tf":1.0},"486":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"179":{"tf":1.0},"328":{"tf":1.0}}}}},"s":{"df":6,"docs":{"312":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"t":{"df":7,"docs":{"106":{"tf":1.0},"223":{"tf":1.0},"254":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.4142135623730951},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"255":{"tf":1.0},"295":{"tf":1.0},"417":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"23":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":9,"docs":{"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"126":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":1,"docs":{"463":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"382":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":15,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":2.449489742783178},"149":{"tf":1.0},"158":{"tf":1.7320508075688772},"215":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"421":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"388":{"tf":1.0}}}},"i":{"c":{"df":7,"docs":{"199":{"tf":1.0},"207":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"122":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"240":{"tf":1.0},"313":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"487":{"tf":1.0},"492":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"482":{"tf":1.7320508075688772},"483":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"486":{"tf":2.0},"490":{"tf":1.0},"492":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"483":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"486":{"tf":1.0}},"s":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"486":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":47,"docs":{"108":{"tf":1.0},"14":{"tf":1.0},"165":{"tf":2.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"208":{"tf":2.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"305":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.7320508075688772},"419":{"tf":1.0},"42":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"500":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"421":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}},"r":{"df":9,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"235":{"tf":1.0},"304":{"tf":1.0},"341":{"tf":1.0},"63":{"tf":1.0}}}}}},"h":{"a":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"0":{"df":0,"docs":{},"f":{"1":{"2":{"8":{"7":{"2":{"4":{"4":{"7":{"9":{"5":{"8":{"d":{"5":{"0":{"a":{"a":{"7":{"b":{"9":{"3":{"7":{"b":{"0":{"1":{"0":{"6":{"5":{"6":{"1":{"a":{"5":{"8":{"8":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"2":{"6":{"2":{"8":{"d":{"3":{"3":{"df":0,"docs":{},"f":{"8":{"1":{"b":{"5":{"3":{"6":{"1":{"b":{"1":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"8":{"d":{"df":0,"docs":{},"f":{"7":{"0":{"8":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"151":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"171":{"tf":1.4142135623730951},"206":{"tf":3.0},"248":{"tf":1.0},"330":{"tf":1.0},"366":{"tf":1.7320508075688772},"374":{"tf":1.0},"378":{"tf":1.0},"454":{"tf":1.0},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"370":{"tf":1.0},"372":{"tf":1.0},"421":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"199":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"207":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"177":{"tf":1.0},"423":{"tf":1.0}}}},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"291":{"tf":1.0},"385":{"tf":1.0},"423":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":2.0},"118":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"134":{"tf":1.0}},"n":{"df":3,"docs":{"329":{"tf":1.0},"459":{"tf":1.0},"51":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"367":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":32,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"218":{"tf":1.0},"254":{"tf":1.7320508075688772},"285":{"tf":1.0},"296":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":2.0},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"372":{"tf":2.449489742783178},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"438":{"tf":1.0},"455":{"tf":1.0},"462":{"tf":1.0},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"99":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"108":{"tf":1.0},"164":{"tf":1.0},"23":{"tf":1.4142135623730951},"358":{"tf":2.449489742783178},"359":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":4.898979485566356},"457":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":2.6457513110645907},"49":{"tf":1.0},"51":{"tf":2.8284271247461903},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":17,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"206":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"48":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":7,"docs":{"100":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"43":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"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":4,"docs":{"183":{"tf":1.0},"344":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0}}}}}}},"df":6,"docs":{"179":{"tf":1.0},"192":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"421":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":1,"docs":{"245":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"145":{"tf":1.0},"205":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.0},"43":{"tf":1.0},"500":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"148":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"384":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":13,"docs":{"128":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"265":{"tf":1.0},"312":{"tf":1.0},"352":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":1.0},"435":{"tf":1.0},"51":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"312":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"384":{"tf":1.0},"422":{"tf":1.0}}},"df":10,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"308":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"422":{"tf":1.0}},"f":{"df":1,"docs":{"498":{"tf":1.0}},"i":{"df":3,"docs":{"312":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"312":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":19,"docs":{"108":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"219":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"268":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"441":{"tf":1.0},"444":{"tf":2.0},"48":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"208":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"370":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"423":{"tf":1.0}}},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":27,"docs":{"110":{"tf":1.4142135623730951},"126":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"166":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":4.898979485566356},"384":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"386":{"tf":2.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":2.23606797749979},"457":{"tf":1.7320508075688772},"460":{"tf":1.4142135623730951},"468":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"408":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"384":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"310":{"tf":1.0},"311":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"410":{"tf":1.0},"421":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"111":{"tf":1.0},"362":{"tf":1.0},"375":{"tf":1.0},"422":{"tf":1.0},"487":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"372":{"tf":1.0},"374":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":22,"docs":{"199":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":2.0},"232":{"tf":1.0},"235":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":3.7416573867739413},"51":{"tf":4.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0}}},"w":{"df":4,"docs":{"166":{"tf":1.0},"180":{"tf":1.0},"270":{"tf":1.0},"367":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"362":{"tf":1.4142135623730951},"388":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"374":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"126":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"254":{"tf":1.0},"344":{"tf":1.0},"358":{"tf":1.0},"429":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"209":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"175":{"tf":2.23606797749979},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":2.0},"181":{"tf":1.4142135623730951},"183":{"tf":2.8284271247461903},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"202":{"tf":1.4142135623730951},"220":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":15,"docs":{"204":{"tf":1.7320508075688772},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"374":{"tf":2.0},"421":{"tf":1.0},"423":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"222":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"d":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"t":{"df":19,"docs":{"165":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":2.6457513110645907},"208":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"255":{"tf":1.0},"291":{"tf":1.0},"367":{"tf":2.23606797749979},"377":{"tf":1.0},"455":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":2.6457513110645907},"468":{"tf":1.4142135623730951},"481":{"tf":1.0},"500":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"v":{"df":8,"docs":{"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"158":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"380":{"tf":1.0},"385":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"1":{"df":1,"docs":{"209":{"tf":1.0}}},"2":{"df":1,"docs":{"209":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"327":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"131":{"tf":1.0},"158":{"tf":1.0},"85":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"180":{"tf":1.0},"205":{"tf":1.0},"222":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"h":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":36,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.4142135623730951},"185":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"197":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}},"n":{"df":5,"docs":{"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"125":{"tf":1.0},"199":{"tf":1.0}}}},"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":8,"docs":{"111":{"tf":1.0},"126":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"167":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"250":{"tf":1.4142135623730951},"268":{"tf":1.0},"425":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":43,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"196":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"250":{"tf":2.449489742783178},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"341":{"tf":1.4142135623730951},"37":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"408":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"473":{"tf":1.0},"501":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":13,"docs":{"107":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.6457513110645907},"213":{"tf":1.0},"252":{"tf":1.0},"328":{"tf":1.0},"384":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"166":{"tf":1.0},"362":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"269":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"429":{"tf":2.23606797749979},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"218":{"tf":1.0},"311":{"tf":1.0},"401":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"241":{"tf":1.0},"406":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"23":{"tf":1.0},"245":{"tf":1.0},"66":{"tf":2.0}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"398":{"tf":1.0}}}},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"205":{"tf":1.0},"250":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"177":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"179":{"tf":1.7320508075688772},"189":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"255":{"tf":1.7320508075688772},"355":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":5,"docs":{"165":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.0},"470":{"tf":1.7320508075688772}}}},"k":{"df":0,"docs":{},"e":{"df":15,"docs":{"119":{"tf":1.0},"183":{"tf":1.0},"232":{"tf":2.23606797749979},"245":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"312":{"tf":4.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"442":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":67,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.4142135623730951},"175":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.7320508075688772},"210":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"353":{"tf":1.0},"356":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"380":{"tf":1.0},"383":{"tf":1.0},"394":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"402":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.4142135623730951},"433":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.4142135623730951},"453":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":6,"docs":{"221":{"tf":1.0},"226":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}}}},"t":{"df":51,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":2.23606797749979},"364":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"464":{"tf":1.0},"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":28,"docs":{"104":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.4142135623730951},"305":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"312":{"tf":2.0},"313":{"tf":1.0},"324":{"tf":1.0},"337":{"tf":1.0},"358":{"tf":1.0},"393":{"tf":1.0},"418":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"72":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"81":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":2,"docs":{"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"204":{"tf":1.0},"275":{"tf":1.0},"281":{"tf":1.0},"358":{"tf":1.0},"471":{"tf":1.0}}}},"y":{"df":3,"docs":{"205":{"tf":1.0},"312":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"398":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"365":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"374":{"tf":1.0}}}},"m":{"df":1,"docs":{"18":{"tf":1.0}}},"p":{"df":13,"docs":{"106":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":2.449489742783178},"270":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"349":{"tf":1.0},"39":{"tf":1.0},"444":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":19,"docs":{"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.4142135623730951},"309":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.7320508075688772},"423":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"231":{"tf":1.0},"232":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":3.4641016151377544}}},"r":{"a":{"df":0,"docs":{},"g":{"df":33,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"115":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"18":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"312":{"tf":1.0},"358":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":2.449489742783178},"384":{"tf":2.23606797749979},"385":{"tf":1.7320508075688772},"406":{"tf":1.4142135623730951},"422":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":2.6457513110645907},"457":{"tf":1.4142135623730951},"468":{"tf":1.0},"472":{"tf":1.4142135623730951},"481":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"453":{"tf":1.4142135623730951},"454":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"_":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"129":{"tf":1.0},"143":{"tf":1.7320508075688772},"151":{"tf":1.0},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"382":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.7320508075688772},"471":{"tf":1.0},"472":{"tf":1.7320508075688772}}},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"341":{"tf":1.0},"372":{"tf":1.0}}}}},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":9,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"422":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"385":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"295":{"tf":1.4142135623730951},"296":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"418":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"122":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"240":{"tf":1.0},"305":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"201":{"tf":1.0},"255":{"tf":1.4142135623730951},"272":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"500":{"tf":1.0},"504":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"254":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":2,"docs":{"104":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"473":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"452":{"tf":1.0},"500":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"209":{"tf":2.23606797749979},"254":{"tf":1.0},"384":{"tf":1.0},"486":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"294":{"tf":1.0},"32":{"tf":2.0},"425":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"b":{"0":{"df":1,"docs":{"452":{"tf":1.0}}},"df":4,"docs":{"204":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"215":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"36":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}}},"t":{"df":10,"docs":{"179":{"tf":1.7320508075688772},"312":{"tf":1.0},"36":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"22":{"tf":1.0},"460":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}},"t":{"df":6,"docs":{"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"38":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"a":{"c":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"436":{"tf":1.0},"449":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"355":{"tf":1.0},"481":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":15,"docs":{"146":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"164":{"tf":1.4142135623730951},"174":{"tf":1.0},"188":{"tf":1.0},"252":{"tf":2.0},"341":{"tf":1.0},"343":{"tf":1.0},"360":{"tf":1.0},"402":{"tf":1.0},"495":{"tf":1.0},"498":{"tf":1.0},"98":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"254":{"tf":1.0},"340":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":12,"docs":{"140":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"318":{"tf":1.0},"470":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"501":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"206":{"tf":1.0},"224":{"tf":1.4142135623730951},"313":{"tf":1.0},"358":{"tf":3.1622776601683795},"398":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"206":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"472":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":36,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"398":{"tf":1.0},"423":{"tf":1.0},"449":{"tf":1.4142135623730951},"464":{"tf":1.0},"473":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"375":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"200":{"tf":1.0},"204":{"tf":1.0},"382":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"102":{"tf":1.0},"151":{"tf":1.0},"193":{"tf":1.0},"256":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"22":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"16":{"tf":1.0},"165":{"tf":1.0},"294":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"200":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":60,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"358":{"tf":1.7320508075688772},"359":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"358":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"366":{"tf":1.0},"370":{"tf":1.0},"421":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":33,"docs":{"114":{"tf":1.0},"130":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"161":{"tf":2.0},"164":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"210":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"312":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":3,"docs":{"388":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"129":{"tf":1.0},"254":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"498":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}},"g":{"df":1,"docs":{"375":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"178":{"tf":1.0},"358":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"398":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"393":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"363":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"295":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"254":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"238":{"tf":1.0},"310":{"tf":1.0}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"401":{"tf":1.0},"406":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"s":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"125":{"tf":2.0},"127":{"tf":2.449489742783178},"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":64,"docs":{"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":2.6457513110645907},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.7320508075688772},"236":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":2.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"311":{"tf":1.4142135623730951},"312":{"tf":3.1622776601683795},"313":{"tf":1.4142135623730951},"317":{"tf":1.0},"35":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":2.0},"98":{"tf":1.0}}}}}}},"·":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"0":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"50":{"tf":1.0}}},"4":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"df":1,"docs":{"50":{"tf":1.0}}},":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"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":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":32,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":20,"docs":{"114":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"197":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"222":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"386":{"tf":1.4142135623730951},"432":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":3,"docs":{"240":{"tf":1.0},"358":{"tf":1.0},"74":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"399":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}},"k":{"df":1,"docs":{"504":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":17,"docs":{"151":{"tf":1.0},"170":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"256":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":2.23606797749979}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"100":{"tf":1.0},"140":{"tf":1.0},"204":{"tf":2.8284271247461903},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"209":{"tf":4.58257569495584},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"277":{"tf":1.0},"421":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"208":{"tf":1.0},"33":{"tf":2.449489742783178},"372":{"tf":1.7320508075688772},"48":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":18,"docs":{"100":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.7320508075688772},"25":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.4142135623730951},"287":{"tf":1.0},"296":{"tf":1.0},"368":{"tf":1.0},"402":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":21,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"187":{"tf":1.0},"209":{"tf":1.0},"231":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.4142135623730951},"341":{"tf":1.0},"422":{"tf":1.4142135623730951},"426":{"tf":1.0},"443":{"tf":1.4142135623730951},"446":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":8,"docs":{"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"419":{"tf":1.0},"95":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"444":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"401":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"167":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"417":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"151":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"256":{"tf":1.0},"270":{"tf":1.0},"291":{"tf":1.4142135623730951},"415":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":57,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":2.0},"175":{"tf":1.0},"189":{"tf":1.4142135623730951},"196":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"216":{"tf":1.0},"226":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.7320508075688772},"240":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.4142135623730951},"292":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"323":{"tf":1.0},"332":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"399":{"tf":1.0},"402":{"tf":1.0},"408":{"tf":1.7320508075688772},"427":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.4142135623730951},"463":{"tf":1.0},"474":{"tf":1.4142135623730951},"482":{"tf":1.0},"488":{"tf":1.7320508075688772},"496":{"tf":1.0},"502":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"285":{"tf":1.0},"313":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"372":{"tf":1.4142135623730951}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"382":{"tf":1.0},"386":{"tf":1.0},"425":{"tf":1.0}}}},"t":{"'":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"129":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"141":{"tf":1.0},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.4142135623730951},"398":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"i":{"df":2,"docs":{"255":{"tf":1.0},"422":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"13":{"tf":1.0},"297":{"tf":1.0},"501":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"207":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"398":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"129":{"tf":1.0},"340":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.4142135623730951},"504":{"tf":1.0}}},"k":{"df":2,"docs":{"235":{"tf":1.0},"251":{"tf":1.0}}}},"r":{"d":{"df":3,"docs":{"169":{"tf":1.0},"222":{"tf":1.0},"327":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"116":{"tf":1.0},"181":{"tf":1.7320508075688772},"217":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"325":{"tf":1.0},"398":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"177":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"425":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"501":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"201":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"311":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"406":{"tf":1.0},"469":{"tf":1.0},"500":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"128":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"442":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"235":{"tf":1.0},"277":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.4142135623730951},"498":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"421":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"194":{"tf":1.0},"311":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"129":{"tf":1.0},"14":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"25":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"311":{"tf":1.0},"328":{"tf":1.0},"382":{"tf":2.0},"386":{"tf":1.0},"442":{"tf":1.0},"492":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":15,"docs":{"23":{"tf":3.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":5.196152422706632},"49":{"tf":2.23606797749979},"50":{"tf":3.605551275463989},"51":{"tf":2.6457513110645907},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"i":{"d":{"df":2,"docs":{"48":{"tf":2.23606797749979},"50":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"341":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"415":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"e":{"df":61,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.4142135623730951},"282":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"325":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":2.8284271247461903},"382":{"tf":1.4142135623730951},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"442":{"tf":2.0},"444":{"tf":1.4142135623730951},"455":{"tf":2.23606797749979},"465":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"480":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"430":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"205":{"tf":2.6457513110645907},"206":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":3.872983346207417}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"429":{"tf":1.4142135623730951}}}}}}},"k":{"df":1,"docs":{"50":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"99":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"179":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"368":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":2.23606797749979},"419":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"232":{"tf":1.0},"284":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"364":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"164":{"tf":1.0},"180":{"tf":1.0},"277":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"134":{"tf":1.0},"178":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"252":{"tf":1.0},"479":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":3.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"209":{"tf":1.4142135623730951},"258":{"tf":1.0},"329":{"tf":1.0},"395":{"tf":1.0},"469":{"tf":1.0},"48":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"406":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"205":{"tf":1.0},"452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"429":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0}}},"df":25,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"312":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"429":{"tf":2.8284271247461903},"430":{"tf":1.0},"431":{"tf":2.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.7320508075688772},"455":{"tf":1.0},"460":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"436":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"119":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"368":{"tf":1.0},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"175":{"tf":1.0},"188":{"tf":1.0}}}}},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"153":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}},"t":{"df":4,"docs":{"206":{"tf":1.4142135623730951},"407":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":28,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.7320508075688772},"14":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"221":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"235":{"tf":1.0},"277":{"tf":1.0},"309":{"tf":1.0},"317":{"tf":1.0},"339":{"tf":2.0},"340":{"tf":1.7320508075688772},"341":{"tf":2.6457513110645907},"343":{"tf":2.0},"344":{"tf":1.4142135623730951},"349":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"408":{"tf":1.0},"413":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"320":{"tf":1.0},"322":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"42":{"tf":1.0},"44":{"tf":2.449489742783178},"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":9,"docs":{"110":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"382":{"tf":1.0},"421":{"tf":1.4142135623730951},"459":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":2,"docs":{"222":{"tf":1.0},"421":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"105":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.0},"118":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.0},"305":{"tf":2.23606797749979},"382":{"tf":1.0},"423":{"tf":1.0},"506":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"178":{"tf":1.0},"179":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":2,"docs":{"129":{"tf":1.0},"99":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"429":{"tf":2.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.4142135623730951}},"i":{"df":16,"docs":{"117":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"269":{"tf":1.0},"297":{"tf":1.4142135623730951},"307":{"tf":1.0},"312":{"tf":1.0},"326":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":3.1622776601683795},"429":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"104":{"tf":1.0},"209":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"102":{"tf":2.6457513110645907},"103":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"112":{"tf":1.0},"129":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"429":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":5,"docs":{"126":{"tf":1.4142135623730951},"143":{"tf":1.0},"384":{"tf":1.4142135623730951},"414":{"tf":1.0},"422":{"tf":1.0}},"e":{"df":6,"docs":{"126":{"tf":1.0},"250":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":3.872983346207417},"385":{"tf":1.0},"455":{"tf":2.0}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"140":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"209":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"381":{"tf":1.0}},"l":{"df":1,"docs":{"375":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"208":{"tf":1.4142135623730951},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"442":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"250":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"129":{"tf":1.4142135623730951},"178":{"tf":1.0},"384":{"tf":2.0},"422":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"199":{"tf":1.0},"232":{"tf":1.7320508075688772},"255":{"tf":1.0},"263":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"418":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"486":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"444":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"442":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"355":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":37,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"221":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.4142135623730951},"310":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"362":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951},"498":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0}},"x":{"6":{"4":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"104":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"104":{"tf":1.0}}}}},"df":30,"docs":{"102":{"tf":2.0},"104":{"tf":3.605551275463989},"164":{"tf":1.4142135623730951},"196":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":3.605551275463989},"216":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"23":{"tf":1.0},"268":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"341":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.4142135623730951},"436":{"tf":1.0},"45":{"tf":1.4142135623730951},"469":{"tf":2.23606797749979},"470":{"tf":1.0},"472":{"tf":1.0},"486":{"tf":2.0},"491":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":9,"docs":{"219":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"328":{"tf":1.0},"358":{"tf":1.0},"385":{"tf":1.0},"438":{"tf":1.0},"460":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":1,"docs":{"372":{"tf":1.0}}}}},"·":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{".":{"df":1,"docs":{"328":{"tf":1.0}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"128":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":2.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"457":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"102":{"tf":1.7320508075688772},"209":{"tf":1.0},"42":{"tf":1.4142135623730951},"486":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.7320508075688772}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"305":{"tf":1.0}}}}}}}},"c":{"'":{"df":1,"docs":{"417":{"tf":1.0}}},"df":11,"docs":{"199":{"tf":1.0},"201":{"tf":2.23606797749979},"204":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"365":{"tf":1.0},"395":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0}}},"df":1,"docs":{"372":{"tf":1.0}},"i":{"df":2,"docs":{"272":{"tf":1.0},"306":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"119":{"tf":1.0},"266":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"99":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"204":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"281":{"tf":1.4142135623730951},"284":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"204":{"tf":1.0},"222":{"tf":1.0},"472":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.4142135623730951},"388":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"364":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"441":{"tf":1.0},"444":{"tf":1.7320508075688772}}}}},"r":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"421":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}},"df":11,"docs":{"127":{"tf":1.0},"147":{"tf":1.7320508075688772},"208":{"tf":1.0},"222":{"tf":1.0},"236":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"444":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"82":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"37":{"tf":1.0},"423":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"449":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"218":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"398":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":1,"docs":{"406":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"146":{"tf":1.0},"341":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"501":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"161":{"tf":1.0},"415":{"tf":1.0},"70":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"311":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":10,"docs":{"13":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"238":{"tf":1.0},"337":{"tf":1.0},"421":{"tf":1.0},"7":{"tf":2.0},"74":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}}}}}}},"df":1,"docs":{"72":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":7,"docs":{"156":{"tf":1.0},"180":{"tf":1.0},"196":{"tf":1.0},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"228":{"tf":1.0},"455":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"207":{"tf":1.0},"32":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"179":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"205":{"tf":1.0},"235":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"199":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.7320508075688772},"282":{"tf":2.0},"283":{"tf":1.0},"289":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"341":{"tf":1.0},"398":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"386":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"256":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"122":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"322":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"464":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":52,"docs":{"1":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"362":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0},"399":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"205":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"457":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"421":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.0},"24":{"tf":1.0},"256":{"tf":1.0},"282":{"tf":1.0},"358":{"tf":1.0},"498":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"207":{"tf":1.0},"255":{"tf":1.0},"454":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"209":{"tf":1.0},"366":{"tf":1.0},"421":{"tf":1.0},"48":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"131":{"tf":1.0},"167":{"tf":1.4142135623730951},"179":{"tf":1.0},"209":{"tf":1.7320508075688772},"238":{"tf":1.0},"250":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"281":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"365":{"tf":1.0},"412":{"tf":1.0},"436":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.7320508075688772},"54":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"126":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.0},"166":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.4142135623730951},"370":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"442":{"tf":1.4142135623730951},"48":{"tf":1.0},"498":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":16,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":3.0},"131":{"tf":1.0},"136":{"tf":1.4142135623730951},"171":{"tf":1.0},"210":{"tf":1.4142135623730951},"242":{"tf":1.0},"281":{"tf":1.0},"296":{"tf":1.0},"374":{"tf":1.0},"461":{"tf":1.0},"472":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"386":{"tf":1.0},"472":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"418":{"tf":1.0},"465":{"tf":1.0},"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"421":{"tf":1.0},"431":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":21,"docs":{"115":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":2.23606797749979},"205":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"224":{"tf":1.0},"381":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"436":{"tf":1.0},"460":{"tf":1.0},"491":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0}}}},"c":{"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.0}}},"df":3,"docs":{"13":{"tf":1.4142135623730951},"192":{"tf":1.0},"328":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"177":{"tf":1.0},"178":{"tf":1.0},"328":{"tf":1.7320508075688772}}}},"df":114,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":2.0},"180":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":2.0},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"321":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":2.23606797749979},"358":{"tf":2.449489742783178},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"384":{"tf":1.7320508075688772},"388":{"tf":1.0},"393":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"418":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":2.6457513110645907},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"49":{"tf":1.0},"500":{"tf":1.7320508075688772},"51":{"tf":2.449489742783178},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":2.23606797749979},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"312":{"tf":1.0}}},"df":30,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.0},"279":{"tf":1.0},"312":{"tf":1.4142135623730951},"318":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"436":{"tf":1.0},"444":{"tf":1.4142135623730951},"469":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"486":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":21,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"35":{"tf":1.0},"398":{"tf":1.4142135623730951},"411":{"tf":1.0},"418":{"tf":1.0},"44":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"468":{"tf":1.0},"52":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"250":{"tf":1.0}}}},"v":{"0":{"df":2,"docs":{"102":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},".":{"0":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":2.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"2":{"+":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"122":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":49,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.8284271247461903},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":2.6457513110645907},"206":{"tf":1.0},"23":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"24":{"tf":1.4142135623730951},"249":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.7320508075688772},"309":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"444":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"466":{"tf":2.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.23606797749979},"47":{"tf":2.0},"470":{"tf":2.449489742783178},"471":{"tf":1.0},"472":{"tf":2.0},"473":{"tf":1.0},"48":{"tf":3.1622776601683795},"485":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.7320508075688772},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"310":{"tf":1.0},"311":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}}},"df":59,"docs":{"1":{"tf":1.0},"102":{"tf":2.23606797749979},"103":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"14":{"tf":1.0},"147":{"tf":1.4142135623730951},"153":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"208":{"tf":2.449489742783178},"209":{"tf":2.0},"21":{"tf":1.0},"222":{"tf":2.23606797749979},"223":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":5.196152422706632},"366":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":3.605551275463989},"384":{"tf":2.6457513110645907},"386":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"400":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"48":{"tf":2.8284271247461903},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"49":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":2.0},"500":{"tf":2.0},"501":{"tf":1.0},"502":{"tf":1.0},"54":{"tf":1.7320508075688772},"7":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"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":{"358":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"254":{"tf":1.0},"374":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"104":{"tf":3.1622776601683795},"250":{"tf":1.0},"421":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"205":{"tf":1.0},"232":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":11,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"277":{"tf":1.0},"416":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":7,"docs":{"129":{"tf":1.4142135623730951},"161":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"358":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{"c":{"!":{"[":{"(":{"a":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"340":{"tf":1.0},"341":{"tf":1.7320508075688772},"343":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"8":{"df":3,"docs":{"102":{"tf":2.0},"129":{"tf":1.4142135623730951},"486":{"tf":2.0}}},"df":0,"docs":{}}},"df":3,"docs":{"209":{"tf":3.0},"340":{"tf":1.0},"343":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":27,"docs":{"128":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"222":{"tf":1.0},"239":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"277":{"tf":1.4142135623730951},"318":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.7320508075688772},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"48":{"tf":1.0},"501":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":12,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"161":{"tf":1.4142135623730951},"23":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"483":{"tf":1.0},"488":{"tf":1.0},"52":{"tf":1.7320508075688772},"83":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":17,"docs":{"119":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"255":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"159":{"tf":1.0},"160":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"102":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"112":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"171":{"tf":1.0},"250":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"344":{"tf":1.0},"358":{"tf":5.916079783099616},"363":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"449":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":3.3166247903554},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"l":{"df":2,"docs":{"465":{"tf":1.0},"500":{"tf":1.0}}}},"df":22,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"242":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"330":{"tf":1.0},"370":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"202":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":2,"docs":{"327":{"tf":1.0},"328":{"tf":1.0}},"i":{"df":2,"docs":{"327":{"tf":1.0},"328":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"405":{"tf":1.0},"406":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"184":{"tf":1.0},"199":{"tf":1.0},"358":{"tf":3.4641016151377544}}}},"df":1,"docs":{"206":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"365":{"tf":1.0},"379":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"180":{"tf":1.0}},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"310":{"tf":1.0},"313":{"tf":1.0}}},"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"398":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"140":{"tf":2.23606797749979},"235":{"tf":1.4142135623730951},"277":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":1.7320508075688772},"441":{"tf":3.3166247903554},"442":{"tf":2.23606797749979},"444":{"tf":4.358898943540674}},"r":{"df":4,"docs":{"235":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}},"s":{"(":{"1":{"6":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}},"s":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":9,"docs":{"23":{"tf":2.23606797749979},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"61":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"42":{"tf":2.0},"43":{"tf":2.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"43":{"tf":2.23606797749979},"44":{"tf":1.0},"45":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"51":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":2.0},"45":{"tf":2.8284271247461903},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"438":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"232":{"tf":1.0}}}}}}},"·":{"2":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"325":{"tf":1.0},"337":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"208":{"tf":1.4142135623730951},"382":{"tf":1.0},"422":{"tf":1.0},"470":{"tf":1.0},"506":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"382":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.7320508075688772},"256":{"tf":1.0},"269":{"tf":1.0},"375":{"tf":1.0},"425":{"tf":1.0},"449":{"tf":1.0},"481":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"393":{"tf":1.0}}},"t":{"df":1,"docs":{"344":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"284":{"tf":1.0}}}}}}}}},"df":10,"docs":{"161":{"tf":1.7320508075688772},"165":{"tf":2.0},"170":{"tf":1.0},"180":{"tf":1.4142135623730951},"281":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.0},"498":{"tf":2.23606797749979},"500":{"tf":2.0},"501":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"177":{"tf":1.0},"311":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"48":{"tf":1.0}}}},"y":{"df":35,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.4142135623730951},"161":{"tf":1.0},"164":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"22":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"429":{"tf":1.0},"452":{"tf":1.4142135623730951},"455":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951}}}},"b":{"3":{"df":6,"docs":{"177":{"tf":1.0},"212":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"205":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.4142135623730951},"422":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"175":{"tf":1.0},"183":{"tf":2.23606797749979},"191":{"tf":1.0},"209":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":2.23606797749979},"457":{"tf":1.0},"462":{"tf":1.0},"490":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"365":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"449":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"498":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"296":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"204":{"tf":1.0},"206":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"199":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"129":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"330":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"438":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"205":{"tf":1.0},"232":{"tf":1.0},"439":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"48":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"343":{"tf":1.0},"384":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"435":{"tf":1.0}}},"h":{"df":4,"docs":{"268":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"444":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":3,"docs":{"179":{"tf":1.7320508075688772},"183":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"157":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"227":{"tf":1.0},"250":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.0},"358":{"tf":1.4142135623730951},"398":{"tf":1.0},"41":{"tf":1.0},"418":{"tf":2.0},"422":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"199":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"423":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.4142135623730951},"82":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"468":{"tf":1.0},"470":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":5,"docs":{"196":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"452":{"tf":1.0}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"128":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.7320508075688772},"421":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":26,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.7320508075688772},"256":{"tf":1.0},"295":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"382":{"tf":1.0},"422":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"209":{"tf":3.1622776601683795},"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"206":{"tf":1.4142135623730951},"209":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"200":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"180":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"355":{"tf":1.0},"388":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"192":{"tf":1.0},"205":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"358":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"179":{"tf":1.0},"253":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":5.656854249492381}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"178":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":2.6457513110645907}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{".":{"0":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"d":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"184":{"tf":1.4142135623730951}},"m":{"df":17,"docs":{"184":{"tf":1.0},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.4142135623730951},"238":{"tf":1.0},"277":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":3,"docs":{"33":{"tf":2.6457513110645907},"372":{"tf":1.0},"48":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}},"df":1,"docs":{"206":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"372":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"171":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"328":{"tf":1.0},"329":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"159":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"421":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"125":{"tf":1.4142135623730951},"192":{"tf":1.0},"208":{"tf":1.4142135623730951},"223":{"tf":1.0},"358":{"tf":2.0}}}}},"k":{"df":6,"docs":{"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"179":{"tf":1.0},"193":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"292":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"0":{"0":{"1":{"6":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"9":{"tf":1.0}}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"6":{"6":{"6":{"6":{"1":{"7":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":6,"docs":{"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"7":{"5":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"5":{"df":1,"docs":{"327":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"192":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"2":{"0":{"0":{"6":{"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"9":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"327":{"tf":1.0}}},"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"5":{"df":1,"docs":{"375":{"tf":1.0}}},"6":{"df":1,"docs":{"459":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":47,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"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},"11":{"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},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"4":{"df":12,"docs":{"174":{"tf":1.0},"353":{"tf":2.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0}}},"6":{"df":16,"docs":{"364":{"tf":2.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0}}},"7":{"df":18,"docs":{"230":{"tf":2.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}}},"8":{"df":16,"docs":{"248":{"tf":2.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}},"9":{"df":14,"docs":{"380":{"tf":2.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":5,"docs":{"394":{"tf":2.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0}}},"2":{"df":11,"docs":{"264":{"tf":2.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0}}},"3":{"df":17,"docs":{"399":{"tf":2.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0}}},"4":{"df":17,"docs":{"275":{"tf":2.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}},"5":{"df":11,"docs":{"416":{"tf":2.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":13,"docs":{"427":{"tf":2.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0}}},"2":{"df":11,"docs":{"292":{"tf":2.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0}}},"6":{"df":45,"docs":{"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"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}}},"df":0,"docs":{}},"3":{"2":{"df":20,"docs":{"303":{"tf":2.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0}}},"5":{"df":13,"docs":{"440":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":14,"docs":{"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"3":{"df":10,"docs":{"453":{"tf":2.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0}}},"4":{"df":19,"docs":{"463":{"tf":2.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}},"7":{"df":21,"docs":{"120":{"tf":2.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}}},"8":{"df":14,"docs":{"482":{"tf":2.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":16,"docs":{"323":{"tf":2.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0}}},"4":{"df":14,"docs":{"496":{"tf":2.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0}}},"6":{"df":14,"docs":{"339":{"tf":2.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0}}},"9":{"df":18,"docs":{"141":{"tf":2.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}}},"df":0,"docs":{}},"6":{"1":{"df":16,"docs":{"159":{"tf":2.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}}},"6":{"df":21,"docs":{"175":{"tf":2.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}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"120":{"tf":1.0}}},"4":{"df":1,"docs":{"353":{"tf":1.0}}},"5":{".":{"0":{"8":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"68":{"tf":1.0}}},"6":{"df":2,"docs":{"216":{"tf":1.0},"23":{"tf":1.0}}},"7":{"df":4,"docs":{"230":{"tf":1.0},"248":{"tf":1.0},"353":{"tf":1.0},"380":{"tf":1.0}}},"9":{":":{"1":{"3":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"364":{"tf":1.0}}},"b":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"_":{"0":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"1":{"1":{"1":{"_":{"1":{"1":{"1":{"1":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":3.3166247903554}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"127":{"tf":1.0},"164":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":3.872983346207417},"223":{"tf":1.0},"329":{"tf":1.7320508075688772},"358":{"tf":4.58257569495584},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"9":{"tf":1.0}},"u":{"1":{"6":{"df":1,"docs":{"209":{"tf":4.795831523312719}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"x":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"1":{"df":1,"docs":{"108":{"tf":1.0}}},"2":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"3":{"d":{"d":{"8":{"0":{"8":{"4":{"d":{"5":{"0":{"d":{"b":{"b":{"b":{"c":{"9":{"6":{"2":{"0":{"6":{"7":{"df":0,"docs":{},"f":{"2":{"1":{"6":{"c":{"3":{"7":{"b":{"6":{"2":{"7":{"8":{"3":{"1":{"d":{"9":{"3":{"3":{"9":{"df":0,"docs":{},"f":{"5":{"a":{"6":{"df":0,"docs":{},"e":{"4":{"2":{"6":{"a":{"3":{"2":{"df":0,"docs":{},"e":{"3":{"0":{"7":{"6":{"3":{"1":{"3":{"d":{"8":{"7":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"108":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"3":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"179":{"tf":1.0},"188":{"tf":1.0},"385":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"5":{"df":3,"docs":{"327":{"tf":1.0},"375":{"tf":1.4142135623730951},"385":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"8":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"224":{"tf":1.0},"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":8,"docs":{"153":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"375":{"tf":2.0},"7":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":3.872983346207417},"224":{"tf":1.0},"358":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"183":{"tf":1.0},"209":{"tf":2.23606797749979},"224":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"440":{"tf":1.0},"61":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"1":{",":{"6":{"df":1,"docs":{"384":{"tf":1.0}}},"7":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"209":{"tf":2.0}},"u":{"3":{"2":{"df":1,"docs":{"209":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"329":{"tf":1.0},"339":{"tf":1.0},"496":{"tf":1.0},"62":{"tf":1.4142135623730951}}},"2":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"64":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}}},"8":{"df":6,"docs":{"126":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}}},"9":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":5,"docs":{"141":{"tf":1.0},"188":{"tf":1.0},"23":{"tf":1.0},"429":{"tf":1.0},"63":{"tf":1.4142135623730951}}},"3":{"0":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":1,"docs":{"482":{"tf":1.0}}},"4":{"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"175":{"tf":1.0},"209":{"tf":1.0},"248":{"tf":1.0},"421":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.0}}}}},"5":{"0":{"0":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":1,"docs":{"209":{"tf":3.4641016151377544}},"u":{"3":{"2":{"df":1,"docs":{"209":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"209":{"tf":1.0}}},"2":{"df":1,"docs":{"209":{"tf":1.0}}},"df":5,"docs":{"209":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"323":{"tf":1.0},"444":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.0}}},"df":4,"docs":{"146":{"tf":1.0},"209":{"tf":3.4641016151377544},"384":{"tf":1.0},"385":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}}}},"8":{",":{"3":{"3":{"3":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"141":{"tf":1.0},"188":{"tf":1.0}}},"9":{".":{"0":{"7":{".":{"2":{"0":{"2":{"3":{"df":1,"docs":{"394":{"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":1,"docs":{"14":{"tf":1.0}}},"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"380":{"tf":1.0}}},":":{"1":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":69,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.7320508075688772},"108":{"tf":1.0},"110":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":2.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.0},"208":{"tf":1.4142135623730951},"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},"217":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"277":{"tf":1.0},"307":{"tf":1.0},"327":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":2.23606797749979},"358":{"tf":5.656854249492381},"365":{"tf":1.0},"366":{"tf":1.7320508075688772},"371":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"375":{"tf":3.1622776601683795},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":2.23606797749979},"385":{"tf":1.4142135623730951},"406":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":0,"docs":{},"v":{"df":1,"docs":{"444":{"tf":1.0}}}}},"2":{",":{"8":{"9":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"'":{"df":2,"docs":{"177":{"tf":1.4142135623730951},"195":{"tf":1.0}}},"df":5,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"327":{"tf":1.0}}},"1":{"df":2,"docs":{"23":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"327":{"tf":2.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"328":{"tf":2.0},"329":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.7320508075688772}},"u":{"3":{"2":{"df":1,"docs":{"209":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"2":{"df":2,"docs":{"293":{"tf":1.0},"452":{"tf":1.0}}},"3":{"df":30,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"399":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":3,"docs":{"14":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":2.0},"303":{"tf":1.0}}},"2":{",":{"5":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{",":{"8":{"3":{"3":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"153":{"tf":1.0},"199":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"399":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"496":{"tf":1.0}}},"5":{"6":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":1,"docs":{"275":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}}},"7":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"159":{"tf":1.0},"329":{"tf":1.0}}},"8":{"df":1,"docs":{"208":{"tf":1.0}}},"9":{"6":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"164":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"23":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.4142135623730951},"291":{"tf":1.0},"358":{"tf":3.4641016151377544},"371":{"tf":1.7320508075688772},"375":{"tf":2.23606797749979},"384":{"tf":2.0},"406":{"tf":1.0},"424":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"3":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"32":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"a":{"df":1,"docs":{"140":{"tf":1.0}}},"b":{"df":1,"docs":{"140":{"tf":1.0}}},"c":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"196":{"tf":1.0},"208":{"tf":1.0},"339":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":2.0},"421":{"tf":1.0},"453":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":10,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"177":{"tf":1.0},"209":{"tf":1.4142135623730951},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"486":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}},"3":{"3":{"8":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}}},"4":{"df":13,"docs":{"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}},"6":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"209":{"tf":1.0}}},"8":{"df":1,"docs":{"358":{"tf":1.0}}},"df":25,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.0},"122":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"31":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"358":{"tf":2.449489742783178},"366":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":2.0},"406":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0}}},"4":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"36":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"37":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"23":{"tf":1.0},"39":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"23":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"209":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"2":{"df":1,"docs":{"14":{"tf":1.0}}},"5":{"df":3,"docs":{"208":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":2.0}}},"8":{",":{"6":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"428":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":2.0},"438":{"tf":1.7320508075688772}}},"9":{",":{"2":{"1":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"206":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.4142135623730951},"358":{"tf":2.449489742783178},"366":{"tf":1.0},"375":{"tf":1.4142135623730951},"384":{"tf":1.7320508075688772},"444":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951}},"·":{"1":{"0":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"44":{"tf":1.4142135623730951}}},"4":{".":{"1":{"df":1,"docs":{"45":{"tf":1.0}}},"2":{"df":2,"docs":{"45":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":6,"docs":{"126":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.0},"209":{"tf":2.0},"258":{"tf":1.0}}},"3":{",":{"3":{"3":{"3":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{",":{"6":{"0":{"0":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.4142135623730951},"400":{"tf":1.0},"41":{"tf":1.4142135623730951}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"3":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"47":{"tf":1.4142135623730951},"54":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"4":{".":{"1":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"5":{".":{"1":{".":{"1":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"3":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"23":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951}}},"6":{".":{"1":{".":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"23":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"7":{"df":4,"docs":{"23":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"358":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"33":{"tf":1.0},"457":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"5":{",":{"3":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{",":{"6":{"6":{"7":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"206":{"tf":1.0},"23":{"tf":1.0},"384":{"tf":1.4142135623730951},"424":{"tf":1.0},"46":{"tf":1.4142135623730951},"463":{"tf":1.0}}},"7":{"7":{",":{"0":{"0":{"0":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"179":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"23":{"tf":1.0},"400":{"tf":1.0},"421":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"8":{"0":{",":{"0":{"0":{"0":{"df":3,"docs":{"209":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"134":{"tf":1.0},"205":{"tf":1.7320508075688772},"209":{"tf":2.23606797749979}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"1":{",":{"8":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"102":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"222":{"tf":1.0},"23":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"9":{".":{"1":{"df":2,"docs":{"23":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"23":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"183":{"tf":1.0}}},"1":{"b":{"1":{"7":{"1":{"b":{"b":{"1":{"5":{"8":{"df":0,"docs":{},"e":{"2":{"d":{"3":{"8":{"4":{"8":{"df":0,"docs":{},"f":{"a":{"2":{"3":{"a":{"9":{"df":0,"docs":{},"f":{"1":{"c":{"2":{"5":{"1":{"8":{"2":{"df":0,"docs":{},"f":{"b":{"8":{"df":0,"docs":{},"e":{"2":{"0":{"3":{"1":{"3":{"b":{"2":{"c":{"1":{"df":0,"docs":{},"e":{"b":{"4":{"9":{"2":{"1":{"9":{"d":{"a":{"7":{"a":{"7":{"0":{"c":{"df":0,"docs":{},"e":{"9":{"0":{"c":{"3":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"9":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"23":{"tf":1.0},"57":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}}},"_":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"164":{"tf":1.0},"359":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"(":{"1":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{},"x":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{".":{"a":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"200":{"tf":1.7320508075688772},"204":{"tf":1.0},"312":{"tf":1.0},"331":{"tf":1.0},"72":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}}},"v":{"df":12,"docs":{"107":{"tf":1.0},"136":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"498":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"406":{"tf":1.0},"51":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":3.1622776601683795},"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}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"441":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"151":{"tf":1.0},"256":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"131":{"tf":1.0},"149":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.4142135623730951},"358":{"tf":3.0},"359":{"tf":1.0},"362":{"tf":1.0},"378":{"tf":1.0},"422":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"144":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"455":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"5":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"365":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"r":{"d":{"df":10,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"161":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"235":{"tf":1.0},"269":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":29,"docs":{"197":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.0},"206":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.4142135623730951},"444":{"tf":2.0},"455":{"tf":1.7320508075688772},"469":{"tf":1.0},"483":{"tf":1.4142135623730951},"487":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"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}},"i":{"d":{"df":6,"docs":{"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":2,"docs":{"396":{"tf":1.0},"398":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"223":{"tf":1.0},"23":{"tf":1.0},"398":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":2.0}}}}},"r":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":14,"docs":{"209":{"tf":1.0},"236":{"tf":1.0},"254":{"tf":1.0},"276":{"tf":1.0},"375":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.4142135623730951}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":1.0},"331":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"269":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"211":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"281":{"tf":1.0},"421":{"tf":1.0},"49":{"tf":1.0}}}},"v":{"df":8,"docs":{"178":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"24":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"310":{"tf":1.0},"398":{"tf":1.7320508075688772}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"12":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.4142135623730951},"374":{"tf":1.0},"384":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"377":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":75,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.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.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"165":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":1.4142135623730951},"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},"222":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":1.0},"418":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"483":{"tf":1.0},"500":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"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}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"146":{"tf":1.0},"177":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"359":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951},"51":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"504":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"108":{"tf":1.0}}}}}}}},"df":6,"docs":{"130":{"tf":1.0},"14":{"tf":1.0},"205":{"tf":1.4142135623730951},"393":{"tf":1.0},"425":{"tf":1.0},"452":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"165":{"tf":1.0},"184":{"tf":1.4142135623730951},"24":{"tf":1.0},"250":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":2.0},"277":{"tf":1.0},"365":{"tf":1.0},"418":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":27,"docs":{"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"140":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":2.23606797749979},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"444":{"tf":1.0},"500":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"191":{"tf":1.0},"211":{"tf":1.0},"296":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"418":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"204":{"tf":1.0},"254":{"tf":1.0},"3":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"4":{"tf":1.0},"421":{"tf":2.23606797749979},"466":{"tf":1.0},"47":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":16,"docs":{"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"292":{"tf":2.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"199":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"384":{"tf":1.0},"422":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"13":{"tf":1.0},"33":{"tf":1.0},"411":{"tf":1.0},"422":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"412":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"132":{"tf":1.0},"14":{"tf":1.0},"241":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"306":{"tf":1.0},"418":{"tf":1.0},"430":{"tf":1.4142135623730951},"435":{"tf":1.0},"449":{"tf":1.4142135623730951},"466":{"tf":1.0},"477":{"tf":1.0},"504":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"375":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1":{"tf":1.0},"421":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"382":{"tf":1.0},"398":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"422":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"l":{"df":24,"docs":{"196":{"tf":2.23606797749979},"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.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"311":{"tf":1.0},"34":{"tf":1.0},"466":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"269":{"tf":1.0},"327":{"tf":1.0},"444":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"143":{"tf":1.0},"455":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":17,"docs":{"177":{"tf":1.0},"19":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"382":{"tf":1.0},"41":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"a":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"48":{"tf":1.0}}},"df":0,"docs":{}},"l":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":5,"docs":{"101":{"tf":1.0},"125":{"tf":2.0},"161":{"tf":1.0},"214":{"tf":1.4142135623730951},"486":{"tf":1.0}}}}}}}}},"i":{"c":{"df":4,"docs":{"209":{"tf":4.242640687119285},"364":{"tf":1.0},"441":{"tf":2.0},"444":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"398":{"tf":1.0}}}},"n":{"df":1,"docs":{"120":{"tf":1.0}}},"v":{"df":1,"docs":{"284":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"404":{"tf":1.0},"414":{"tf":1.0}}}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":58,"docs":{"159":{"tf":2.23606797749979},"160":{"tf":2.0},"161":{"tf":3.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":2.6457513110645907},"165":{"tf":3.3166247903554},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":2.0},"209":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"303":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":2.0},"317":{"tf":1.0},"353":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"355":{"tf":3.872983346207417},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":3.605551275463989},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.7320508075688772},"421":{"tf":1.7320508075688772},"422":{"tf":1.0},"424":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.4142135623730951},"509":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":54,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"161":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":2.23606797749979},"222":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"255":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.7320508075688772},"343":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.0},"404":{"tf":1.4142135623730951},"411":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.23606797749979},"421":{"tf":1.0},"441":{"tf":1.7320508075688772},"444":{"tf":2.0},"45":{"tf":1.0},"460":{"tf":1.0},"466":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"483":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"406":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"3":{"tf":1.0},"421":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"441":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":23,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.23606797749979},"211":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"341":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.4142135623730951},"414":{"tf":1.0},"421":{"tf":1.0},"466":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"206":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"222":{"tf":1.0},"318":{"tf":1.0},"436":{"tf":1.0},"473":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":1.0}},"n":{"df":12,"docs":{"196":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"228":{"tf":1.4142135623730951},"344":{"tf":1.0},"358":{"tf":1.7320508075688772},"384":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"178":{"tf":1.0},"27":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"423":{"tf":1.0},"78":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":25,"docs":{"104":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.0},"164":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"312":{"tf":1.0},"339":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":2.8284271247461903},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"384":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"26":{"tf":1.0},"358":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"180":{"tf":1.0},"340":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"14":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"358":{"tf":1.7320508075688772},"386":{"tf":1.0},"388":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.7320508075688772},"498":{"tf":1.7320508075688772},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"421":{"tf":1.0},"422":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"179":{"tf":1.0}},"u":{"df":1,"docs":{"197":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}},"i":{"df":2,"docs":{"3":{"tf":1.0},"67":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"418":{"tf":1.0},"422":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"131":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"319":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"210":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"250":{"tf":1.4142135623730951}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":5,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"12":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"311":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"398":{"tf":1.0},"423":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"384":{"tf":1.0},"386":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"250":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"179":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.7320508075688772},"472":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"119":{"tf":1.0},"200":{"tf":1.7320508075688772},"209":{"tf":1.0},"281":{"tf":1.0},"358":{"tf":2.449489742783178},"384":{"tf":1.0},"445":{"tf":1.0},"500":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"358":{"tf":1.0},"406":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"#":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":33,"docs":{"140":{"tf":1.4142135623730951},"206":{"tf":1.0},"213":{"tf":1.0},"235":{"tf":1.0},"309":{"tf":1.4142135623730951},"319":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.4142135623730951},"399":{"tf":2.23606797749979},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.4142135623730951},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"492":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":2,"docs":{"200":{"tf":1.0},"235":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"188":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"118":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}},"r":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":11,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.449489742783178},"183":{"tf":2.0},"188":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0}}},"df":14,"docs":{"145":{"tf":1.0},"226":{"tf":1.0},"252":{"tf":1.0},"283":{"tf":1.0},"315":{"tf":1.0},"358":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"449":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"34":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"422":{"tf":1.0},"43":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"205":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"472":{"tf":1.0},"488":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":4,"docs":{"140":{"tf":1.7320508075688772},"268":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"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":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"236":{"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":11,"docs":{"146":{"tf":1.0},"153":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"43":{"tf":1.4142135623730951},"6":{"tf":1.0},"8":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"177":{"tf":2.0},"179":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"303":{"tf":1.0},"310":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"144":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.0},"158":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"146":{"tf":1.0},"384":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":1,"docs":{"500":{"tf":1.4142135623730951}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"177":{"tf":1.0},"398":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"223":{"tf":1.0},"372":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":2.0},"418":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"312":{"tf":1.0},"365":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"14":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"217":{"tf":1.0},"258":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"459":{"tf":1.0},"500":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}}}}}},"df":3,"docs":{"122":{"tf":1.0},"33":{"tf":1.0},"486":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"u":{"d":{"a":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":56,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"156":{"tf":1.4142135623730951},"159":{"tf":1.0},"172":{"tf":1.4142135623730951},"196":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"243":{"tf":1.4142135623730951},"248":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"300":{"tf":1.4142135623730951},"303":{"tf":1.0},"320":{"tf":1.4142135623730951},"323":{"tf":1.0},"337":{"tf":1.4142135623730951},"339":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"361":{"tf":1.4142135623730951},"364":{"tf":1.0},"377":{"tf":1.4142135623730951},"380":{"tf":1.0},"391":{"tf":1.4142135623730951},"399":{"tf":1.0},"413":{"tf":1.4142135623730951},"416":{"tf":1.0},"425":{"tf":1.4142135623730951},"427":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.4142135623730951},"453":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"479":{"tf":1.4142135623730951},"482":{"tf":1.0},"493":{"tf":1.4142135623730951},"496":{"tf":1.0},"507":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.7320508075688772}}}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"255":{"tf":1.0},"382":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"n":{".":{"1":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"21":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.4142135623730951},"421":{"tf":1.0},"443":{"tf":1.0},"452":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"x":{"df":1,"docs":{"222":{"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":2,"docs":{"125":{"tf":1.0},"167":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"426":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"178":{"tf":1.0},"183":{"tf":1.0}}}}}}}}},"df":54,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":2.449489742783178},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.7320508075688772},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":3.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.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"235":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"310":{"tf":2.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"'":{"df":2,"docs":{"179":{"tf":1.0},"183":{"tf":1.0}}},"df":15,"docs":{"12":{"tf":1.0},"175":{"tf":2.6457513110645907},"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"179":{"tf":2.6457513110645907},"180":{"tf":2.449489742783178},"181":{"tf":2.23606797749979},"183":{"tf":2.23606797749979},"184":{"tf":2.8284271247461903},"185":{"tf":1.4142135623730951},"186":{"tf":2.0},"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"184":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.7320508075688772},"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":34,"docs":{"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"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.7320508075688772},"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},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":2.449489742783178},"206":{"tf":3.1622776601683795},"209":{"tf":3.1622776601683795},"217":{"tf":1.4142135623730951},"222":{"tf":2.449489742783178},"24":{"tf":1.0},"358":{"tf":1.0},"50":{"tf":2.23606797749979}},"e":{"d":{"(":{"a":{"df":1,"docs":{"209":{"tf":2.0}}},"b":{"df":1,"docs":{"209":{"tf":2.449489742783178}}},"c":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":22,"docs":{"106":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"210":{"tf":1.0},"269":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"384":{"tf":1.4142135623730951},"429":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"48":{"tf":2.6457513110645907},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":14,"docs":{"131":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"421":{"tf":1.0},"455":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"232":{"tf":1.4142135623730951},"398":{"tf":1.0},"407":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772}}}}},"r":{"df":2,"docs":{"284":{"tf":1.0},"398":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"184":{"tf":2.8284271247461903},"188":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"151":{"tf":1.7320508075688772},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"231":{"tf":1.0}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"162":{"tf":1.0},"232":{"tf":1.0},"356":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"500":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"47":{"tf":2.0},"48":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"2":{"tf":1.0},"3":{"tf":1.0},"310":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"199":{"tf":2.0},"204":{"tf":1.0},"206":{"tf":1.0},"307":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}},"df":10,"docs":{"210":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"402":{"tf":1.0},"474":{"tf":1.0},"488":{"tf":1.0},"56":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"292":{"tf":1.0}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":48,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"388":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.7320508075688772},"500":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"26":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"209":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.7320508075688772},"468":{"tf":1.0}}}},"df":4,"docs":{"11":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"99":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"421":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":44,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":2.6457513110645907},"121":{"tf":1.7320508075688772},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":2.0},"128":{"tf":1.0},"129":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"143":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.4142135623730951},"395":{"tf":1.0},"402":{"tf":1.0},"421":{"tf":1.4142135623730951},"425":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":2.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.4142135623730951},"358":{"tf":1.0},"374":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"421":{"tf":1.0}}},"df":8,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"358":{"tf":1.0}}},"y":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"140":{"tf":2.0},"204":{"tf":1.0},"222":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"406":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"147":{"tf":1.0},"218":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"158":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"355":{"tf":1.0},"500":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":2,"docs":{"235":{"tf":1.4142135623730951},"307":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":19,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"222":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":3.0},"321":{"tf":1.0},"322":{"tf":1.0},"382":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":1.0},"459":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"9":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":5,"docs":{"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"61":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"3":{"tf":1.0},"423":{"tf":1.0},"72":{"tf":2.23606797749979},"9":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"5":{"8":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":75,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"122":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":2.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},"164":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"3":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":2.23606797749979},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"375":{"tf":1.4142135623730951},"398":{"tf":1.0},"421":{"tf":1.0}}}}}},"i":{"c":{"df":6,"docs":{"151":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"377":{"tf":1.0}}},"df":6,"docs":{"204":{"tf":1.0},"219":{"tf":1.0},"247":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"54":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"139":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"104":{"tf":1.0},"126":{"tf":1.4142135623730951},"184":{"tf":1.0},"209":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"504":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.4142135623730951},"199":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.4142135623730951},"355":{"tf":1.0},"388":{"tf":1.0},"406":{"tf":1.0},"442":{"tf":1.0},"48":{"tf":1.0}}}}},"df":36,"docs":{"104":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.0},"209":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"235":{"tf":1.0},"255":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"310":{"tf":1.0},"359":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.7320508075688772},"384":{"tf":1.0},"386":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"486":{"tf":1.7320508075688772},"502":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"146":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":31,"docs":{"112":{"tf":1.0},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.4142135623730951},"421":{"tf":1.0},"43":{"tf":1.0},"466":{"tf":1.0},"492":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":1,"docs":{"398":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"130":{"tf":1.4142135623730951},"140":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":5.5677643628300215},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"308":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"384":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"384":{"tf":1.4142135623730951},"74":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"358":{"tf":3.1622776601683795},"501":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"165":{"tf":1.0},"199":{"tf":1.0},"250":{"tf":1.0},"341":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":11,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"193":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"129":{"tf":1.4142135623730951},"358":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}}}},"w":{"df":13,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"205":{"tf":1.4142135623730951},"329":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.0},"469":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":6,"docs":{"210":{"tf":1.0},"240":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.0},"455":{"tf":1.4142135623730951},"459":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"206":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}},"df":5,"docs":{"161":{"tf":1.0},"250":{"tf":1.0},"296":{"tf":1.4142135623730951},"418":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":14,"docs":{"14":{"tf":1.0},"161":{"tf":1.7320508075688772},"176":{"tf":1.0},"179":{"tf":1.0},"268":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"398":{"tf":2.449489742783178},"416":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0},"423":{"tf":1.0},"444":{"tf":1.0},"5":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"169":{"tf":1.0},"180":{"tf":1.0},"313":{"tf":1.0},"355":{"tf":1.0},"396":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"119":{"tf":1.0},"179":{"tf":1.0},"250":{"tf":1.4142135623730951},"372":{"tf":1.0},"414":{"tf":1.0},"465":{"tf":1.0},"51":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"120":{"tf":1.0},"158":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"208":{"tf":1.0},"214":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"327":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"460":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"98":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"183":{"tf":1.0},"200":{"tf":1.4142135623730951},"215":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"199":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.23606797749979}}}}},"df":3,"docs":{"199":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":2.0}}},"df":0,"docs":{},"g":{"df":5,"docs":{"429":{"tf":2.0},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.4142135623730951},"83":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"166":{"tf":1.0},"47":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"171":{"tf":1.0},"500":{"tf":1.0},"95":{"tf":1.0}}}}},"d":{"df":4,"docs":{"208":{"tf":1.0},"23":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"102":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"209":{"tf":3.0},"32":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.7320508075688772},"384":{"tf":1.0},"388":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"505":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"209":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"(":{"3":{"2":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}},"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":2,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"191":{"tf":1.0}}}},"b":{"df":8,"docs":{"176":{"tf":1.0},"179":{"tf":2.6457513110645907},"181":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"99":{"tf":1.4142135623730951}},"s":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"'":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":17,"docs":{"399":{"tf":2.23606797749979},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"399":{"tf":1.0},"400":{"tf":1.0},"405":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"14":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.7320508075688772},"36":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":71,"docs":{"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":2.6457513110645907},"146":{"tf":5.196152422706632},"158":{"tf":1.7320508075688772},"161":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":3.1622776601683795},"208":{"tf":2.23606797749979},"209":{"tf":3.1622776601683795},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"363":{"tf":1.0},"382":{"tf":2.0},"384":{"tf":1.0},"39":{"tf":1.0},"399":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":2.449489742783178},"402":{"tf":1.0},"404":{"tf":2.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":2.23606797749979},"456":{"tf":1.0},"457":{"tf":2.23606797749979},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":3.872983346207417},"470":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"205":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":6,"docs":{"183":{"tf":1.0},"215":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"311":{"tf":1.0},"366":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"b":{"df":4,"docs":{"209":{"tf":3.0},"364":{"tf":1.0},"441":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"232":{"tf":1.4142135623730951},"235":{"tf":2.6457513110645907},"236":{"tf":1.0},"241":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":1,"docs":{"398":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"384":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":20,"docs":{"142":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.0},"250":{"tf":2.8284271247461903},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":2.449489742783178},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"119":{"tf":1.0}},"h":{"df":29,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"219":{"tf":1.0},"254":{"tf":1.0},"30":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"321":{"tf":1.0},"382":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"344":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.0},"355":{"tf":1.0}}}}},"df":8,"docs":{"209":{"tf":1.7320508075688772},"384":{"tf":1.0},"386":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"431":{"tf":1.0},"500":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"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":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"129":{"tf":1.4142135623730951},"384":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":13,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.0},"311":{"tf":1.0},"400":{"tf":1.0},"402":{"tf":1.4142135623730951},"436":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":1.0},"506":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"292":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"187":{"tf":1.0},"268":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"217":{"tf":1.0},"220":{"tf":1.0}}}},"df":2,"docs":{"366":{"tf":1.0},"368":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"355":{"tf":2.449489742783178},"358":{"tf":5.5677643628300215},"362":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"146":{"tf":1.0},"501":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"215":{"tf":1.0},"235":{"tf":1.4142135623730951},"277":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"425":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"5":{"3":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"l":{"1":{"2":{"2":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"194":{"tf":1.0},"408":{"tf":1.0},"449":{"tf":1.0},"455":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"159":{"tf":1.0},"415":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":2.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"208":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"208":{"tf":3.1622776601683795},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}},"df":28,"docs":{"204":{"tf":3.0},"205":{"tf":3.4641016151377544},"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":2.23606797749979},"364":{"tf":2.23606797749979},"365":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"129":{"tf":1.0},"296":{"tf":1.0},"400":{"tf":1.0},"486":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"402":{"tf":1.0},"481":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":5,"docs":{"394":{"tf":2.23606797749979},"395":{"tf":1.7320508075688772},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":3.0}}}},"y":{"df":2,"docs":{"186":{"tf":1.0},"200":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"398":{"tf":1.0},"421":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"253":{"tf":1.0},"254":{"tf":2.0},"33":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"355":{"tf":1.0},"358":{"tf":4.47213595499958},"384":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"469":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"51":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"s":{"(":{"\"":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"51":{"tf":1.0},"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":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"256":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":7,"docs":{"309":{"tf":1.0},"421":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"401":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":46,"docs":{"102":{"tf":1.7320508075688772},"128":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.23606797749979},"209":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.7320508075688772},"281":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"355":{"tf":1.7320508075688772},"358":{"tf":2.449489742783178},"362":{"tf":1.4142135623730951},"382":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.7320508075688772},"460":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"df":2,"docs":{"206":{"tf":1.0},"468":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"206":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":1.0},"358":{"tf":1.0},"60":{"tf":1.0}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.4142135623730951},"140":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":14,"docs":{"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"140":{"tf":3.7416573867739413},"23":{"tf":2.0},"235":{"tf":2.6457513110645907},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"307":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":24,"docs":{"141":{"tf":2.449489742783178},"142":{"tf":2.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":3.1622776601683795},"147":{"tf":2.23606797749979},"148":{"tf":2.6457513110645907},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.23606797749979},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"200":{"tf":1.0}}}},"c":{"df":6,"docs":{"266":{"tf":1.0},"313":{"tf":1.0},"327":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"179":{"tf":1.0},"204":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"197":{"tf":1.0},"201":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"386":{"tf":1.0},"98":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"473":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"101":{"tf":1.0},"171":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"296":{"tf":1.0},"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":45,"docs":{"106":{"tf":1.0},"112":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"255":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"464":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.4142135623730951},"58":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"382":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.0},"164":{"tf":1.0},"415":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"129":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"358":{"tf":1.0},"361":{"tf":1.0},"500":{"tf":1.4142135623730951},"504":{"tf":1.0},"506":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"130":{"tf":1.0},"204":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"407":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"232":{"tf":2.0},"233":{"tf":1.0},"235":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"284":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"418":{"tf":1.0},"47":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"194":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"18":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0}}},"df":139,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":3.0},"149":{"tf":2.0},"158":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":2.23606797749979},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.7320508075688772},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":2.0},"201":{"tf":1.0},"204":{"tf":4.47213595499958},"205":{"tf":2.6457513110645907},"206":{"tf":2.6457513110645907},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":2.23606797749979},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":3.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":2.23606797749979},"249":{"tf":1.0},"250":{"tf":3.3166247903554},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"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},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":2.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":2.0},"309":{"tf":2.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.449489742783178},"312":{"tf":3.1622776601683795},"313":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"366":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":1.7320508075688772},"386":{"tf":1.0},"421":{"tf":1.0},"436":{"tf":1.4142135623730951},"442":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.7320508075688772},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.7320508075688772},"486":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"365":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"83":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"205":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":106,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"119":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"319":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":2.0},"385":{"tf":1.0},"386":{"tf":1.0},"400":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":2.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.7320508075688772},"468":{"tf":1.4142135623730951},"47":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"492":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":2.0},"504":{"tf":1.0},"506":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"235":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"220":{"tf":1.0},"222":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"427":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"209":{"tf":1.7320508075688772},"441":{"tf":1.7320508075688772},"444":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"207":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":16,"docs":{"111":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"382":{"tf":1.0},"408":{"tf":1.4142135623730951},"43":{"tf":1.0},"466":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"472":{"tf":2.0},"49":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"358":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"384":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"106":{"tf":1.0},"384":{"tf":2.449489742783178}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"384":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"12":{"tf":1.0},"222":{"tf":1.0},"331":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"164":{"tf":1.0},"194":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"143":{"tf":1.4142135623730951},"253":{"tf":1.0},"310":{"tf":1.0},"372":{"tf":1.0},"421":{"tf":1.0},"48":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"129":{"tf":2.0}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":27,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"106":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":2.6457513110645907},"121":{"tf":1.7320508075688772},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":2.449489742783178},"127":{"tf":3.0},"128":{"tf":2.449489742783178},"129":{"tf":4.58257569495584},"130":{"tf":2.23606797749979},"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.4142135623730951},"140":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"122":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}}}}}}}}}}},"i":{"df":1,"docs":{"295":{"tf":1.0}},"r":{"c":{"a":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{},"s":{"[":{"0":{"df":1,"docs":{"54":{"tf":1.0}}},"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"179":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"241":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"470":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":3.7416573867739413},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"498":{"tf":1.0},"502":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"31":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"179":{"tf":1.0},"187":{"tf":1.0}}}},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"161":{"tf":1.0},"391":{"tf":1.0}}},"r":{"df":12,"docs":{"193":{"tf":1.0},"211":{"tf":1.0},"266":{"tf":1.0},"360":{"tf":1.0},"398":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"442":{"tf":1.0},"472":{"tf":1.0},"502":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.4142135623730951},"429":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":47,"docs":{"130":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"263":{"tf":1.0},"318":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"380":{"tf":2.0},"381":{"tf":1.4142135623730951},"382":{"tf":2.6457513110645907},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"456":{"tf":1.0},"496":{"tf":2.23606797749979},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":2.0},"501":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":2.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"60":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"500":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"183":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"129":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"327":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"410":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"32":{"tf":1.0}}},"df":40,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":1.0},"134":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"184":{"tf":1.0},"23":{"tf":1.4142135623730951},"270":{"tf":1.0},"297":{"tf":1.0},"33":{"tf":2.0},"341":{"tf":1.7320508075688772},"358":{"tf":1.7320508075688772},"360":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.4142135623730951},"385":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.0},"435":{"tf":1.0},"465":{"tf":1.7320508075688772},"466":{"tf":2.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.449489742783178},"470":{"tf":2.449489742783178},"471":{"tf":1.0},"472":{"tf":2.23606797749979},"473":{"tf":1.0},"49":{"tf":1.0},"498":{"tf":1.0},"64":{"tf":2.449489742783178},"7":{"tf":2.23606797749979},"80":{"tf":1.0},"9":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"308":{"tf":1.4142135623730951},"465":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"l":{"d":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":25,"docs":{"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"230":{"tf":2.23606797749979},"231":{"tf":1.7320508075688772},"232":{"tf":4.0},"233":{"tf":2.23606797749979},"234":{"tf":1.0},"235":{"tf":3.1622776601683795},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"250":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":31,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"16":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":2.449489742783178},"265":{"tf":2.6457513110645907},"266":{"tf":2.6457513110645907},"267":{"tf":1.0},"268":{"tf":2.23606797749979},"269":{"tf":3.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":2.6457513110645907},"273":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.4142135623730951},"3":{"tf":1.0},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"38":{"tf":1.0},"398":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"277":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.4142135623730951},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":15,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"3":{"tf":1.0},"329":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.4142135623730951},"406":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"130":{"tf":1.0},"421":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"328":{"tf":1.0}}}}},"t":{"df":6,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.0},"395":{"tf":1.0},"407":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"204":{"tf":1.0},"268":{"tf":1.4142135623730951},"325":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"183":{"tf":1.0},"305":{"tf":1.4142135623730951},"358":{"tf":1.0},"382":{"tf":1.0},"418":{"tf":1.0},"442":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":12,"docs":{"179":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"268":{"tf":1.0},"3":{"tf":1.0},"398":{"tf":1.0},"439":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":3,"docs":{"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"<":{"df":0,"docs":{},"u":{"3":{"2":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"*":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{")":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"343":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":12,"docs":{"188":{"tf":1.0},"205":{"tf":1.0},"295":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.0},"382":{"tf":1.0},"424":{"tf":1.0},"468":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"382":{"tf":1.0}}}}}}},"t":{"df":85,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"196":{"tf":1.0},"20":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"216":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"252":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"264":{"tf":1.0},"272":{"tf":1.7320508075688772},"275":{"tf":1.0},"288":{"tf":1.7320508075688772},"292":{"tf":1.0},"299":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"323":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"380":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"466":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}},"t":{"df":3,"docs":{"232":{"tf":1.4142135623730951},"241":{"tf":1.0},"446":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"161":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.4142135623730951},"187":{"tf":1.0},"358":{"tf":2.0},"500":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":2,"docs":{"305":{"tf":1.0},"401":{"tf":1.0}}}}}},"t":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"127":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"341":{"tf":1.0},"455":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"x":{"df":12,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"22":{"tf":1.0},"312":{"tf":1.4142135623730951},"34":{"tf":1.0},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"444":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"408":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"131":{"tf":1.0},"149":{"tf":1.0},"312":{"tf":1.7320508075688772},"344":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0}}},"df":1,"docs":{"252":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"183":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"310":{"tf":1.4142135623730951}}},"s":{"df":3,"docs":{"177":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"145":{"tf":1.0},"25":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"128":{"tf":1.0},"180":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"305":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":2.0},"50":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"&":{"[":{"4":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":1,"docs":{"343":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"125":{"tf":1.7320508075688772},"206":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.0}}}}},"v":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"455":{"tf":1.0},"496":{"tf":2.23606797749979},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"16":{"tf":1.4142135623730951},"212":{"tf":1.0},"226":{"tf":1.0},"252":{"tf":1.0},"285":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"398":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"208":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"11":{"tf":1.0},"146":{"tf":1.0},"276":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"132":{"tf":1.0},"212":{"tf":1.4142135623730951},"421":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.0}}}},"i":{"d":{"df":2,"docs":{"313":{"tf":1.0},"366":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"171":{"tf":1.4142135623730951},"184":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"130":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"209":{"tf":1.0},"223":{"tf":1.0},"266":{"tf":1.4142135623730951},"310":{"tf":1.0},"318":{"tf":1.0},"364":{"tf":1.0},"375":{"tf":1.4142135623730951},"429":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":3.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"431":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"281":{"tf":1.0},"283":{"tf":1.0},"427":{"tf":2.23606797749979},"428":{"tf":1.4142135623730951},"429":{"tf":2.6457513110645907},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":2.0},"432":{"tf":1.4142135623730951},"433":{"tf":2.23606797749979},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"439":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"250":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"378":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"143":{"tf":1.4142135623730951},"199":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"340":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":51,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"130":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"502":{"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.4142135623730951},"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},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"13":{"tf":1.0},"250":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"240":{"tf":1.0},"375":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":24,"docs":{"10":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"140":{"tf":1.0},"146":{"tf":1.0},"174":{"tf":1.0},"26":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.0},"359":{"tf":1.4142135623730951},"375":{"tf":1.0},"384":{"tf":1.4142135623730951},"398":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.0},"444":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"147":{"tf":1.0},"254":{"tf":1.4142135623730951},"294":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.0},"504":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"153":{"tf":1.0},"258":{"tf":1.0},"3":{"tf":1.0},"359":{"tf":1.0},"469":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":5,"docs":{"486":{"tf":1.0},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}},"t":{"df":4,"docs":{"314":{"tf":1.0},"37":{"tf":1.0},"371":{"tf":1.0},"455":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"112":{"tf":1.0},"178":{"tf":1.0},"269":{"tf":1.0},"358":{"tf":1.0},"42":{"tf":1.4142135623730951},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":12,"docs":{"125":{"tf":1.0},"134":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"295":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"455":{"tf":1.0},"72":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"418":{"tf":1.0},"497":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"224":{"tf":1.0},"304":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":3.1622776601683795},"382":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":12,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.0},"179":{"tf":1.4142135623730951},"204":{"tf":1.0},"297":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.4142135623730951},"48":{"tf":1.0},"488":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":1,"docs":{"366":{"tf":1.0}}}}},"u":{"df":8,"docs":{"22":{"tf":1.0},"237":{"tf":1.0},"295":{"tf":1.0},"325":{"tf":1.0},"355":{"tf":1.0},"383":{"tf":1.4142135623730951},"421":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"175":{"tf":3.4641016151377544},"176":{"tf":2.0},"177":{"tf":2.6457513110645907},"178":{"tf":2.8284271247461903},"179":{"tf":2.23606797749979},"180":{"tf":2.449489742783178},"181":{"tf":2.23606797749979},"182":{"tf":1.0},"183":{"tf":3.7416573867739413},"184":{"tf":2.449489742783178},"185":{"tf":1.4142135623730951},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":2.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"199":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":1.0},"30":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"'":{"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"209":{"tf":1.7320508075688772},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"327":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"151":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"256":{"tf":1.0},"294":{"tf":1.0},"355":{"tf":1.0},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":2.0},"442":{"tf":1.0},"444":{"tf":1.7320508075688772},"484":{"tf":1.0},"500":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"363":{"tf":1.0}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}},"t":{"df":4,"docs":{"23":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"486":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"452":{"tf":1.0},"51":{"tf":1.0}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"161":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"307":{"tf":1.0},"440":{"tf":2.23606797749979},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"170":{"tf":1.0}}}}},"n":{"c":{"df":2,"docs":{"162":{"tf":1.0},"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"358":{"tf":2.0},"362":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"204":{"tf":1.0},"209":{"tf":1.4142135623730951}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"399":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"128":{"tf":2.0},"131":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}}},"df":56,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":2.6457513110645907},"179":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":2.0},"204":{"tf":3.3166247903554},"205":{"tf":3.1622776601683795},"206":{"tf":4.123105625617661},"207":{"tf":1.7320508075688772},"208":{"tf":3.0},"209":{"tf":5.656854249492381},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.7320508075688772},"220":{"tf":1.0},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"231":{"tf":1.0},"266":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":2.449489742783178},"314":{"tf":1.0},"365":{"tf":2.0},"371":{"tf":2.0},"372":{"tf":2.23606797749979},"374":{"tf":2.23606797749979},"375":{"tf":1.0},"399":{"tf":2.23606797749979},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":3.0},"422":{"tf":1.0},"462":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"128":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":2.0},"222":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"131":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"206":{"tf":1.0},"209":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"180":{"tf":1.0}}},"df":8,"docs":{"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":1.0},"195":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{")":{"^":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"208":{"tf":2.449489742783178},"372":{"tf":1.0},"373":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":67,"docs":{"196":{"tf":2.6457513110645907},"197":{"tf":1.4142135623730951},"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":6.324555320336759},"205":{"tf":4.69041575982343},"206":{"tf":4.242640687119285},"207":{"tf":3.605551275463989},"208":{"tf":3.3166247903554},"209":{"tf":3.0},"210":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":2.8284271247461903},"215":{"tf":1.0},"216":{"tf":2.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":2.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},"305":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.0},"318":{"tf":1.0},"364":{"tf":2.23606797749979},"365":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"394":{"tf":2.23606797749979},"395":{"tf":1.7320508075688772},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":3.605551275463989},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.0},"421":{"tf":2.6457513110645907},"422":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"466":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"165":{"tf":1.0},"502":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"112":{"tf":1.0},"375":{"tf":1.0},"455":{"tf":1.0},"474":{"tf":1.0},"488":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"167":{"tf":1.0},"309":{"tf":1.0},"459":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"418":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.0},"153":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"12":{"tf":1.0},"188":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"329":{"tf":1.0},"344":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"465":{"tf":2.0},"466":{"tf":1.0},"469":{"tf":1.0},"481":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"358":{"tf":3.3166247903554},"362":{"tf":1.4142135623730951},"421":{"tf":1.0}},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"471":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"205":{"tf":1.0},"238":{"tf":1.0},"455":{"tf":1.0},"465":{"tf":1.0},"472":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"296":{"tf":1.0},"72":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"296":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"126":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"284":{"tf":1.0},"29":{"tf":1.0},"358":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"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":{}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"204":{"tf":2.6457513110645907},"206":{"tf":1.7320508075688772},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":2,"docs":{"232":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":8,"docs":{"130":{"tf":1.0},"14":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"189":{"tf":1.0},"25":{"tf":1.0},"407":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"199":{"tf":1.0},"204":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":2.6457513110645907},"307":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.0},"207":{"tf":1.4142135623730951},"398":{"tf":1.0},"48":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"41":{"tf":1.7320508075688772},"486":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}},"u":{"df":2,"docs":{"204":{"tf":1.0},"255":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"102":{"tf":1.0},"13":{"tf":1.7320508075688772},"22":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":67,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":2.449489742783178},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"179":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.449489742783178},"209":{"tf":2.0},"222":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.4142135623730951},"284":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.0},"310":{"tf":1.0},"329":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"393":{"tf":1.4142135623730951},"406":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"429":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.7320508075688772},"469":{"tf":1.0},"477":{"tf":1.0},"484":{"tf":1.0},"488":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":2.449489742783178},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}},"s":{"df":1,"docs":{"422":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"372":{"tf":1.0}}}}}},"df":7,"docs":{"205":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"161":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"179":{"tf":1.0},"54":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"130":{"tf":1.0},"58":{"tf":1.0}}}}},"d":{"a":{"df":4,"docs":{"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.0}}}}}},"n":{"c":{"df":1,"docs":{"415":{"tf":1.0}}},"df":4,"docs":{"325":{"tf":1.0},"327":{"tf":2.449489742783178},"328":{"tf":1.7320508075688772},"329":{"tf":1.0}}},"o":{"df":1,"docs":{"70":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":31,"docs":{"121":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":2.0},"129":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":2.0},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"254":{"tf":1.0},"281":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.7320508075688772},"358":{"tf":4.795831523312719},"362":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":2.23606797749979},"436":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"470":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":2.0},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":6,"docs":{"179":{"tf":1.4142135623730951},"199":{"tf":1.0},"208":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"498":{"tf":1.0}}}},"df":2,"docs":{"209":{"tf":1.4142135623730951},"372":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"209":{"tf":1.0},"358":{"tf":2.0},"401":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"314":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"159":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"284":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"d":{"df":8,"docs":{"128":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.4142135623730951},"396":{"tf":1.0},"455":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"119":{"tf":1.0},"165":{"tf":1.0}}}},"o":{"d":{"df":13,"docs":{"102":{"tf":2.0},"119":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"202":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"134":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":2.0},"214":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"355":{"tf":1.0},"372":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"177":{"tf":1.0},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.4142135623730951},"325":{"tf":1.0},"340":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"256":{"tf":1.0},"277":{"tf":1.0},"384":{"tf":2.23606797749979},"486":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"+":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"178":{"tf":1.4142135623730951}}}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"178":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0}}}}}},"df":2,"docs":{"178":{"tf":2.0},"183":{"tf":1.0}},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"146":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"164":{"tf":1.0},"208":{"tf":1.7320508075688772},"223":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"32":{"tf":1.4142135623730951},"340":{"tf":1.0},"370":{"tf":1.0},"44":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"500":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"7":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"412":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"11":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"444":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"440":{"tf":2.23606797749979},"441":{"tf":3.3166247903554},"442":{"tf":2.449489742783178},"443":{"tf":1.0},"444":{"tf":5.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":2.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"473":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"185":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"375":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.7320508075688772},"465":{"tf":2.0},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.7320508075688772},"470":{"tf":2.0},"472":{"tf":1.7320508075688772},"481":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.4142135623730951},"312":{"tf":1.0},"39":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"204":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772}}}}},"t":{"df":4,"docs":{"205":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"421":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"108":{"tf":1.0},"128":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"469":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":17,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"250":{"tf":1.4142135623730951},"27":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"0":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"1":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":2.0}}},"df":0,"docs":{}},"df":38,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"12":{"tf":1.7320508075688772},"13":{"tf":2.0},"14":{"tf":2.6457513110645907},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"281":{"tf":1.0},"3":{"tf":2.8284271247461903},"312":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":3.3166247903554},"470":{"tf":1.0},"472":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":2.8284271247461903},"7":{"tf":2.6457513110645907},"8":{"tf":2.449489742783178},"9":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":7,"docs":{"130":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"393":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"455":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"281":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"473":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":19,"docs":{"4":{"tf":1.0},"444":{"tf":1.0},"48":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"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},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"85":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"146":{"tf":1.4142135623730951},"205":{"tf":1.0},"384":{"tf":1.7320508075688772},"421":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":26,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.7320508075688772},"307":{"tf":1.0},"316":{"tf":1.0},"358":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.4142135623730951},"466":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"248":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":2.0},"107":{"tf":1.0},"47":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":31,"docs":{"13":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"172":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.4142135623730951},"24":{"tf":1.0},"284":{"tf":1.0},"341":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"416":{"tf":2.0},"417":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"498":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"r":{"df":16,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"153":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"238":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"421":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.0},"56":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"223":{"tf":1.0},"72":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.4142135623730951},"196":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"25":{"tf":1.4142135623730951},"296":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"277":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"200":{"tf":1.0},"227":{"tf":1.0},"254":{"tf":1.4142135623730951},"284":{"tf":1.0},"355":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":2.0},"469":{"tf":1.0},"48":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.0},"128":{"tf":1.4142135623730951},"38":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":2,"docs":{"167":{"tf":1.0},"295":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":44,"docs":{"117":{"tf":1.4142135623730951},"123":{"tf":1.0},"144":{"tf":1.0},"166":{"tf":1.4142135623730951},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":2.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"192":{"tf":1.7320508075688772},"202":{"tf":1.0},"220":{"tf":1.4142135623730951},"23":{"tf":1.0},"250":{"tf":1.4142135623730951},"266":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.7320508075688772},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"342":{"tf":1.0},"366":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"436":{"tf":1.0},"460":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"367":{"tf":1.0}}}},"c":{"df":5,"docs":{"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"t":{"df":22,"docs":{"141":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":2.449489742783178},"149":{"tf":2.0},"151":{"tf":1.0},"153":{"tf":1.0},"248":{"tf":2.449489742783178},"249":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":2.23606797749979},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"384":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"104":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"205":{"tf":1.4142135623730951},"219":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"415":{"tf":1.0},"43":{"tf":1.0},"460":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"504":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"179":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"312":{"tf":1.0},"360":{"tf":1.4142135623730951},"501":{"tf":1.0}},"i":{"df":3,"docs":{"277":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"107":{"tf":2.0},"108":{"tf":2.449489742783178},"110":{"tf":1.0},"47":{"tf":1.4142135623730951},"51":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":2.6457513110645907}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"m":{"a":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":50,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"263":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"322":{"tf":1.4142135623730951},"339":{"tf":1.0},"352":{"tf":1.4142135623730951},"380":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"399":{"tf":1.0},"415":{"tf":1.4142135623730951},"427":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"444":{"tf":1.0},"452":{"tf":1.4142135623730951},"463":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"509":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"186":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.0},"405":{"tf":1.0},"436":{"tf":1.4142135623730951},"498":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"164":{"tf":1.0},"171":{"tf":1.4142135623730951},"256":{"tf":1.0},"457":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"444":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"106":{"tf":1.0},"205":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}},"v":{"df":5,"docs":{"142":{"tf":1.0},"158":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"277":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}},"i":{"df":22,"docs":{"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"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},"249":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"418":{"tf":1.0},"422":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"131":{"tf":1.0},"174":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"384":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"416":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"425":{"tf":1.0},"438":{"tf":1.4142135623730951},"452":{"tf":1.0},"462":{"tf":1.0},"479":{"tf":1.0},"5":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"256":{"tf":1.0},"382":{"tf":1.4142135623730951},"386":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"206":{"tf":3.0},"277":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"462":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"140":{"tf":2.6457513110645907},"466":{"tf":1.0},"470":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"305":{"tf":1.0},"35":{"tf":1.0},"472":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"206":{"tf":1.0},"249":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"418":{"tf":1.0},"422":{"tf":1.0},"52":{"tf":1.0}}},"s":{"df":2,"docs":{"3":{"tf":1.0},"5":{"tf":1.0}}},"t":{"df":2,"docs":{"395":{"tf":1.0},"398":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"158":{"tf":1.0},"205":{"tf":1.0},"35":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"419":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"204":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951}}}},"o":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"425":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"487":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"34":{"tf":1.0}}},"df":11,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"26":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"358":{"tf":1.0},"417":{"tf":1.0},"45":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}}}}},"df":9,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"132":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"358":{"tf":2.6457513110645907},"384":{"tf":2.0},"385":{"tf":1.0},"421":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"481":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"374":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"250":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0},"382":{"tf":1.4142135623730951},"386":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":19,"docs":{"119":{"tf":1.0},"153":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"235":{"tf":1.0},"258":{"tf":1.0},"308":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"406":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":36,"docs":{"11":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":2.0},"193":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.7320508075688772},"222":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.7320508075688772},"310":{"tf":1.4142135623730951},"312":{"tf":2.449489742783178},"313":{"tf":1.0},"328":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"419":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":1.0},"8":{"tf":2.8284271247461903},"9":{"tf":2.8284271247461903}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"208":{"tf":1.0},"375":{"tf":1.0}},"i":{"df":1,"docs":{"372":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":8,"docs":{"102":{"tf":1.0},"127":{"tf":1.0},"256":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"147":{"tf":1.0},"204":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"308":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"372":{"tf":1.4142135623730951},"421":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":59,"docs":{"1":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"150":{"tf":1.4142135623730951},"159":{"tf":1.0},"166":{"tf":1.7320508075688772},"175":{"tf":1.0},"188":{"tf":1.4142135623730951},"196":{"tf":1.0},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.7320508075688772},"248":{"tf":1.0},"255":{"tf":1.4142135623730951},"264":{"tf":1.0},"270":{"tf":1.4142135623730951},"275":{"tf":1.0},"284":{"tf":1.4142135623730951},"292":{"tf":1.0},"297":{"tf":1.4142135623730951},"303":{"tf":1.0},"314":{"tf":1.4142135623730951},"323":{"tf":1.0},"331":{"tf":1.4142135623730951},"339":{"tf":1.0},"344":{"tf":1.4142135623730951},"353":{"tf":1.0},"360":{"tf":1.4142135623730951},"364":{"tf":1.0},"376":{"tf":1.4142135623730951},"380":{"tf":1.0},"385":{"tf":1.4142135623730951},"399":{"tf":1.0},"407":{"tf":1.4142135623730951},"416":{"tf":1.0},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"432":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.7320508075688772},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"482":{"tf":1.0},"487":{"tf":1.4142135623730951},"496":{"tf":1.0},"501":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"452":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"312":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}},"n":{"df":1,"docs":{"417":{"tf":1.0}}},"r":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":5,"docs":{"129":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":13,"docs":{"110":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"204":{"tf":1.0},"256":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"205":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":2.23606797749979},"428":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"439":{"tf":1.0},"469":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"146":{"tf":1.0},"165":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.449489742783178},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"311":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"417":{"tf":1.4142135623730951},"421":{"tf":2.0},"422":{"tf":1.0},"459":{"tf":1.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"417":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"296":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":24,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.4142135623730951},"3":{"tf":1.0},"364":{"tf":2.23606797749979},"365":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"422":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":9,"docs":{"178":{"tf":1.4142135623730951},"179":{"tf":2.0},"204":{"tf":1.0},"235":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"318":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0}}}},"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":42,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"153":{"tf":1.0},"164":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":2.6457513110645907},"222":{"tf":1.0},"232":{"tf":1.7320508075688772},"24":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"325":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"37":{"tf":1.0},"384":{"tf":1.4142135623730951},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"42":{"tf":1.0},"421":{"tf":1.7320508075688772},"442":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.0},"486":{"tf":1.4142135623730951},"50":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"178":{"tf":1.0},"215":{"tf":1.0},"386":{"tf":1.0},"421":{"tf":1.4142135623730951},"498":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"177":{"tf":1.0}},"i":{"df":5,"docs":{"129":{"tf":1.0},"140":{"tf":1.4142135623730951},"277":{"tf":1.0},"488":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"422":{"tf":1.0},"505":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"143":{"tf":1.0},"254":{"tf":1.0},"295":{"tf":1.0},"386":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":12,"docs":{"14":{"tf":1.4142135623730951},"196":{"tf":1.0},"208":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.0},"244":{"tf":1.0},"3":{"tf":1.0},"396":{"tf":1.0},"424":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":26,"docs":{"115":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"313":{"tf":1.0},"449":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"48":{"tf":1.0},"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":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}},"g":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"424":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"48":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.8284271247461903},"208":{"tf":1.0},"209":{"tf":1.0},"285":{"tf":1.0},"398":{"tf":1.4142135623730951},"418":{"tf":1.0},"465":{"tf":1.4142135623730951},"47":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":15,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"166":{"tf":1.4142135623730951},"18":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"311":{"tf":1.0},"355":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"127":{"tf":1.0},"442":{"tf":1.0},"9":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"179":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"205":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"232":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"241":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"358":{"tf":1.0},"418":{"tf":1.0},"47":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"58":{"tf":1.0}}}}}}},"m":{"b":{"df":1,"docs":{"128":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"47":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"312":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"178":{"tf":1.0},"422":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":4,"docs":{"43":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"444":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"209":{"tf":2.0},"358":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"119":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"146":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"194":{"tf":1.0},"204":{"tf":1.0},"45":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"205":{"tf":1.0},"217":{"tf":1.0},"492":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":19,"docs":{"102":{"tf":2.0},"104":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"23":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":2.0},"358":{"tf":2.0},"47":{"tf":1.4142135623730951},"486":{"tf":2.23606797749979},"51":{"tf":1.0},"72":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"292":{"tf":2.449489742783178},"293":{"tf":2.0},"294":{"tf":2.0},"295":{"tf":2.23606797749979},"296":{"tf":2.6457513110645907},"297":{"tf":2.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"296":{"tf":1.0}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"24":{"tf":1.0},"251":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"3":{"tf":1.0},"384":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"106":{"tf":1.4142135623730951},"125":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.6457513110645907},"208":{"tf":2.449489742783178},"209":{"tf":4.898979485566356},"341":{"tf":1.0},"373":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.4142135623730951},"436":{"tf":1.0},"442":{"tf":1.0},"491":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"311":{"tf":1.0},"398":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"253":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"{":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"364":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":17,"docs":{"284":{"tf":1.0},"339":{"tf":2.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"406":{"tf":1.0},"497":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"422":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"188":{"tf":1.0},"202":{"tf":1.0},"328":{"tf":1.4142135623730951},"337":{"tf":1.0},"419":{"tf":1.0},"60":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"11":{"tf":1.7320508075688772},"19":{"tf":1.0},"22":{"tf":1.0},"423":{"tf":1.0},"433":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"126":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"233":{"tf":1.0},"262":{"tf":1.0},"442":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":48,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"14":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"412":{"tf":1.0},"417":{"tf":1.0},"421":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"484":{"tf":1.4142135623730951},"488":{"tf":1.0},"498":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":15,"docs":{"122":{"tf":1.0},"157":{"tf":1.0},"206":{"tf":2.0},"256":{"tf":1.0},"262":{"tf":1.0},"313":{"tf":1.4142135623730951},"35":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.0},"470":{"tf":1.4142135623730951},"501":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"430":{"tf":1.0},"98":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"151":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.4142135623730951},"256":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"406":{"tf":1.4142135623730951},"423":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":9,"docs":{"102":{"tf":1.0},"104":{"tf":2.6457513110645907},"129":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":1.0},"384":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"164":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"161":{"tf":1.4142135623730951},"164":{"tf":1.0},"176":{"tf":1.0},"64":{"tf":1.0}}}}},"s":{"df":3,"docs":{"179":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"'":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":4.123105625617661},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":23,"docs":{"129":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"206":{"tf":3.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"222":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.0},"340":{"tf":1.0},"358":{"tf":2.0},"362":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"422":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"48":{"tf":1.4142135623730951},"498":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"206":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":2,"docs":{"312":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"502":{"tf":1.0},"51":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"51":{"tf":2.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"120":{"tf":1.0},"125":{"tf":2.23606797749979},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"134":{"tf":1.0}}}}}},"c":{"2":{"0":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"7":{"2":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":78,"docs":{"1":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"196":{"tf":1.0},"211":{"tf":1.4142135623730951},"216":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"275":{"tf":1.0},"287":{"tf":1.4142135623730951},"292":{"tf":1.0},"299":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"130":{"tf":1.0},"143":{"tf":1.0},"165":{"tf":1.0},"358":{"tf":4.242640687119285},"502":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"422":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"309":{"tf":1.0},"34":{"tf":1.0},"372":{"tf":1.0},"398":{"tf":1.0},"448":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"308":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"421":{"tf":1.0},"423":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"t":{"c":{"df":5,"docs":{"250":{"tf":1.0},"313":{"tf":1.0},"384":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"179":{"tf":1.0}}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.0},"66":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"247":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"266":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"368":{"tf":1.0}}}}},"n":{"df":14,"docs":{"127":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":2.6457513110645907},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"429":{"tf":1.0},"473":{"tf":1.4142135623730951},"48":{"tf":1.0},"506":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"120":{"tf":1.0},"122":{"tf":1.0}}}},"t":{"df":4,"docs":{"140":{"tf":1.0},"311":{"tf":1.0},"444":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951}},"u":{"df":5,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.4142135623730951},"402":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"250":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"145":{"tf":1.0},"509":{"tf":1.0}}}}}}},"m":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":21,"docs":{"175":{"tf":2.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}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":2.23606797749979},"179":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":2.449489742783178},"186":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"310":{"tf":1.0},"54":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"146":{"tf":1.0},"366":{"tf":1.0},"382":{"tf":1.0},"415":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":35,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"112":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"235":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"321":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.4142135623730951},"364":{"tf":1.0},"375":{"tf":2.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"421":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"178":{"tf":1.0},"206":{"tf":1.0},"32":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.7320508075688772},"429":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"13":{"tf":1.0},"183":{"tf":1.4142135623730951},"191":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"358":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"160":{"tf":1.0},"161":{"tf":1.0},"166":{"tf":1.0},"305":{"tf":1.4142135623730951},"358":{"tf":3.7416573867739413},"401":{"tf":1.7320508075688772},"408":{"tf":1.0},"413":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"165":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":47,"docs":{"151":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.7320508075688772},"179":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":2.449489742783178},"209":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"242":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":2.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"391":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"465":{"tf":1.0},"498":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"191":{"tf":1.0},"192":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"312":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"343":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.4142135623730951},"410":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"504":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"207":{"tf":1.0},"232":{"tf":1.0},"277":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"111":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"287":{"tf":1.0},"308":{"tf":1.0},"412":{"tf":1.0},"444":{"tf":1.0},"70":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"423":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"204":{"tf":1.0},"206":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"205":{"tf":1.0},"325":{"tf":1.0},"343":{"tf":1.0},"486":{"tf":1.4142135623730951}}}},"n":{"df":67,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"120":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":1.4142135623730951},"151":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"175":{"tf":1.0},"182":{"tf":1.4142135623730951},"196":{"tf":1.0},"203":{"tf":1.4142135623730951},"216":{"tf":1.0},"221":{"tf":1.4142135623730951},"230":{"tf":1.0},"235":{"tf":1.4142135623730951},"248":{"tf":1.0},"252":{"tf":1.4142135623730951},"256":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"275":{"tf":1.0},"280":{"tf":1.4142135623730951},"292":{"tf":1.0},"296":{"tf":1.4142135623730951},"303":{"tf":1.0},"307":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"353":{"tf":1.0},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.4142135623730951},"380":{"tf":1.0},"384":{"tf":1.4142135623730951},"394":{"tf":1.0},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"403":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"416":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"427":{"tf":1.0},"431":{"tf":1.4142135623730951},"440":{"tf":1.0},"444":{"tf":1.4142135623730951},"453":{"tf":1.0},"457":{"tf":1.4142135623730951},"463":{"tf":1.0},"468":{"tf":1.4142135623730951},"482":{"tf":1.0},"486":{"tf":1.4142135623730951},"496":{"tf":1.0},"500":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"130":{"tf":1.0},"223":{"tf":1.0},"276":{"tf":1.0},"283":{"tf":1.0},"32":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"21":{"tf":1.0},"306":{"tf":1.0},"41":{"tf":1.0},"465":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0}}},"s":{"df":1,"docs":{"424":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"12":{"tf":1.0},"372":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"161":{"tf":1.0},"164":{"tf":3.0},"165":{"tf":1.4142135623730951},"486":{"tf":1.0}}}},"s":{"df":13,"docs":{"179":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"316":{"tf":1.0},"359":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"457":{"tf":1.0},"469":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"265":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"358":{"tf":1.7320508075688772},"425":{"tf":1.0},"430":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":3,"docs":{"164":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"*":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"2":{"5":{"5":{"1":{"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"4":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"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":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"1":{"2":{"8":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"362":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"362":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"df":1,"docs":{"358":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"2":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"_":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"3":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":4,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"249":{"tf":1.0},"423":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":13,"docs":{"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":1.0},"184":{"tf":1.0},"289":{"tf":1.0},"411":{"tf":1.0},"425":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":1,"docs":{"187":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"161":{"tf":1.0},"212":{"tf":1.0},"296":{"tf":1.0},"398":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"343":{"tf":1.0}}}},"df":8,"docs":{"119":{"tf":1.0},"250":{"tf":1.4142135623730951},"358":{"tf":1.0},"362":{"tf":1.4142135623730951},"448":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"179":{"tf":1.0},"183":{"tf":1.0},"374":{"tf":1.4142135623730951},"423":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.7320508075688772},"130":{"tf":1.0},"181":{"tf":1.0},"404":{"tf":1.4142135623730951},"444":{"tf":1.0},"455":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.4641016151377544},"85":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":2.0}},"i":{"c":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"404":{"tf":1.7320508075688772},"414":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"f":{"+":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"201":{"tf":1.4142135623730951},"206":{"tf":1.0},"27":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"232":{"tf":1.0},"312":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":12,"docs":{"208":{"tf":2.6457513110645907},"222":{"tf":1.0},"312":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"126":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"358":{"tf":3.1622776601683795},"98":{"tf":1.0}}}}},"r":{"df":4,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"417":{"tf":1.4142135623730951},"422":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"126":{"tf":1.0},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"127":{"tf":1.4142135623730951},"208":{"tf":1.0},"370":{"tf":1.0}}},"s":{"df":3,"docs":{"104":{"tf":1.0},"384":{"tf":2.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"157":{"tf":1.0},"178":{"tf":1.0},"262":{"tf":1.0},"487":{"tf":1.0},"98":{"tf":1.0}}}},"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":4,"docs":{"179":{"tf":1.0},"200":{"tf":1.0},"311":{"tf":1.0},"398":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"201":{"tf":1.0},"311":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"307":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"214":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"122":{"tf":1.0},"406":{"tf":1.0}}}}}}},"df":1,"docs":{"372":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"426":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"255":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.0},"136":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"211":{"tf":1.0},"313":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"502":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"207":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.4142135623730951},"268":{"tf":1.0},"442":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"51":{"tf":1.0}}},"df":2,"docs":{"398":{"tf":1.0},"442":{"tf":1.0}},"l":{"df":4,"docs":{"446":{"tf":1.0},"452":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"177":{"tf":1.0},"179":{"tf":1.0},"220":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"df":1,"docs":{"0":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"9":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"4":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"df":1,"docs":{"266":{"tf":1.0}}},"df":37,"docs":{"0":{"tf":1.0},"202":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":2.0},"273":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"325":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":1.0},"419":{"tf":1.0},"443":{"tf":1.0},"446":{"tf":1.0},"84":{"tf":1.0}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"129":{"tf":1.0},"398":{"tf":1.0},"436":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"32":{"tf":1.0},"382":{"tf":1.0},"442":{"tf":1.0},"501":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":14,"docs":{"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"129":{"tf":1.0},"147":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"222":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"32":{"tf":1.0},"384":{"tf":2.0},"48":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"402":{"tf":1.0}}},"l":{"df":4,"docs":{"102":{"tf":1.0},"205":{"tf":1.0},"235":{"tf":1.4142135623730951},"48":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"146":{"tf":2.8284271247461903},"205":{"tf":2.0},"206":{"tf":3.605551275463989},"212":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"48":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"210":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"406":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"297":{"tf":1.0}},"i":{"df":3,"docs":{"13":{"tf":1.0},"3":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":15,"docs":{"125":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"178":{"tf":1.0},"200":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"398":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"130":{"tf":1.0},"418":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"358":{"tf":1.0},"422":{"tf":1.0}}}},"t":{"df":2,"docs":{"200":{"tf":1.0},"99":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":28,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"209":{"tf":2.23606797749979},"223":{"tf":1.0},"23":{"tf":1.0},"258":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"312":{"tf":1.4142135623730951},"358":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":2.449489742783178},"474":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"171":{"tf":1.0},"205":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"358":{"tf":2.449489742783178},"50":{"tf":1.0},"99":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"236":{"tf":1.0},"35":{"tf":1.0}}}},"x":{"df":10,"docs":{"128":{"tf":1.0},"146":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"235":{"tf":2.0},"32":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"296":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"384":{"tf":1.0},"500":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":6,"docs":{"11":{"tf":1.4142135623730951},"208":{"tf":1.0},"310":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"311":{"tf":1.0}},"p":{"df":1,"docs":{"372":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"398":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":10,"docs":{"128":{"tf":1.0},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":2.0},"457":{"tf":1.0},"469":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"327":{"tf":1.0},"65":{"tf":1.0}},"s":{"df":2,"docs":{"26":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":40,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"164":{"tf":1.7320508075688772},"177":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"268":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"359":{"tf":1.4142135623730951},"362":{"tf":1.0},"398":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.4142135623730951},"43":{"tf":1.0},"436":{"tf":1.0},"444":{"tf":1.0},"457":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":6,"docs":{"200":{"tf":1.0},"343":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":2.449489742783178},"421":{"tf":1.0},"83":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"445":{"tf":1.0}}}}},"k":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"254":{"tf":1.4142135623730951},"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"140":{"tf":1.4142135623730951},"24":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"58":{"tf":2.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}},"t":{"df":13,"docs":{"204":{"tf":1.0},"254":{"tf":1.0},"306":{"tf":1.0},"33":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"486":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}}}},"df":16,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"116":{"tf":1.0},"207":{"tf":1.0},"222":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"382":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"422":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"208":{"tf":1.0},"48":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"14":{"tf":1.0},"244":{"tf":1.0},"273":{"tf":1.0},"379":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"341":{"tf":1.0},"425":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"2":{"tf":1.0},"9":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"212":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0},"61":{"tf":1.0}}}},"df":10,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"32":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"45":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"102":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"85":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"179":{"tf":1.0},"235":{"tf":1.0},"255":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"455":{"tf":1.0},"462":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"204":{"tf":1.4142135623730951},"416":{"tf":1.0},"418":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":4,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"83":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":7,"docs":{"199":{"tf":1.0},"206":{"tf":1.4142135623730951},"281":{"tf":1.0},"312":{"tf":1.0},"355":{"tf":1.7320508075688772},"452":{"tf":1.0},"504":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"442":{"tf":1.0},"469":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"398":{"tf":1.0},"469":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"161":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"425":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"284":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0}}}}},"l":{"df":15,"docs":{"104":{"tf":1.0},"153":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"219":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":1.4142135623730951},"258":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"33":{"tf":1.0},"382":{"tf":2.23606797749979},"421":{"tf":1.0},"83":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":5,"docs":{"119":{"tf":1.0},"161":{"tf":1.0},"205":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0}}}}},"n":{"c":{"df":3,"docs":{"164":{"tf":3.0},"358":{"tf":7.0},"359":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"12":{"tf":1.0}}},"df":76,"docs":{"1":{"tf":1.4142135623730951},"12":{"tf":2.449489742783178},"120":{"tf":1.0},"128":{"tf":2.8284271247461903},"130":{"tf":1.0},"147":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.0},"164":{"tf":2.23606797749979},"165":{"tf":1.7320508075688772},"179":{"tf":2.0},"196":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":2.0},"208":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"253":{"tf":1.4142135623730951},"272":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.449489742783178},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"316":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"353":{"tf":1.0},"355":{"tf":2.0},"358":{"tf":7.3484692283495345},"359":{"tf":2.23606797749979},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"372":{"tf":2.449489742783178},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":2.0},"421":{"tf":1.0},"43":{"tf":2.449489742783178},"44":{"tf":1.0},"444":{"tf":1.0},"45":{"tf":2.23606797749979},"453":{"tf":2.23606797749979},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.7320508075688772},"457":{"tf":2.449489742783178},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":2.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"157":{"tf":1.0},"262":{"tf":1.0}}}}}}},"df":9,"docs":{"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"269":{"tf":1.0},"297":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"422":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"204":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.4142135623730951},"83":{"tf":1.0},"9":{"tf":1.7320508075688772},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"151":{"tf":1.0},"201":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"355":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":70,"docs":{"1":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.7320508075688772},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.7320508075688772},"275":{"tf":1.0},"291":{"tf":2.0},"292":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.0},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"374":{"tf":1.0},"378":{"tf":1.4142135623730951},"380":{"tf":1.0},"393":{"tf":1.4142135623730951},"399":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.7320508075688772},"419":{"tf":1.0},"421":{"tf":1.4142135623730951},"427":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"452":{"tf":1.4142135623730951},"463":{"tf":1.0},"467":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"509":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"212":{"tf":1.0}}}}}},"g":{"a":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":2,"docs":{"180":{"tf":1.0},"183":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"384":{"tf":1.0},"504":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"231":{"tf":1.0},"422":{"tf":1.0}}}},"p":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"196":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"452":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"394":{"tf":1.0},"416":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":54,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"122":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"179":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.7320508075688772},"277":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"36":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"395":{"tf":1.0},"398":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"443":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"482":{"tf":2.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":10,"docs":{"143":{"tf":1.4142135623730951},"146":{"tf":2.0},"148":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"284":{"tf":1.7320508075688772},"308":{"tf":1.4142135623730951},"312":{"tf":1.0},"47":{"tf":2.8284271247461903}},"s":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"131":{"tf":1.0},"140":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"472":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":1.0},"54":{"tf":1.0}}}},"i":{"b":{"df":3,"docs":{"358":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":4,"docs":{"244":{"tf":1.4142135623730951},"250":{"tf":1.0},"268":{"tf":1.0},"481":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"143":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"313":{"tf":1.0},"343":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"70":{"tf":1.0}},"n":{"df":29,"docs":{"11":{"tf":1.0},"129":{"tf":1.0},"153":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.7320508075688772},"222":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"34":{"tf":1.0},"358":{"tf":2.8284271247461903},"362":{"tf":1.4142135623730951},"367":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":2,"docs":{"164":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"209":{"tf":1.0},"276":{"tf":1.0},"325":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.0}}}},"df":10,"docs":{"129":{"tf":1.0},"183":{"tf":1.0},"215":{"tf":1.0},"277":{"tf":1.0},"291":{"tf":1.0},"355":{"tf":1.0},"452":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"o":{"d":{"df":9,"docs":{"157":{"tf":1.0},"232":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"307":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"146":{"tf":1.0},"340":{"tf":1.0}}}}}},"v":{"1":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"365":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.7320508075688772},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"183":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"312":{"tf":3.0},"313":{"tf":2.23606797749979},"321":{"tf":1.0},"322":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.0},"442":{"tf":1.0},"449":{"tf":1.0},"466":{"tf":1.0}}}}}}},"r":{"a":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"a":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"130":{"tf":1.0},"421":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"452":{"tf":1.4142135623730951},"474":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"206":{"tf":1.0},"222":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"439":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"442":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":13,"docs":{"126":{"tf":1.0},"212":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"305":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"382":{"tf":1.0}}}},"w":{"df":2,"docs":{"179":{"tf":1.0},"367":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"188":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"204":{"tf":1.0},"232":{"tf":1.0},"305":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":3,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"245":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"209":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":2,"docs":{"232":{"tf":1.0},"312":{"tf":1.0}}},"v":{"df":1,"docs":{"134":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"130":{"tf":1.0},"297":{"tf":1.0},"329":{"tf":1.0}},"l":{"df":9,"docs":{"118":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"312":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"140":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0},"388":{"tf":1.0},"422":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"178":{"tf":1.0},"401":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"151":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}},"i":{"df":1,"docs":{"416":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{">":{"/":{"df":0,"docs":{},"k":{"a":{"d":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"129":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"33":{"tf":1.4142135623730951},"355":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":2.23606797749979},"44":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"72":{"tf":2.0},"95":{"tf":1.0}},"e":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":22,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"385":{"tf":1.0},"422":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"141":{"tf":1.0},"146":{"tf":2.23606797749979},"149":{"tf":2.0},"158":{"tf":1.0},"281":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"358":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"358":{"tf":2.23606797749979},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":16,"docs":{"164":{"tf":1.0},"355":{"tf":1.4142135623730951},"496":{"tf":2.23606797749979},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"502":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"165":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"361":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"l":{"d":{"df":3,"docs":{"207":{"tf":1.0},"312":{"tf":1.4142135623730951},"5":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":11,"docs":{"145":{"tf":1.0},"161":{"tf":1.0},"207":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"425":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"465":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":2.0}}}}}},"n":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"140":{"tf":1.0}}},"df":24,"docs":{"125":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"157":{"tf":1.0},"161":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.7320508075688772},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"50":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"470":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"341":{"tf":1.0},"343":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":12,"docs":{"179":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"227":{"tf":1.0},"325":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"41":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"487":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"13":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"370":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"473":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"235":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"166":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"232":{"tf":1.0},"424":{"tf":1.0},"468":{"tf":1.0},"481":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"449":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"158":{"tf":1.0},"412":{"tf":1.0}},"i":{"df":5,"docs":{"146":{"tf":2.23606797749979},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"127":{"tf":1.0},"165":{"tf":1.7320508075688772},"181":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"122":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"313":{"tf":1.0},"368":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"419":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"178":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"401":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"178":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"439":{"tf":1.0},"452":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}},"df":29,"docs":{"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"200":{"tf":1.0},"353":{"tf":2.6457513110645907},"354":{"tf":1.7320508075688772},"355":{"tf":3.1622776601683795},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":5.0990195135927845},"359":{"tf":2.449489742783178},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":1.7320508075688772},"384":{"tf":1.0},"453":{"tf":2.23606797749979},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.7320508075688772},"457":{"tf":2.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"64":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"428":{"tf":1.4142135623730951},"429":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"438":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.7320508075688772}},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"296":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"3":{"7":{"7":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"4":{"7":{"5":{"8":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"8":{"5":{"df":2,"docs":{"289":{"tf":1.0},"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"3":{"9":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"130":{"tf":1.0},"146":{"tf":1.0},"479":{"tf":1.0},"500":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"509":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"3":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"0":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"383":{"tf":1.0}}},"6":{"df":1,"docs":{"358":{"tf":1.0}}},"7":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"/":{"#":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"9":{"1":{"%":{"a":{"0":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{".":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"6":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"3":{"df":0,"docs":{},"q":{"?":{"df":0,"docs":{},"t":{"=":{"5":{"2":{"6":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":47,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"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.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"235":{"tf":1.0},"3":{"tf":1.7320508075688772},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"411":{"tf":1.0},"424":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.0}}}}}}},"i":{"'":{"d":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"157":{"tf":1.0},"262":{"tf":1.0}}}},".":{"df":8,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"358":{"tf":1.4142135623730951},"386":{"tf":1.0}}}},"3":{"2":{"df":2,"docs":{"164":{"tf":2.8284271247461903},"358":{"tf":9.273618495495704}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"358":{"tf":8.246211251235321},"359":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":10,"docs":{"104":{"tf":2.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"358":{"tf":1.4142135623730951},"384":{"tf":1.0},"469":{"tf":1.4142135623730951},"483":{"tf":1.0},"487":{"tf":1.0}},"e":{"a":{"df":5,"docs":{"13":{"tf":1.0},"355":{"tf":1.0},"425":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0}},"l":{"df":8,"docs":{"200":{"tf":1.0},"208":{"tf":1.0},"277":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"108":{"tf":1.0},"122":{"tf":1.0},"24":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"312":{"tf":2.6457513110645907},"313":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.1622776601683795},"39":{"tf":1.0},"43":{"tf":1.0},"50":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":16,"docs":{"102":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"235":{"tf":1.0},"254":{"tf":1.0},"269":{"tf":1.0},"301":{"tf":1.0},"358":{"tf":2.23606797749979},"42":{"tf":1.0},"446":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"108":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"384":{"tf":1.0}}}}}},"i":{"df":3,"docs":{"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0}},"i":{"df":3,"docs":{"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"208":{"tf":1.0},"209":{"tf":1.0},"422":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"374":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":1,"docs":{"94":{"tf":1.0}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":23,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"14":{"tf":1.7320508075688772},"169":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"291":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.4142135623730951},"423":{"tf":1.0},"455":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"490":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":89,"docs":{"0":{"tf":1.0},"100":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":2.0},"151":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":2.0},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"27":{"tf":1.0},"285":{"tf":1.4142135623730951},"3":{"tf":1.0},"310":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.0},"355":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"378":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"441":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"456":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.4142135623730951}}}}}}}}},"i":{"c":{"df":2,"docs":{"14":{"tf":1.0},"388":{"tf":1.0}}},"df":2,"docs":{"199":{"tf":1.0},"47":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"468":{"tf":1.0}}}}}}},"df":22,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"164":{"tf":2.0},"170":{"tf":1.0},"195":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"318":{"tf":1.0},"384":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"47":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"183":{"tf":1.0}},"s":{"df":4,"docs":{"127":{"tf":1.0},"200":{"tf":1.0},"341":{"tf":1.0},"385":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"481":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":52,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"239":{"tf":1.0},"275":{"tf":2.23606797749979},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"380":{"tf":2.0},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"433":{"tf":1.0},"444":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"58":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"262":{"tf":1.0}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"235":{"tf":1.0},"325":{"tf":1.0},"398":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"473":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"207":{"tf":1.0},"421":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":2.0},"146":{"tf":1.7320508075688772},"178":{"tf":1.0},"18":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"245":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"283":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"441":{"tf":1.0},"455":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"483":{"tf":1.0},"51":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":2.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":6,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"324":{"tf":1.0},"398":{"tf":1.7320508075688772}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"398":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":43,"docs":{"110":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"153":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"214":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"235":{"tf":1.0},"258":{"tf":1.0},"327":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":2.0},"375":{"tf":1.7320508075688772},"398":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"429":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.4142135623730951},"455":{"tf":1.0},"469":{"tf":1.0},"481":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"310":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"209":{"tf":1.0},"23":{"tf":1.0},"34":{"tf":1.7320508075688772},"358":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"140":{"tf":1.0},"178":{"tf":1.0},"337":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"207":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"205":{"tf":1.0},"441":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":12,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":3.605551275463989},"140":{"tf":2.449489742783178},"205":{"tf":1.4142135623730951},"222":{"tf":1.0},"449":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"i":{"c":{"df":15,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"255":{"tf":1.0},"269":{"tf":1.7320508075688772},"341":{"tf":1.0},"358":{"tf":3.605551275463989},"384":{"tf":1.0},"398":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":14,"docs":{"104":{"tf":1.0},"2":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.7320508075688772},"219":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"268":{"tf":1.0},"310":{"tf":1.0},"327":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}},"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":2,"docs":{"355":{"tf":1.0},"424":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"358":{"tf":1.4142135623730951},"384":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"398":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"398":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"396":{"tf":1.0},"398":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":3,"docs":{"104":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.0},"209":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"312":{"tf":1.0},"471":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"215":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"250":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"362":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":2.0},"407":{"tf":1.0},"413":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"12":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":2.0},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"66":{"tf":2.0}}}}},"k":{"!":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"175":{"tf":1.0},"176":{"tf":1.0},"187":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"180":{"tf":2.6457513110645907},"181":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"200":{"tf":2.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.4142135623730951},"33":{"tf":1.0},"358":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":2.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"d":{"df":19,"docs":{"159":{"tf":2.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.7320508075688772},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"66":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"165":{"tf":1.4142135623730951},"26":{"tf":1.0},"272":{"tf":1.0},"421":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":14,"docs":{"196":{"tf":1.0},"204":{"tf":4.0},"205":{"tf":2.0},"206":{"tf":2.449489742783178},"207":{"tf":2.6457513110645907},"208":{"tf":2.8284271247461903},"209":{"tf":2.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"222":{"tf":2.0},"223":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"165":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"209":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":2.449489742783178}}}}}}}},"t":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"204":{"tf":1.0},"255":{"tf":1.0},"328":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.3166247903554},"398":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.4142135623730951},"469":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"204":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"309":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"457":{"tf":1.0}},"r":{"df":12,"docs":{"164":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"27":{"tf":1.0},"315":{"tf":1.0},"416":{"tf":1.0},"430":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"n":{"d":{"df":6,"docs":{"208":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"41":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.0},"41":{"tf":1.0}}},"t":{"df":1,"docs":{"422":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"179":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"416":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.0},"144":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"382":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.7320508075688772},"5":{"tf":1.0}}}}},"f":{"a":{"c":{"df":33,"docs":{"179":{"tf":1.4142135623730951},"184":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":2.6457513110645907},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"288":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.0},"411":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.0},"491":{"tf":1.0},"64":{"tf":2.449489742783178},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"199":{"tf":1.0},"406":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"206":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}},"l":{"a":{"c":{"df":3,"docs":{"205":{"tf":2.0},"206":{"tf":1.0},"209":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"205":{"tf":2.0},"206":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"205":{"tf":1.7320508075688772},"208":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":2,"docs":{"360":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"32":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"200":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.0},"498":{"tf":1.0},"96":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"201":{"tf":1.0},"469":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":42,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.4142135623730951},"358":{"tf":1.0},"374":{"tf":2.0},"398":{"tf":1.0},"400":{"tf":1.4142135623730951},"418":{"tf":2.0},"453":{"tf":2.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"492":{"tf":1.0},"498":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}},"t":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"265":{"tf":1.0},"308":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"140":{"tf":1.0},"179":{"tf":1.0},"277":{"tf":1.4142135623730951},"284":{"tf":1.0},"358":{"tf":2.23606797749979},"384":{"tf":1.4142135623730951},"415":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"372":{"tf":1.0},"398":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"200":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":11,"docs":{"119":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"312":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"416":{"tf":1.0},"464":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"232":{"tf":1.0},"235":{"tf":2.449489742783178},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":9,"docs":{"154":{"tf":1.0},"155":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"389":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"256":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"472":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"310":{"tf":1.0},"352":{"tf":1.0},"505":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"395":{"tf":1.0},"398":{"tf":1.0}}},"df":0,"docs":{}}},"df":22,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"312":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"444":{"tf":1.0},"462":{"tf":1.0},"481":{"tf":1.0},"502":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}}}},"t":{"'":{"df":16,"docs":{"128":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"312":{"tf":1.0},"385":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"41":{"tf":1.0},"418":{"tf":1.0},"468":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}}}},"df":11,"docs":{"206":{"tf":1.7320508075688772},"224":{"tf":1.0},"3":{"tf":1.0},"341":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":2.0},"385":{"tf":2.0},"42":{"tf":2.449489742783178},"455":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"r":{"df":3,"docs":{"153":{"tf":1.0},"200":{"tf":1.0},"258":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":16,"docs":{"147":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"199":{"tf":1.0},"223":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"422":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"df":3,"docs":{"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0}}},"x":{"df":2,"docs":{"327":{"tf":1.0},"328":{"tf":1.0}}},"z":{"df":1,"docs":{"385":{"tf":1.0}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"293":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"14":{"tf":1.0},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"245":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"b":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"230":{"tf":1.0},"264":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"235":{"tf":1.0},"268":{"tf":1.0},"296":{"tf":1.0},"329":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"296":{"tf":1.0}}}}}}},"n":{"a":{"df":2,"docs":{"394":{"tf":1.0},"416":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"118":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"208":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"216":{"tf":1.0},"230":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"364":{"tf":1.0},"399":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"196":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"165":{"tf":1.0}},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}}},"k":{"+":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"253":{"tf":1.7320508075688772},"256":{"tf":1.0},"258":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"129":{"tf":1.0},"145":{"tf":1.0},"167":{"tf":1.0},"209":{"tf":1.0},"296":{"tf":1.0},"384":{"tf":1.0},"460":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"191":{"tf":1.0},"256":{"tf":1.0},"51":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"358":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":3.605551275463989}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":32,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":2.8284271247461903},"151":{"tf":2.0},"153":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.7320508075688772},"253":{"tf":2.449489742783178},"256":{"tf":2.0},"258":{"tf":1.4142135623730951},"277":{"tf":1.0},"358":{"tf":5.916079783099616},"382":{"tf":2.8284271247461903},"384":{"tf":4.47213595499958},"386":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.7320508075688772},"48":{"tf":2.6457513110645907},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":2.0},"487":{"tf":1.0},"492":{"tf":1.0},"498":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":2.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"358":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"245":{"tf":1.0}}}},"b":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"153":{"tf":1.0},"258":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"164":{"tf":1.0},"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"129":{"tf":1.4142135623730951},"143":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"194":{"tf":1.0},"258":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"86":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"129":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"221":{"tf":1.0},"256":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"35":{"tf":1.0},"358":{"tf":2.0},"422":{"tf":1.0},"45":{"tf":1.0},"498":{"tf":1.4142135623730951},"50":{"tf":1.0},"64":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"141":{"tf":1.0},"248":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"380":{"tf":1.0},"496":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"m":{"df":5,"docs":{"184":{"tf":1.0},"297":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":3.0},"9":{"tf":3.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"453":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"a":{"'":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.0}}},"df":33,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"3":{"tf":1.4142135623730951},"303":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":3.0},"322":{"tf":1.0},"382":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"ö":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"1":{"7":{"6":{"2":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"179":{"tf":1.0}}},"2":{"df":1,"docs":{"194":{"tf":1.0}}},"3":{"4":{"0":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"7":{"5":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"c":{"1":{"5":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"245":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"188":{"tf":1.0},"235":{"tf":1.0},"277":{"tf":1.0},"358":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"161":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"358":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":17,"docs":{"126":{"tf":1.0},"134":{"tf":1.0},"151":{"tf":1.4142135623730951},"183":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"312":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"419":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"175":{"tf":1.0},"179":{"tf":1.0},"313":{"tf":1.0},"358":{"tf":1.4142135623730951},"424":{"tf":1.0},"442":{"tf":1.4142135623730951},"50":{"tf":1.0},"501":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"408":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}}}}}}},"df":13,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"149":{"tf":1.0},"161":{"tf":1.0},"188":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"384":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"470":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.0}},"n":{"c":{"df":2,"docs":{"208":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":9,"docs":{"131":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.0},"422":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"436":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":4,"docs":{"106":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"500":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"126":{"tf":1.0},"210":{"tf":1.0},"273":{"tf":1.0},"284":{"tf":1.0},"304":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"27":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"120":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"372":{"tf":1.0}},"e":{"a":{"d":{"df":18,"docs":{"14":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"193":{"tf":1.0},"206":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"455":{"tf":1.0},"473":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"205":{"tf":1.0},"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"205":{"tf":1.7320508075688772},"208":{"tf":2.23606797749979},"214":{"tf":1.0},"418":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":2,"docs":{"102":{"tf":1.0},"106":{"tf":2.0}}},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"180":{"tf":1.0}}}},"s":{"df":14,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"277":{"tf":2.0},"278":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":2.449489742783178}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"204":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{">":{"1":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"b":{"1":{"2":{"8":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"343":{"tf":1.0}}},"2":{"df":1,"docs":{"343":{"tf":1.0}}},"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"430":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"372":{"tf":1.0}}},"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"372":{"tf":1.0}}},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"372":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"421":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"60":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"161":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":2.0},"167":{"tf":1.0},"171":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":1,"docs":{"486":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":8,"docs":{"125":{"tf":1.0},"205":{"tf":1.0},"254":{"tf":1.7320508075688772},"340":{"tf":1.0},"343":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"372":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"200":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.7320508075688772},"232":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"312":{"tf":1.0},"328":{"tf":1.0},"358":{"tf":1.0},"374":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"372":{"tf":1.0}}},"df":2,"docs":{"372":{"tf":1.0},"398":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"144":{"tf":1.0},"209":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"342":{"tf":1.0},"41":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"127":{"tf":1.0},"29":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}}},"df":1,"docs":{"374":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":3,"docs":{"151":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":1,"docs":{"421":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"432":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"207":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"165":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":21,"docs":{"149":{"tf":1.0},"153":{"tf":1.0},"250":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"318":{"tf":1.0},"380":{"tf":2.0},"381":{"tf":1.4142135623730951},"382":{"tf":2.449489742783178},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"456":{"tf":1.0},"470":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"232":{"tf":1.0},"269":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":31,"docs":{"126":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":3.0},"191":{"tf":1.4142135623730951},"199":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"256":{"tf":1.0},"272":{"tf":1.0},"313":{"tf":1.0},"358":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"388":{"tf":1.0},"455":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.0},"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"179":{"tf":1.0},"375":{"tf":1.7320508075688772},"377":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"df":6,"docs":{"372":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"98":{"tf":1.0}}},"k":{"df":9,"docs":{"1":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.4142135623730951},"147":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"253":{"tf":1.0},"42":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"16":{"tf":1.0},"164":{"tf":1.0},"184":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.4142135623730951},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"269":{"tf":1.0},"307":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":2.23606797749979},"382":{"tf":1.4142135623730951},"386":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":7,"docs":{"128":{"tf":1.0},"239":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.0},"318":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951}}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":5,"docs":{"130":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"497":{"tf":1.0},"500":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"358":{"tf":1.4142135623730951},"382":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":19,"docs":{"117":{"tf":1.0},"238":{"tf":1.0},"296":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"358":{"tf":3.1622776601683795},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":4.58257569495584},"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}}}},"df":0,"docs":{},"k":{"df":20,"docs":{"199":{"tf":1.0},"275":{"tf":2.23606797749979},"276":{"tf":2.23606797749979},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":2.449489742783178},"282":{"tf":3.3166247903554},"283":{"tf":1.7320508075688772},"284":{"tf":2.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"312":{"tf":2.0},"406":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"df":3,"docs":{"130":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0}},"i":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":24,"docs":{"161":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.0},"272":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"358":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.4142135623730951},"444":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":1,"docs":{"430":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":22,"docs":{"143":{"tf":1.0},"151":{"tf":1.0},"180":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"232":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"415":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"223":{"tf":1.0},"277":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.4142135623730951},"386":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"500":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"429":{"tf":1.0},"486":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.0}}}}},"p":{"df":1,"docs":{"343":{"tf":1.0}}},"s":{"df":2,"docs":{"252":{"tf":1.0},"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"444":{"tf":1.0}}},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"t":{"df":1,"docs":{"252":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"df":13,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"180":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"342":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"232":{"tf":1.0},"3":{"tf":1.4142135623730951},"329":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"465":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"199":{"tf":1.0},"305":{"tf":1.0},"358":{"tf":3.4641016151377544},"455":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":14,"docs":{"125":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"184":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"312":{"tf":1.0},"356":{"tf":1.0},"442":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"112":{"tf":1.0},"122":{"tf":1.0},"149":{"tf":2.0},"202":{"tf":1.0},"384":{"tf":2.23606797749979},"386":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"61":{"tf":1.0},"83":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"297":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":25,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"188":{"tf":1.4142135623730951},"2":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"390":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"250":{"tf":1.7320508075688772},"270":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"402":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"183":{"tf":1.4142135623730951},"195":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"423":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":62,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"119":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"325":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"341":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"377":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":2.23606797749979},"386":{"tf":1.0},"398":{"tf":1.4142135623730951},"401":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.4142135623730951},"501":{"tf":1.0},"505":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"502":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"386":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"504":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.4142135623730951},"188":{"tf":1.0},"200":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.7320508075688772},"240":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"278":{"tf":1.7320508075688772},"281":{"tf":2.23606797749979},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"311":{"tf":1.0},"328":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"266":{"tf":1.0},"268":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"209":{"tf":1.0},"252":{"tf":1.0},"343":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":24,"docs":{"100":{"tf":1.4142135623730951},"161":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.7320508075688772},"180":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.4142135623730951},"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"245":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"418":{"tf":1.0},"442":{"tf":1.0},"455":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"268":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"205":{"tf":2.0},"216":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"100":{"tf":1.0},"132":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"<":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":10,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"177":{"tf":1.0},"184":{"tf":2.0},"189":{"tf":1.0},"209":{"tf":1.4142135623730951},"24":{"tf":1.0},"35":{"tf":1.0},"472":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}}}}},"k":{"df":1,"docs":{"58":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"14":{"tf":1.0},"200":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"417":{"tf":1.0},"421":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}},"df":30,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"416":{"tf":2.6457513110645907},"417":{"tf":2.0},"418":{"tf":3.3166247903554},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":3.872983346207417},"422":{"tf":2.8284271247461903},"423":{"tf":2.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"205":{"tf":2.0},"206":{"tf":3.872983346207417},"209":{"tf":6.6332495807108}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"104":{"tf":1.0},"179":{"tf":1.0},"32":{"tf":1.0},"327":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":47,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"263":{"tf":1.4142135623730951},"275":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"322":{"tf":1.4142135623730951},"339":{"tf":1.0},"352":{"tf":1.4142135623730951},"380":{"tf":1.0},"393":{"tf":1.4142135623730951},"399":{"tf":1.0},"415":{"tf":1.4142135623730951},"427":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"452":{"tf":1.4142135623730951},"463":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"509":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}}}},"x":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"372":{"tf":1.0},"422":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"305":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":20,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"254":{"tf":1.0},"329":{"tf":1.4142135623730951},"365":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"418":{"tf":1.0},"421":{"tf":2.0},"422":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}},"y":{"b":{"df":5,"docs":{"153":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"285":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":3.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"df":1,"docs":{"98":{"tf":1.0}},"m":{"df":17,"docs":{"399":{"tf":2.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":25,"docs":{"128":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.0},"179":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"227":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.4142135623730951},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"470":{"tf":1.4142135623730951},"486":{"tf":1.0}},"t":{"df":3,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"328":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.0},"398":{"tf":1.0},"422":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":69,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"244":{"tf":1.0},"252":{"tf":1.4142135623730951},"256":{"tf":2.8284271247461903},"258":{"tf":1.0},"275":{"tf":2.23606797749979},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"325":{"tf":1.0},"366":{"tf":1.4142135623730951},"391":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"416":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"473":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"429":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"165":{"tf":1.0},"232":{"tf":1.0},"328":{"tf":1.0},"422":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"268":{"tf":2.449489742783178},"269":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"329":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":25,"docs":{"140":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":2.0},"354":{"tf":1.0},"355":{"tf":2.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":5.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"386":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":2.23606797749979},"500":{"tf":3.3166247903554},"501":{"tf":1.7320508075688772},"509":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"245":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"145":{"tf":1.0},"375":{"tf":1.0},"384":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}},"g":{"df":8,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"265":{"tf":1.0},"413":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"k":{"df":0,"docs":{},"l":{"df":10,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"129":{"tf":1.4142135623730951},"179":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":14,"docs":{"140":{"tf":1.0},"193":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":2.449489742783178},"222":{"tf":2.6457513110645907},"223":{"tf":2.0},"224":{"tf":1.4142135623730951},"254":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":2.6457513110645907},"72":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":27,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"102":{"tf":3.0},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"95":{"tf":2.449489742783178},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.8284271247461903},"99":{"tf":3.3166247903554}},"v":{"1":{"4":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":3,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"358":{"tf":1.4142135623730951}}},"df":1,"docs":{"325":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"197":{"tf":1.4142135623730951},"23":{"tf":1.0},"358":{"tf":1.4142135623730951},"38":{"tf":1.0},"51":{"tf":3.1622776601683795},"52":{"tf":1.4142135623730951},"53":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"b":{"df":4,"docs":{"384":{"tf":1.0},"385":{"tf":2.23606797749979},"498":{"tf":1.0},"500":{"tf":1.0}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"158":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"211":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"265":{"tf":1.0},"275":{"tf":1.0},"283":{"tf":2.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.23606797749979},"311":{"tf":1.7320508075688772},"312":{"tf":2.8284271247461903},"313":{"tf":2.0},"399":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"406":{"tf":2.23606797749979},"411":{"tf":1.0},"413":{"tf":1.0},"468":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.0}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"145":{"tf":1.0}}},"df":1,"docs":{"429":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":29,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"128":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"303":{"tf":2.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"504":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"303":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"1":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"431":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}},"u":{"df":1,"docs":{"146":{"tf":1.0}},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"422":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":5,"docs":{"127":{"tf":1.0},"180":{"tf":1.0},"209":{"tf":1.0},"239":{"tf":1.0},"384":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"415":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"364":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"11":{"tf":1.0},"131":{"tf":1.0},"18":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"df":2,"docs":{"469":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":2,"docs":{"406":{"tf":1.0},"414":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"11":{"tf":1.0}}},"df":44,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":2.0},"12":{"tf":1.4142135623730951},"175":{"tf":1.0},"184":{"tf":1.4142135623730951},"196":{"tf":1.0},"200":{"tf":1.4142135623730951},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":2.0},"367":{"tf":1.0},"370":{"tf":1.4142135623730951},"375":{"tf":1.0},"377":{"tf":2.0},"418":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"455":{"tf":1.0},"463":{"tf":2.23606797749979},"464":{"tf":1.7320508075688772},"465":{"tf":2.8284271247461903},"466":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":2.0},"469":{"tf":2.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":32,"docs":{"1":{"tf":1.0},"272":{"tf":1.0},"427":{"tf":2.23606797749979},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":2.23606797749979},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.0},"72":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"9":{"tf":1.0}},"i":{"df":16,"docs":{"127":{"tf":1.0},"14":{"tf":1.4142135623730951},"238":{"tf":1.0},"250":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"349":{"tf":1.4142135623730951},"358":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":1.0},"501":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"165":{"tf":1.4142135623730951},"266":{"tf":1.0},"272":{"tf":1.0},"413":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.0},"255":{"tf":1.0},"470":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"179":{"tf":1.0},"18":{"tf":1.0},"210":{"tf":1.0},"455":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"188":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":2.0},"311":{"tf":1.0},"423":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":67,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"34":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"377":{"tf":1.0},"384":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"411":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0},"423":{"tf":1.0},"431":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.4142135623730951},"465":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"490":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":68,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"275":{"tf":1.0},"277":{"tf":1.4142135623730951},"292":{"tf":1.0},"294":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"323":{"tf":1.0},"325":{"tf":1.7320508075688772},"339":{"tf":1.0},"341":{"tf":1.7320508075688772},"343":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.4142135623730951},"380":{"tf":1.0},"382":{"tf":1.4142135623730951},"394":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.7320508075688772},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"427":{"tf":1.0},"429":{"tf":1.4142135623730951},"440":{"tf":1.0},"442":{"tf":1.4142135623730951},"453":{"tf":1.0},"455":{"tf":1.4142135623730951},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"482":{"tf":1.0},"484":{"tf":1.4142135623730951},"496":{"tf":1.0},"498":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":17,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"172":{"tf":1.0},"215":{"tf":1.0},"231":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"320":{"tf":1.0},"321":{"tf":1.0},"355":{"tf":1.0},"415":{"tf":1.4142135623730951},"423":{"tf":1.0},"496":{"tf":1.0},"504":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":2.449489742783178}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"308":{"tf":1.0},"358":{"tf":1.0},"374":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":9,"docs":{"161":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"205":{"tf":1.0},"223":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.4142135623730951},"401":{"tf":1.0},"444":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"341":{"tf":1.0}}}},"i":{"df":3,"docs":{"205":{"tf":1.0},"208":{"tf":1.0},"421":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.4142135623730951},"312":{"tf":1.0}}}},"df":1,"docs":{"44":{"tf":1.0}}}}},"n":{"+":{"1":{"df":2,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"/":{"3":{"df":3,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}},"8":{"df":1,"docs":{"33":{"tf":1.0}}},"a":{"df":8,"docs":{"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"408":{"tf":1.4142135623730951},"437":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0}}},"df":0,"docs":{}},"=":{"3":{"df":0,"docs":{},"f":{"+":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"3":{"df":2,"docs":{"125":{"tf":1.0},"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"122":{"tf":1.0},"128":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"122":{"tf":1.0},"140":{"tf":1.0},"355":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"148":{"tf":1.4142135623730951},"164":{"tf":1.0},"208":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.0},"310":{"tf":1.0},"358":{"tf":2.23606797749979},"359":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"13":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"199":{"tf":1.0},"498":{"tf":2.23606797749979},"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"398":{"tf":1.4142135623730951},"421":{"tf":1.0},"98":{"tf":1.0}}}}},"y":{"df":2,"docs":{"429":{"tf":1.0},"433":{"tf":1.0}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"126":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":2.23606797749979},"372":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"180":{"tf":1.0},"204":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"134":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.0},"26":{"tf":1.0},"304":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"469":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.4142135623730951},"94":{"tf":1.0},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"341":{"tf":1.0}}}}}}},"df":3,"docs":{"295":{"tf":1.0},"374":{"tf":1.0},"382":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"421":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":69,"docs":{"11":{"tf":1.4142135623730951},"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.7320508075688772},"241":{"tf":1.0},"250":{"tf":2.0},"255":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":2.0},"312":{"tf":2.23606797749979},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.7320508075688772},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.4142135623730951},"374":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.4142135623730951},"398":{"tf":1.0},"401":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"487":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"14":{"tf":1.0},"18":{"tf":1.0},"455":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"114":{"tf":1.0},"153":{"tf":1.0},"193":{"tf":1.0},"258":{"tf":1.0},"362":{"tf":1.0},"504":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"441":{"tf":1.0},"444":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951}}}},"t":{"df":4,"docs":{"212":{"tf":1.0},"398":{"tf":1.0},"445":{"tf":1.0},"504":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"270":{"tf":1.0},"308":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"df":66,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":2.0},"258":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":2.0},"269":{"tf":1.0},"27":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"341":{"tf":1.0},"366":{"tf":1.0},"380":{"tf":2.23606797749979},"381":{"tf":1.4142135623730951},"382":{"tf":2.23606797749979},"383":{"tf":1.0},"384":{"tf":2.449489742783178},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"442":{"tf":2.6457513110645907},"444":{"tf":1.7320508075688772},"452":{"tf":1.0},"474":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":2.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"164":{"tf":1.0},"205":{"tf":1.0},"283":{"tf":1.4142135623730951},"289":{"tf":1.0},"358":{"tf":2.0},"54":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"208":{"tf":1.7320508075688772},"373":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":85,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.23606797749979},"140":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"167":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":2.23606797749979},"188":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.7320508075688772},"256":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":2.23606797749979},"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":2.0},"273":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.4142135623730951},"282":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":3.605551275463989},"359":{"tf":1.4142135623730951},"361":{"tf":1.0},"370":{"tf":1.0},"384":{"tf":1.7320508075688772},"400":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"417":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"468":{"tf":1.7320508075688772},"469":{"tf":2.0},"470":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"48":{"tf":1.0},"484":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"250":{"tf":1.0},"358":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":12,"docs":{"129":{"tf":1.0},"171":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"30":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":2.8284271247461903},"421":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"t":{"df":24,"docs":{"1":{"tf":2.0},"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"20":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":2.0},"4":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"307":{"tf":1.0}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":57,"docs":{"102":{"tf":3.1622776601683795},"105":{"tf":1.0},"106":{"tf":2.8284271247461903},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"143":{"tf":3.605551275463989},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.6457513110645907},"147":{"tf":2.23606797749979},"148":{"tf":1.7320508075688772},"149":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":2.0},"152":{"tf":1.0},"153":{"tf":2.449489742783178},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.6457513110645907},"232":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":2.8284271247461903},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":2.23606797749979},"258":{"tf":2.23606797749979},"312":{"tf":1.4142135623730951},"358":{"tf":1.0},"382":{"tf":2.6457513110645907},"384":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"412":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"191":{"tf":1.0},"206":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0}}}}},"n":{"df":15,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"358":{"tf":2.23606797749979},"421":{"tf":1.0}},"e":{"df":30,"docs":{"150":{"tf":1.0},"165":{"tf":1.4142135623730951},"173":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"246":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"338":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"358":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"47":{"tf":1.0},"480":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"160":{"tf":1.0},"165":{"tf":1.0},"222":{"tf":1.0},"414":{"tf":1.0}}}},"df":1,"docs":{"11":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"312":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"31":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":40,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"164":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.7320508075688772},"384":{"tf":1.7320508075688772},"386":{"tf":1.0},"398":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.4142135623730951},"429":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"51":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"296":{"tf":1.0}}}}}}}}},"i":{"c":{"df":3,"docs":{"140":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":15,"docs":{"209":{"tf":1.0},"339":{"tf":2.23606797749979},"340":{"tf":2.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.0},"343":{"tf":3.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0}},"i":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"222":{"tf":1.0},"223":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"223":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"v":{"a":{"df":2,"docs":{"436":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"b":{"df":5,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"323":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":11,"docs":{"161":{"tf":1.0},"179":{"tf":1.4142135623730951},"343":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"390":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0},"500":{"tf":1.0},"98":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"311":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"235":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":50,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"201":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":2.0},"219":{"tf":1.4142135623730951},"222":{"tf":2.449489742783178},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.7320508075688772},"256":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.3166247903554},"365":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"381":{"tf":1.0},"384":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"455":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":2.6457513110645907},"498":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"222":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"}":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"d":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"176":{"tf":1.0},"2":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"421":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"502":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"140":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"255":{"tf":1.0},"358":{"tf":1.4142135623730951},"362":{"tf":1.0},"382":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":4,"docs":{"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"235":{"tf":1.0},"355":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"235":{"tf":1.0}},"i":{"df":2,"docs":{"131":{"tf":1.0},"140":{"tf":2.23606797749979}}}},"r":{"df":7,"docs":{"205":{"tf":1.0},"305":{"tf":1.0},"374":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.4142135623730951},"449":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"33":{"tf":3.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.449489742783178},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"33":{"tf":1.7320508075688772},"42":{"tf":1.0}}}},"o":{"b":{"df":4,"docs":{"440":{"tf":1.0},"453":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":4,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"337":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"161":{"tf":1.0},"358":{"tf":1.0},"362":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"424":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"309":{"tf":1.0},"312":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":20,"docs":{"13":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"29":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.7320508075688772},"365":{"tf":1.0},"366":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"45":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"51":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":26,"docs":{"100":{"tf":1.7320508075688772},"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.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"48":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":2.8284271247461903}}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"208":{"tf":2.449489742783178},"372":{"tf":1.4142135623730951},"373":{"tf":1.7320508075688772},"375":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.0},"206":{"tf":1.7320508075688772},"222":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.4142135623730951},"146":{"tf":1.0},"158":{"tf":1.4142135623730951},"363":{"tf":1.0},"390":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"399":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"401":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":20,"docs":{"122":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"167":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"266":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.7320508075688772},"362":{"tf":1.0},"382":{"tf":1.0},"410":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"96":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":77,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"255":{"tf":1.7320508075688772},"258":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"325":{"tf":1.0},"327":{"tf":1.0},"339":{"tf":2.23606797749979},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":2.23606797749979},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"358":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"429":{"tf":1.4142135623730951},"433":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"498":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"504":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"201":{"tf":1.0},"209":{"tf":1.0},"250":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"b":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":5,"docs":{"200":{"tf":1.0},"218":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"486":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"179":{"tf":1.7320508075688772},"189":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"206":{"tf":1.4142135623730951},"223":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"340":{"tf":1.0},"452":{"tf":1.0},"60":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"16":{"tf":1.0},"308":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0}}}}}},"r":{"df":21,"docs":{"14":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"186":{"tf":1.0},"206":{"tf":2.449489742783178},"208":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"26":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"305":{"tf":1.0},"35":{"tf":1.0},"398":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.4142135623730951},"65":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"157":{"tf":1.0},"262":{"tf":1.0},"384":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"322":{"tf":1.0},"421":{"tf":1.0},"468":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":15,"docs":{"115":{"tf":1.0},"13":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"310":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"341":{"tf":1.0},"384":{"tf":1.0},"436":{"tf":1.0},"491":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0}},"t":{"df":2,"docs":{"179":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"209":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"486":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"126":{"tf":1.4142135623730951},"171":{"tf":1.0},"188":{"tf":1.0},"254":{"tf":1.0},"384":{"tf":2.449489742783178},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"500":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":44,"docs":{"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"126":{"tf":1.7320508075688772},"140":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":2.8284271247461903},"381":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"444":{"tf":1.4142135623730951},"471":{"tf":1.0},"486":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"267":{"tf":1.0},"268":{"tf":1.0},"298":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"177":{"tf":1.0},"206":{"tf":3.1622776601683795},"235":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"281":{"tf":1.7320508075688772},"312":{"tf":1.0},"341":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"438":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.23606797749979}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"254":{"tf":1.0},"272":{"tf":1.0},"308":{"tf":1.0},"327":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"205":{"tf":1.0},"277":{"tf":1.0},"375":{"tf":1.0},"406":{"tf":1.0},"469":{"tf":1.0},"492":{"tf":1.0},"52":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"22":{"tf":1.0},"498":{"tf":1.0}}}}},"df":16,"docs":{"111":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"296":{"tf":1.0},"358":{"tf":8.12403840463596},"363":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"47":{"tf":1.0},"501":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"31":{"tf":1.0},"398":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"48":{"tf":1.0},"51":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"119":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"268":{"tf":1.0},"358":{"tf":3.4641016151377544},"412":{"tf":1.0},"421":{"tf":1.0},"435":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"199":{"tf":1.0},"398":{"tf":1.4142135623730951},"445":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"80":{"tf":1.0}}}},"b":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}},"df":23,"docs":{"12":{"tf":1.0},"126":{"tf":1.0},"169":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"215":{"tf":1.0},"238":{"tf":1.0},"310":{"tf":1.4142135623730951},"355":{"tf":1.0},"365":{"tf":1.0},"372":{"tf":1.0},"384":{"tf":1.4142135623730951},"401":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"470":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":10,"docs":{"111":{"tf":1.7320508075688772},"127":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"410":{"tf":1.0},"422":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"128":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"312":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"481":{"tf":1.0}}},"o":{"a":{"d":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"196":{"tf":1.0},"204":{"tf":1.4142135623730951},"364":{"tf":1.0},"370":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"204":{"tf":2.0},"205":{"tf":1.7320508075688772},"206":{"tf":2.8284271247461903},"209":{"tf":4.69041575982343},"39":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":25,"docs":{"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.0},"209":{"tf":1.0},"23":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"482":{"tf":2.23606797749979},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"51":{"tf":2.23606797749979},"53":{"tf":1.0}}}}}}}}}},"y":{"df":1,"docs":{"95":{"tf":1.0}}}},"p":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"372":{"tf":1.0}}}},"0":{"df":1,"docs":{"209":{"tf":1.0}}},"1":{"df":1,"docs":{"209":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"{":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"372":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"130":{"tf":1.0}}}},"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":15,"docs":{"496":{"tf":2.23606797749979},"497":{"tf":1.0},"498":{"tf":2.23606797749979},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"61":{"tf":1.0}}}},"i":{"d":{"df":13,"docs":{"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"268":{"tf":1.0},"398":{"tf":1.7320508075688772},"463":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"472":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"245":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"444":{"tf":1.4142135623730951}}},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"235":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":49,"docs":{"102":{"tf":1.0},"157":{"tf":1.0},"175":{"tf":2.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":2.0},"262":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.7320508075688772},"281":{"tf":1.0},"296":{"tf":1.4142135623730951},"3":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":2.449489742783178},"319":{"tf":1.0},"328":{"tf":1.0},"401":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"441":{"tf":1.0},"444":{"tf":1.0},"449":{"tf":1.0},"469":{"tf":1.7320508075688772},"471":{"tf":2.6457513110645907},"472":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"253":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"281":{"tf":1.0}}},"(":{"1":{"0":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":95,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"178":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":2.6457513110645907},"210":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.4142135623730951},"250":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":2.23606797749979},"253":{"tf":2.0},"254":{"tf":2.6457513110645907},"255":{"tf":2.449489742783178},"256":{"tf":2.8284271247461903},"257":{"tf":1.0},"258":{"tf":2.449489742783178},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"272":{"tf":1.4142135623730951},"275":{"tf":2.23606797749979},"276":{"tf":2.8284271247461903},"277":{"tf":4.69041575982343},"278":{"tf":2.8284271247461903},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":4.242640687119285},"282":{"tf":3.4641016151377544},"283":{"tf":2.6457513110645907},"284":{"tf":3.872983346207417},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"304":{"tf":1.7320508075688772},"305":{"tf":1.7320508075688772},"306":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":3.872983346207417},"313":{"tf":2.23606797749979},"318":{"tf":1.4142135623730951},"368":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.0},"465":{"tf":2.6457513110645907},"467":{"tf":1.0},"468":{"tf":2.0},"469":{"tf":3.0},"470":{"tf":3.0},"471":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.4142135623730951},"477":{"tf":1.7320508075688772},"481":{"tf":1.4142135623730951},"500":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"430":{"tf":1.0}}}}},"df":12,"docs":{"130":{"tf":1.0},"209":{"tf":1.4142135623730951},"244":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":2.0},"66":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"d":{"df":10,"docs":{"179":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.0},"269":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":2.23606797749979},"472":{"tf":1.4142135623730951},"473":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.0},"192":{"tf":1.0},"312":{"tf":1.4142135623730951}}}}}},"m":{"df":2,"docs":{"164":{"tf":2.449489742783178},"358":{"tf":11.269427669584644}},"e":{"df":0,"docs":{},"t":{"df":21,"docs":{"102":{"tf":1.0},"205":{"tf":1.7320508075688772},"208":{"tf":2.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"358":{"tf":3.1622776601683795},"364":{"tf":1.0},"371":{"tf":1.4142135623730951},"375":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}}}}}},"df":2,"docs":{"128":{"tf":1.0},"197":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"324":{"tf":1.0},"325":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"72":{"tf":2.23606797749979}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"202":{"tf":1.4142135623730951},"419":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":2,"docs":{"126":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"385":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":23,"docs":{"102":{"tf":1.7320508075688772},"115":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"160":{"tf":1.0},"171":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"231":{"tf":1.4142135623730951},"235":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.0},"33":{"tf":1.0},"415":{"tf":1.0},"43":{"tf":1.0},"441":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":19,"docs":{"12":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.0},"158":{"tf":1.0},"235":{"tf":1.0},"284":{"tf":2.0},"3":{"tf":1.0},"398":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"442":{"tf":2.23606797749979},"444":{"tf":2.0},"452":{"tf":1.0},"48":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"122":{"tf":1.0},"14":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"232":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"444":{"tf":1.7320508075688772},"501":{"tf":1.0}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"501":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"129":{"tf":1.0},"318":{"tf":1.0},"465":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"169":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"t":{"df":4,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"5":{"7":{"6":{"0":{"0":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"206":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"498":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":3,"docs":{"329":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0}}}}},"t":{"df":2,"docs":{"222":{"tf":1.0},"384":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"266":{"tf":1.0},"395":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.7320508075688772},"504":{"tf":1.7320508075688772},"506":{"tf":1.0},"509":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"398":{"tf":1.0},"436":{"tf":1.0},"460":{"tf":1.0},"491":{"tf":1.0},"72":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"187":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0}}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":1,"docs":{"469":{"tf":1.0}}}}}}},"df":7,"docs":{"209":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"422":{"tf":2.23606797749979},"466":{"tf":1.0}},"e":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"129":{"tf":1.0},"140":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"209":{"tf":1.0},"331":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.7320508075688772},"468":{"tf":1.4142135623730951},"469":{"tf":2.0},"477":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"119":{"tf":1.0},"209":{"tf":1.0},"313":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"254":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"126":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"158":{"tf":2.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"258":{"tf":1.0},"340":{"tf":1.0},"382":{"tf":1.4142135623730951}},"i":{"d":{"df":5,"docs":{"151":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.0},"358":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"13":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":7,"docs":{"144":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.0},"310":{"tf":1.4142135623730951},"322":{"tf":1.0},"329":{"tf":1.0},"384":{"tf":1.0}}}}},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"0":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"469":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"214":{"tf":1.0},"469":{"tf":1.0}}}},"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":35,"docs":{"122":{"tf":1.0},"128":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"236":{"tf":1.0},"328":{"tf":1.0},"339":{"tf":2.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.4142135623730951},"384":{"tf":1.0},"410":{"tf":1.0},"421":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.0},"481":{"tf":1.4142135623730951},"50":{"tf":1.0},"504":{"tf":1.4142135623730951},"51":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":95,"docs":{"1":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"18":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"196":{"tf":1.0},"211":{"tf":1.4142135623730951},"216":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"264":{"tf":1.0},"272":{"tf":1.7320508075688772},"275":{"tf":1.0},"277":{"tf":2.0},"278":{"tf":1.0},"281":{"tf":1.0},"286":{"tf":1.7320508075688772},"292":{"tf":1.0},"299":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"317":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"382":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"399":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"410":{"tf":2.0},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"435":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"490":{"tf":1.7320508075688772},"496":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":40,"docs":{"151":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":4.242640687119285},"206":{"tf":2.6457513110645907},"207":{"tf":1.0},"208":{"tf":2.0},"214":{"tf":1.4142135623730951},"222":{"tf":1.0},"256":{"tf":1.0},"309":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":2.23606797749979},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"398":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":3.4641016151377544},"427":{"tf":2.23606797749979},"428":{"tf":1.4142135623730951},"429":{"tf":2.6457513110645907},"430":{"tf":1.0},"431":{"tf":2.0},"432":{"tf":1.4142135623730951},"433":{"tf":2.23606797749979},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"439":{"tf":1.0},"464":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"200":{"tf":1.0},"238":{"tf":1.0},"277":{"tf":1.0},"308":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}}}},"t":{"df":2,"docs":{"468":{"tf":1.0},"470":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"128":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"231":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.0},"72":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":4,"docs":{"230":{"tf":1.0},"264":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"140":{"tf":1.0},"210":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"143":{"tf":1.0},"215":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"370":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"141":{"tf":1.0},"248":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"380":{"tf":1.0},"496":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"421":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"206":{"tf":1.7320508075688772},"423":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":15,"docs":{"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"213":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"421":{"tf":1.4142135623730951},"471":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":2.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":5,"docs":{"177":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"308":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":3,"docs":{"370":{"tf":1.4142135623730951},"372":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"14":{"tf":1.0},"179":{"tf":2.0},"183":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":2.0},"5":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"145":{"tf":1.0},"414":{"tf":1.4142135623730951},"48":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"206":{"tf":1.0},"224":{"tf":1.0},"245":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"14":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"359":{"tf":1.0},"406":{"tf":1.4142135623730951},"416":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"358":{"tf":3.4641016151377544}}}}}}},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"'":{"df":9,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"188":{"tf":1.0},"232":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"398":{"tf":1.0}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":128,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"14":{"tf":2.23606797749979},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"16":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":2.8284271247461903},"176":{"tf":2.0},"177":{"tf":2.8284271247461903},"178":{"tf":2.8284271247461903},"179":{"tf":3.1622776601683795},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":2.23606797749979},"182":{"tf":1.0},"183":{"tf":2.6457513110645907},"184":{"tf":2.23606797749979},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":2.0},"199":{"tf":2.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":2.6457513110645907},"201":{"tf":2.449489742783178},"202":{"tf":2.0},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":2.0},"296":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":2.0},"316":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.0},"337":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"379":{"tf":1.0},"382":{"tf":1.4142135623730951},"395":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"4":{"tf":1.0},"402":{"tf":1.4142135623730951},"413":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"429":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.4142135623730951},"443":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.4142135623730951},"498":{"tf":1.0},"5":{"tf":2.0},"6":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"436":{"tf":1.0},"449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"177":{"tf":1.0},"187":{"tf":1.0}}},"df":2,"docs":{"176":{"tf":1.0},"180":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":2,"docs":{"401":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"179":{"tf":1.0},"193":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"307":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"209":{"tf":2.8284271247461903}}}}}},"r":{"df":1,"docs":{"166":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"106":{"tf":1.0},"442":{"tf":1.0}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.0},"385":{"tf":1.0},"470":{"tf":1.0},"99":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"122":{"tf":1.0},"14":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"422":{"tf":1.0},"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"358":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"504":{"tf":1.0},"69":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"129":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"50":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":45,"docs":{"104":{"tf":1.0},"128":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"209":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"250":{"tf":1.0},"263":{"tf":1.0},"284":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"312":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"367":{"tf":1.0},"378":{"tf":1.4142135623730951},"382":{"tf":3.1622776601683795},"384":{"tf":2.449489742783178},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"417":{"tf":1.0},"422":{"tf":1.0},"439":{"tf":1.0},"444":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.0}}}}}}}},"df":6,"docs":{"273":{"tf":1.0},"379":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"501":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":25,"docs":{"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"250":{"tf":1.0},"375":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"452":{"tf":1.0},"473":{"tf":1.0},"67":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.0}}}}}}},"v":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"126":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"204":{"tf":1.0},"240":{"tf":1.4142135623730951},"313":{"tf":1.0},"462":{"tf":1.4142135623730951}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"179":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"431":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":2.23606797749979}}}}}},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.0}}}},"r":{"[":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"325":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"137":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"61":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"45":{"tf":2.0}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"204":{"tf":1.0},"358":{"tf":1.0}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"177":{"tf":1.0}}}},"s":{"df":1,"docs":{"252":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"165":{"tf":1.4142135623730951}},"t":{"df":13,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"151":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"256":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"398":{"tf":1.7320508075688772},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":7,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.7320508075688772},"501":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"174":{"tf":1.0},"311":{"tf":1.0},"384":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}},"r":{"df":1,"docs":{"398":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"254":{"tf":1.0},"358":{"tf":2.0},"382":{"tf":2.0},"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"127":{"tf":1.0},"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"232":{"tf":1.0},"421":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"23":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"363":{"tf":1.0},"399":{"tf":2.23606797749979},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.4142135623730951},"149":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"384":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"125":{"tf":1.0},"417":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"341":{"tf":1.0},"343":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"355":{"tf":1.0},"94":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"16":{"tf":1.4142135623730951},"166":{"tf":1.0},"2":{"tf":1.0},"256":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"444":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":13,"docs":{"14":{"tf":1.7320508075688772},"205":{"tf":2.449489742783178},"206":{"tf":1.0},"208":{"tf":2.0},"358":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"5":{"tf":1.0}},"s":{"df":5,"docs":{"206":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"416":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.4142135623730951}}}}}}}}}},"df":40,"docs":{"1":{"tf":1.0},"12":{"tf":2.449489742783178},"13":{"tf":1.4142135623730951},"183":{"tf":1.0},"204":{"tf":2.23606797749979},"205":{"tf":3.605551275463989},"206":{"tf":3.605551275463989},"207":{"tf":1.4142135623730951},"208":{"tf":4.795831523312719},"21":{"tf":1.0},"214":{"tf":2.449489742783178},"22":{"tf":1.0},"3":{"tf":1.0},"364":{"tf":2.449489742783178},"365":{"tf":2.8284271247461903},"366":{"tf":2.449489742783178},"367":{"tf":2.8284271247461903},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.7320508075688772},"372":{"tf":2.0},"373":{"tf":1.0},"374":{"tf":3.3166247903554},"375":{"tf":3.7416573867739413},"376":{"tf":1.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"4":{"tf":1.0},"417":{"tf":2.23606797749979},"418":{"tf":3.7416573867739413},"421":{"tf":4.123105625617661},"422":{"tf":3.7416573867739413},"424":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":20,"docs":{"18":{"tf":1.0},"202":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"327":{"tf":1.0},"368":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":1.0},"53":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"232":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"23":{"tf":1.0},"312":{"tf":1.0},"41":{"tf":2.0},"44":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":66,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"156":{"tf":1.4142135623730951},"159":{"tf":1.0},"172":{"tf":1.4142135623730951},"196":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"300":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.0},"320":{"tf":1.4142135623730951},"323":{"tf":1.0},"337":{"tf":1.4142135623730951},"339":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"361":{"tf":1.4142135623730951},"364":{"tf":1.0},"377":{"tf":1.4142135623730951},"380":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.4142135623730951},"398":{"tf":1.0},"399":{"tf":1.0},"413":{"tf":1.4142135623730951},"416":{"tf":1.0},"425":{"tf":1.4142135623730951},"427":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.4142135623730951},"453":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"479":{"tf":1.7320508075688772},"482":{"tf":1.0},"493":{"tf":1.4142135623730951},"496":{"tf":1.0},"507":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"424":{"tf":1.0}},"i":{"df":4,"docs":{"204":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"432":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":53,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"132":{"tf":1.7320508075688772},"141":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"159":{"tf":1.0},"167":{"tf":1.4142135623730951},"175":{"tf":1.0},"189":{"tf":1.4142135623730951},"196":{"tf":1.0},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"226":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.4142135623730951},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"275":{"tf":1.0},"285":{"tf":1.7320508075688772},"292":{"tf":1.0},"298":{"tf":1.4142135623730951},"303":{"tf":1.0},"315":{"tf":1.4142135623730951},"323":{"tf":1.0},"332":{"tf":1.4142135623730951},"339":{"tf":1.0},"345":{"tf":1.4142135623730951},"380":{"tf":1.0},"386":{"tf":1.4142135623730951},"399":{"tf":1.0},"408":{"tf":1.7320508075688772},"427":{"tf":1.0},"433":{"tf":1.4142135623730951},"440":{"tf":1.0},"446":{"tf":1.4142135623730951},"463":{"tf":1.0},"474":{"tf":1.7320508075688772},"482":{"tf":1.0},"488":{"tf":1.4142135623730951},"496":{"tf":1.0},"502":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"207":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"235":{"tf":1.0},"281":{"tf":1.0},"429":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"363":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":20,"docs":{"131":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.4142135623730951},"158":{"tf":1.0},"192":{"tf":1.4142135623730951},"196":{"tf":1.0},"200":{"tf":1.7320508075688772},"232":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"358":{"tf":1.0},"380":{"tf":1.0},"473":{"tf":1.0},"501":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"199":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":43,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"210":{"tf":1.0},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"358":{"tf":1.4142135623730951},"37":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"439":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":12,"docs":{"276":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"43":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"498":{"tf":1.0},"51":{"tf":1.0}},"t":{"df":7,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"309":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"398":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"266":{"tf":1.0},"311":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"444":{"tf":1.0}},"m":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"178":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"137":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"325":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.4142135623730951},"201":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"166":{"tf":1.0},"9":{"tf":1.0}}},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"284":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"268":{"tf":1.0},"27":{"tf":1.0},"325":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":36,"docs":{"129":{"tf":2.6457513110645907},"146":{"tf":2.23606797749979},"179":{"tf":2.0},"181":{"tf":2.0},"183":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"377":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":2.23606797749979},"385":{"tf":2.23606797749979},"386":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":2.0},"457":{"tf":2.23606797749979},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"482":{"tf":2.23606797749979},"483":{"tf":2.23606797749979},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":3.1622776601683795},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"51":{"tf":1.4142135623730951},"83":{"tf":2.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"116":{"tf":1.0},"206":{"tf":1.0},"341":{"tf":1.0},"474":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"204":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"396":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"128":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"364":{"tf":1.0},"374":{"tf":1.4142135623730951},"455":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.7320508075688772}}}},"s":{"a":{"df":0,"docs":{},"l":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"df":114,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"10":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.8284271247461903},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":2.0},"235":{"tf":1.0},"239":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":2.449489742783178},"421":{"tf":1.4142135623730951},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.4142135623730951},"444":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.4142135623730951},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"6":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.23606797749979},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":2.449489742783178},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"444":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"386":{"tf":1.4142135623730951},"422":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"2":{"df":1,"docs":{"254":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"254":{"tf":1.0},"384":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"'":{"df":2,"docs":{"26":{"tf":1.0},"430":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":2.449489742783178},"48":{"tf":1.0}}}}}}}}}},"df":102,"docs":{"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":2.0},"131":{"tf":1.0},"140":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"158":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":2.6457513110645907},"231":{"tf":1.0},"235":{"tf":1.4142135623730951},"24":{"tf":2.0},"248":{"tf":1.0},"25":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"254":{"tf":2.6457513110645907},"255":{"tf":1.0},"26":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"35":{"tf":2.23606797749979},"36":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":2.0},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":2.6457513110645907},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.7320508075688772},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"210":{"tf":1.0},"222":{"tf":2.0},"223":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"382":{"tf":1.4142135623730951},"99":{"tf":1.0}},"n":{"df":4,"docs":{"134":{"tf":1.0},"179":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0}}}},"i":{"d":{"df":70,"docs":{"101":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":3.605551275463989},"147":{"tf":3.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"151":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"158":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":2.23606797749979},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"211":{"tf":1.0},"223":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":2.0},"255":{"tf":1.0},"256":{"tf":2.0},"258":{"tf":1.7320508075688772},"26":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"358":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"384":{"tf":2.0},"401":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"442":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"51":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"207":{"tf":1.0},"421":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":2.0},"206":{"tf":1.4142135623730951}}}}}}}}},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":8,"docs":{"146":{"tf":1.4142135623730951},"463":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":2.6457513110645907},"472":{"tf":1.0},"473":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"23":{"tf":1.0},"33":{"tf":1.4142135623730951},"364":{"tf":1.0},"373":{"tf":1.4142135623730951},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"472":{"tf":1.0}}}}}},"df":10,"docs":{"128":{"tf":1.0},"129":{"tf":3.3166247903554},"309":{"tf":1.0},"319":{"tf":1.0},"469":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"7":{"tf":3.1622776601683795},"8":{"tf":2.23606797749979},"85":{"tf":1.0},"9":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"317":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":8,"docs":{"199":{"tf":1.0},"268":{"tf":1.0},"277":{"tf":1.0},"358":{"tf":2.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":1.0},"296":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"250":{"tf":1.0},"462":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"204":{"tf":2.0},"205":{"tf":3.605551275463989},"206":{"tf":3.3166247903554},"207":{"tf":2.8284271247461903},"208":{"tf":2.23606797749979},"211":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"470":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":8,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"158":{"tf":1.0},"188":{"tf":1.0},"249":{"tf":1.0},"312":{"tf":1.0},"384":{"tf":1.0},"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"188":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"200":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"406":{"tf":1.0},"425":{"tf":1.0}}}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"472":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"421":{"tf":1.7320508075688772}}}},"z":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"140":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":2.0},"384":{"tf":2.23606797749979},"385":{"tf":1.0},"386":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"382":{"tf":2.0},"384":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":57,"docs":{"1":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"138":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"194":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.4142135623730951},"248":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"290":{"tf":1.4142135623730951},"292":{"tf":1.0},"301":{"tf":1.4142135623730951},"303":{"tf":1.0},"321":{"tf":1.7320508075688772},"323":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.0},"355":{"tf":1.0},"362":{"tf":1.4142135623730951},"380":{"tf":1.0},"392":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"451":{"tf":1.4142135623730951},"463":{"tf":1.0},"480":{"tf":1.4142135623730951},"482":{"tf":1.0},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"208":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"106":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"106":{"tf":2.23606797749979},"208":{"tf":1.4142135623730951}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"128":{"tf":1.0},"375":{"tf":1.4142135623730951},"415":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"488":{"tf":1.0}}}},"o":{"df":2,"docs":{"275":{"tf":1.0},"281":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"146":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"200":{"tf":1.0},"481":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"126":{"tf":1.4142135623730951},"147":{"tf":2.6457513110645907},"153":{"tf":1.0},"23":{"tf":1.0},"253":{"tf":2.23606797749979},"258":{"tf":1.0},"47":{"tf":3.1622776601683795},"48":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"126":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0},"256":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"54":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":2.0},"54":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"54":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"223":{"tf":1.4142135623730951},"358":{"tf":3.7416573867739413},"370":{"tf":1.4142135623730951}}},"k":{"df":2,"docs":{"323":{"tf":1.0},"328":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"424":{"tf":1.0}}}},"t":{"a":{"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"200":{"tf":1.0},"367":{"tf":1.4142135623730951},"422":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}},"o":{"df":5,"docs":{"204":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.4142135623730951},"330":{"tf":1.0},"47":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"165":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"250":{"tf":1.4142135623730951},"33":{"tf":1.0}}}},"df":2,"docs":{"358":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{")":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"358":{"tf":1.4142135623730951},"367":{"tf":1.0},"421":{"tf":1.0},"501":{"tf":1.0}}},"t":{"df":3,"docs":{"375":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0}}}},"d":{"df":9,"docs":{"145":{"tf":1.4142135623730951},"149":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"111":{"tf":1.0},"200":{"tf":1.4142135623730951},"377":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"151":{"tf":1.0},"216":{"tf":1.0},"224":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"313":{"tf":1.0},"385":{"tf":1.0}}}},"z":{"df":2,"docs":{"251":{"tf":1.0},"372":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"128":{"tf":1.0},"151":{"tf":1.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":12,"docs":{"129":{"tf":2.0},"153":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"324":{"tf":1.0},"325":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"385":{"tf":1.0},"418":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"208":{"tf":1.0},"498":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"454":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"328":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"312":{"tf":1.0},"98":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"22":{"tf":1.0},"268":{"tf":1.0},"412":{"tf":1.0},"48":{"tf":1.0}}},"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":5,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"d":{"df":14,"docs":{"104":{"tf":1.0},"140":{"tf":1.4142135623730951},"153":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":2.23606797749979},"209":{"tf":1.7320508075688772},"258":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":2.0},"291":{"tf":1.0},"58":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"24":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"u":{"c":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"239":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"367":{"tf":1.0},"381":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.4142135623730951},"444":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"502":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"459":{"tf":1.0},"473":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"df":13,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"209":{"tf":1.0},"384":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":2.23606797749979},"501":{"tf":1.0},"7":{"tf":1.4142135623730951}},"e":{"d":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":68,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.4142135623730951},"159":{"tf":1.0},"172":{"tf":1.4142135623730951},"196":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"243":{"tf":1.4142135623730951},"248":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"300":{"tf":1.4142135623730951},"303":{"tf":1.0},"320":{"tf":1.4142135623730951},"323":{"tf":1.0},"337":{"tf":1.4142135623730951},"339":{"tf":1.0},"350":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"371":{"tf":1.0},"377":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"391":{"tf":1.4142135623730951},"399":{"tf":1.0},"41":{"tf":1.0},"413":{"tf":1.4142135623730951},"416":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.4142135623730951},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"45":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"453":{"tf":1.0},"455":{"tf":1.0},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"47":{"tf":1.0},"479":{"tf":1.4142135623730951},"48":{"tf":2.0},"482":{"tf":1.0},"493":{"tf":1.4142135623730951},"496":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"66":{"tf":1.0},"68":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"92":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":3,"docs":{"268":{"tf":1.0},"307":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"130":{"tf":1.0},"268":{"tf":1.7320508075688772},"270":{"tf":1.0},"296":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"416":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"207":{"tf":1.0},"422":{"tf":1.0},"436":{"tf":1.7320508075688772},"486":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"422":{"tf":1.0}}}},"m":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"204":{"tf":1.4142135623730951},"422":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"161":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"130":{"tf":1.0},"222":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"206":{"tf":3.0}}},"df":9,"docs":{"204":{"tf":1.7320508075688772},"205":{"tf":5.196152422706632},"206":{"tf":6.082762530298219},"208":{"tf":1.0},"209":{"tf":4.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"206":{"tf":2.449489742783178},"209":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"141":{"tf":1.0},"147":{"tf":2.6457513110645907},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"309":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":3.1622776601683795},"470":{"tf":1.0},"472":{"tf":1.4142135623730951},"481":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"472":{"tf":1.0}}}},"df":25,"docs":{"141":{"tf":1.0},"147":{"tf":1.4142135623730951},"248":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"463":{"tf":2.449489742783178},"464":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"472":{"tf":2.449489742783178},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0}},"i":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"107":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":2.6457513110645907},"206":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.0},"469":{"tf":1.7320508075688772},"472":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"232":{"tf":1.0},"233":{"tf":1.0}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"268":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":62,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.0},"263":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"322":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"352":{"tf":1.4142135623730951},"380":{"tf":1.0},"393":{"tf":1.4142135623730951},"399":{"tf":1.0},"41":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.4142135623730951},"427":{"tf":1.0},"433":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"452":{"tf":1.4142135623730951},"463":{"tf":1.0},"470":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"5":{"tf":1.0},"509":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"81":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.0}}}}}}}}}},"x":{"df":1,"docs":{"501":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"277":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":64,"docs":{"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":3.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"208":{"tf":2.0},"209":{"tf":2.449489742783178},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":2.23606797749979},"304":{"tf":1.4142135623730951},"305":{"tf":2.23606797749979},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"312":{"tf":2.6457513110645907},"313":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.7320508075688772},"321":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772}}}},"df":16,"docs":{"128":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"188":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"265":{"tf":1.0},"327":{"tf":1.4142135623730951},"330":{"tf":1.0},"422":{"tf":1.0},"429":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"72":{"tf":3.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"180":{"tf":1.0},"210":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"96":{"tf":1.0}}}},"df":1,"docs":{"418":{"tf":1.0}},"v":{"df":8,"docs":{"117":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"13":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"147":{"tf":1.0},"151":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"331":{"tf":1.0},"398":{"tf":1.0},"98":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":17,"docs":{"106":{"tf":1.4142135623730951},"178":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"24":{"tf":1.0},"321":{"tf":1.0},"358":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.4142135623730951},"63":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"439":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"312":{"tf":1.0},"381":{"tf":1.0},"384":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"384":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.7320508075688772}},"v":{"2":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":54,"docs":{"100":{"tf":1.0},"130":{"tf":1.4142135623730951},"151":{"tf":1.0},"164":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":2.0},"209":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"264":{"tf":1.4142135623730951},"269":{"tf":2.449489742783178},"276":{"tf":1.0},"291":{"tf":1.0},"312":{"tf":1.4142135623730951},"317":{"tf":1.0},"353":{"tf":2.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.7320508075688772},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":2.0},"390":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"444":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"473":{"tf":1.4142135623730951},"496":{"tf":2.23606797749979},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"414":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"312":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"417":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":11,"docs":{"204":{"tf":2.8284271247461903},"205":{"tf":2.8284271247461903},"206":{"tf":4.123105625617661},"208":{"tf":1.7320508075688772},"214":{"tf":1.0},"277":{"tf":1.4142135623730951},"289":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":2.23606797749979},"421":{"tf":2.8284271247461903},"422":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}}}}}}}}},"df":1,"docs":{"469":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":19,"docs":{"463":{"tf":2.449489742783178},"464":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":2.0},"467":{"tf":1.0},"468":{"tf":2.23606797749979},"469":{"tf":2.6457513110645907},"470":{"tf":2.0},"471":{"tf":2.23606797749979},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"254":{"tf":1.0},"341":{"tf":1.0},"384":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":24,"docs":{"235":{"tf":1.0},"256":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"362":{"tf":1.0},"384":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":3,"docs":{"382":{"tf":1.7320508075688772},"384":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"384":{"tf":2.0},"386":{"tf":1.4142135623730951}}}}}},"o":{"df":6,"docs":{"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"300":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"312":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"117":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"294":{"tf":1.0},"8":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":18,"docs":{"108":{"tf":1.7320508075688772},"151":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"384":{"tf":1.0},"419":{"tf":1.0},"457":{"tf":1.4142135623730951},"498":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"/":{"1":{"df":1,"docs":{"130":{"tf":1.0}}},"2":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":34,"docs":{"0":{"tf":1.0},"126":{"tf":1.7320508075688772},"129":{"tf":3.7416573867739413},"140":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.4142135623730951},"204":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.7320508075688772},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"254":{"tf":2.23606797749979},"255":{"tf":1.0},"358":{"tf":2.8284271247461903},"380":{"tf":2.23606797749979},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":3.605551275463989},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.7320508075688772},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"462":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":83,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"14":{"tf":2.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"165":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"250":{"tf":1.7320508075688772},"275":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.4142135623730951},"377":{"tf":1.0},"384":{"tf":2.0},"385":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"468":{"tf":1.7320508075688772},"469":{"tf":2.23606797749979},"47":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":2,"docs":{"277":{"tf":1.4142135623730951},"278":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"202":{"tf":1.0},"212":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.0},"368":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.0},"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"108":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"358":{"tf":1.7320508075688772},"421":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":2.0},"470":{"tf":1.0},"473":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"418":{"tf":1.0},"421":{"tf":3.1622776601683795},"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"199":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":23,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"205":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"277":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"317":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"140":{"tf":1.0},"184":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"404":{"tf":1.0},"429":{"tf":1.0},"448":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"254":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":17,"docs":{"11":{"tf":1.7320508075688772},"129":{"tf":2.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"151":{"tf":1.0},"204":{"tf":1.4142135623730951},"217":{"tf":1.0},"254":{"tf":2.23606797749979},"255":{"tf":1.0},"256":{"tf":1.0},"29":{"tf":1.0},"358":{"tf":1.4142135623730951},"384":{"tf":2.23606797749979},"385":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"422":{"tf":1.0},"465":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"258":{"tf":1.0}}}}},"df":3,"docs":{"343":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"417":{"tf":1.0},"421":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":29,"docs":{"103":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"199":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"277":{"tf":1.0},"3":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":3.0},"359":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"457":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"180":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"208":{"tf":1.0},"325":{"tf":1.0},"470":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"125":{"tf":1.0},"127":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"454":{"tf":1.0},"455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":21,"docs":{"106":{"tf":1.0},"129":{"tf":1.0},"165":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"222":{"tf":1.0},"281":{"tf":1.0},"33":{"tf":2.8284271247461903},"355":{"tf":1.0},"358":{"tf":7.280109889280518},"400":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"408":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"204":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"422":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"u":{"df":21,"docs":{"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.23606797749979},"394":{"tf":2.23606797749979},"395":{"tf":2.23606797749979},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":2.8284271247461903},"422":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"112":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.4142135623730951},"295":{"tf":1.0},"407":{"tf":1.0},"442":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"268":{"tf":1.0},"6":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"244":{"tf":1.0},"416":{"tf":2.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"500":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"119":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"284":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"468":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"c":{"#":{"0":{"0":{"0":{"1":{"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":510,"docs":{"0":{"tf":1.0},"1":{"tf":2.0},"10":{"tf":1.0},"100":{"tf":1.7320508075688772},"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},"11":{"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},"12":{"tf":1.0},"120":{"tf":2.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},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"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},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":2.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"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},"19":{"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.4142135623730951},"196":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":2.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":2.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":2.0},"249":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"252":{"tf":2.449489742783178},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":2.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":2.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.7320508075688772},"292":{"tf":2.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":2.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":2.0},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":2.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"329":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":2.0},"34":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"35":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":2.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"36":{"tf":1.0},"360":{"tf":1.7320508075688772},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":1.7320508075688772},"364":{"tf":2.0},"365":{"tf":1.4142135623730951},"366":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.7320508075688772},"379":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":2.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":2.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"399":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":2.23606797749979},"417":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.4142135623730951},"429":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"44":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.7320508075688772},"444":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.7320508075688772},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":2.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":2.0},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":2.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":2.449489742783178},"502":{"tf":1.7320508075688772},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"197":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":14,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":2.449489742783178},"107":{"tf":1.0},"129":{"tf":1.0},"140":{"tf":1.0},"343":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"407":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"41":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"61":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":4,"docs":{"161":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"370":{"tf":1.0}}},"k":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"199":{"tf":1.0},"284":{"tf":1.7320508075688772},"297":{"tf":1.0},"311":{"tf":1.0},"375":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"245":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"216":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"311":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"313":{"tf":1.0},"418":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"285":{"tf":1.0},"474":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"267":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0},"84":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"196":{"tf":1.0},"210":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"p":{"df":11,"docs":{"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"179":{"tf":4.898979485566356},"181":{"tf":3.1622776601683795},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}},"t":{"df":25,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.7320508075688772},"312":{"tf":1.0},"384":{"tf":1.4142135623730951},"429":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"153":{"tf":1.0},"258":{"tf":1.0},"487":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"483":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"205":{"tf":1.0},"35":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"311":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"311":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"p":{"c":{"df":4,"docs":{"102":{"tf":1.0},"158":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"436":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"472":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}},"n":{"df":18,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"204":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"358":{"tf":1.0},"401":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":103,"docs":{"102":{"tf":1.4142135623730951},"112":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":2.6457513110645907},"160":{"tf":2.23606797749979},"161":{"tf":2.6457513110645907},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":1.0},"166":{"tf":2.23606797749979},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"292":{"tf":2.449489742783178},"293":{"tf":1.0},"294":{"tf":2.0},"295":{"tf":1.7320508075688772},"296":{"tf":2.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.7320508075688772},"353":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"355":{"tf":3.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":4.58257569495584},"359":{"tf":2.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"374":{"tf":1.0},"385":{"tf":1.0},"399":{"tf":2.23606797749979},"400":{"tf":1.4142135623730951},"401":{"tf":1.7320508075688772},"402":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.7320508075688772},"406":{"tf":2.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":2.23606797749979},"444":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.7320508075688772},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"460":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":3.0},"499":{"tf":1.0},"500":{"tf":2.6457513110645907},"501":{"tf":2.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.7320508075688772},"509":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"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":{}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"81":{"tf":2.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"33":{"tf":1.0},"500":{"tf":1.0}}}}},"·":{"df":1,"docs":{"48":{"tf":1.0}},"s":{")":{"/":{"(":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{")":{"/":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"/":{"2":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"140":{"tf":1.0},"42":{"tf":1.0},"470":{"tf":1.0}}}},"k":{"a":{"c":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"208":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"268":{"tf":1.0},"270":{"tf":1.0},"323":{"tf":2.449489742783178},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.7320508075688772},"328":{"tf":2.8284271247461903},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"205":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":29,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":4.58257569495584},"206":{"tf":3.0},"208":{"tf":3.3166247903554},"214":{"tf":1.7320508075688772},"223":{"tf":1.0},"364":{"tf":2.23606797749979},"365":{"tf":2.0},"366":{"tf":2.0},"367":{"tf":1.7320508075688772},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":2.6457513110645907},"421":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":31,"docs":{"104":{"tf":1.4142135623730951},"129":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":1.0},"208":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"455":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.7320508075688772},"486":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"509":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"86":{"tf":1.0}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"425":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":45,"docs":{"23":{"tf":2.6457513110645907},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.23606797749979},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"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.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.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}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"70":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"127":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"343":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"343":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"343":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":2.0}}}}},"df":21,"docs":{"102":{"tf":2.8284271247461903},"104":{"tf":1.4142135623730951},"125":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"232":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"305":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"370":{"tf":1.0},"375":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":2.0},"51":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":1,"docs":{"266":{"tf":1.0}}},"n":{"df":1,"docs":{"436":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":7,"docs":{"130":{"tf":1.0},"140":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":9,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"311":{"tf":1.7320508075688772}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"209":{"tf":1.0},"384":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"127":{"tf":1.0},"130":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"27":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"41":{"tf":1.0},"421":{"tf":1.0},"509":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"436":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"#":{"1":{"7":{"8":{"1":{"df":1,"docs":{"413":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"1":{"7":{"9":{"6":{"df":1,"docs":{"479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"3":{"3":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"2":{"1":{"7":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"169":{"tf":1.0},"211":{"tf":1.0}}}},"df":2,"docs":{"358":{"tf":1.0},"48":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"141":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":2.449489742783178},"197":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"253":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.4142135623730951},"423":{"tf":1.0},"444":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0}}}}},"df":11,"docs":{"106":{"tf":1.0},"149":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"107":{"tf":1.0},"136":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.4142135623730951},"164":{"tf":2.0},"177":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"31":{"tf":1.0},"328":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"41":{"tf":1.0},"430":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":73,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"112":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":2.0},"216":{"tf":1.0},"226":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.7320508075688772},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"275":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"292":{"tf":1.0},"298":{"tf":1.4142135623730951},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"323":{"tf":1.0},"332":{"tf":1.4142135623730951},"339":{"tf":1.0},"345":{"tf":1.4142135623730951},"380":{"tf":1.0},"386":{"tf":1.7320508075688772},"399":{"tf":1.0},"408":{"tf":1.7320508075688772},"417":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.7320508075688772},"438":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.4142135623730951},"463":{"tf":1.0},"474":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.0},"488":{"tf":1.4142135623730951},"496":{"tf":1.0},"502":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"68":{"tf":1.0},"74":{"tf":1.7320508075688772},"81":{"tf":1.0},"87":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"211":{"tf":1.0}},"e":{"d":{"df":4,"docs":{"268":{"tf":1.0},"358":{"tf":1.7320508075688772},"43":{"tf":1.0},"486":{"tf":1.0}}},"df":27,"docs":{"101":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.4142135623730951},"150":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"273":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"321":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.4142135623730951},"429":{"tf":1.0},"430":{"tf":1.0},"445":{"tf":1.0},"500":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":5,"docs":{"268":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"417":{"tf":1.0},"465":{"tf":1.0}}},"m":{"df":4,"docs":{"167":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"438":{"tf":1.0}}},"n":{"df":4,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"140":{"tf":1.0},"188":{"tf":1.4142135623730951}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"35":{"tf":1.4142135623730951},"421":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"205":{"tf":1.0},"230":{"tf":2.23606797749979},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":3.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{"df":9,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"209":{"tf":1.4142135623730951},"268":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"312":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"l":{"df":4,"docs":{"197":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"366":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"232":{"tf":1.0},"311":{"tf":1.0}}}},"n":{"d":{"df":17,"docs":{"129":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"158":{"tf":1.0},"179":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"258":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":2.0},"344":{"tf":1.0},"349":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":2.0},"386":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"343":{"tf":1.0},"349":{"tf":1.0},"486":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"179":{"tf":1.0},"328":{"tf":1.0}}}}},"s":{"df":6,"docs":{"312":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"421":{"tf":1.0}}}}},"t":{"df":7,"docs":{"106":{"tf":1.0},"223":{"tf":1.0},"254":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.4142135623730951},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"255":{"tf":1.0},"295":{"tf":1.0},"417":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"23":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":9,"docs":{"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"42":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"126":{"tf":1.0},"35":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":1,"docs":{"463":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"382":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":15,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":2.449489742783178},"149":{"tf":1.0},"158":{"tf":1.7320508075688772},"215":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"421":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"384":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"388":{"tf":1.0}}}},"i":{"c":{"df":7,"docs":{"199":{"tf":1.0},"207":{"tf":1.0},"222":{"tf":1.0},"232":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"122":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"240":{"tf":1.0},"313":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"487":{"tf":1.0},"492":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":14,"docs":{"482":{"tf":2.23606797749979},"483":{"tf":2.0},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"483":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"486":{"tf":1.0}},"s":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"486":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":47,"docs":{"108":{"tf":1.0},"14":{"tf":1.0},"165":{"tf":2.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"208":{"tf":2.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"24":{"tf":1.0},"254":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"305":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.7320508075688772},"419":{"tf":1.0},"42":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"500":{"tf":1.4142135623730951},"99":{"tf":1.0}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"421":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}},"r":{"df":9,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"235":{"tf":1.0},"304":{"tf":1.0},"341":{"tf":1.0},"63":{"tf":1.0}}}}}},"h":{"a":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"0":{"df":0,"docs":{},"f":{"1":{"2":{"8":{"7":{"2":{"4":{"4":{"7":{"9":{"5":{"8":{"d":{"5":{"0":{"a":{"a":{"7":{"b":{"9":{"3":{"7":{"b":{"0":{"1":{"0":{"6":{"5":{"6":{"1":{"a":{"5":{"8":{"8":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"e":{"2":{"6":{"2":{"8":{"d":{"3":{"3":{"df":0,"docs":{},"f":{"8":{"1":{"b":{"5":{"3":{"6":{"1":{"b":{"1":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"8":{"d":{"df":0,"docs":{},"f":{"7":{"0":{"8":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"151":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"171":{"tf":1.4142135623730951},"206":{"tf":3.0},"248":{"tf":1.0},"330":{"tf":1.0},"366":{"tf":1.7320508075688772},"374":{"tf":1.0},"378":{"tf":1.0},"454":{"tf":1.0},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"370":{"tf":1.0},"372":{"tf":1.0},"421":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"199":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"207":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"177":{"tf":1.0},"423":{"tf":1.0}}}},"p":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"291":{"tf":1.0},"385":{"tf":1.0},"423":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":2.0},"118":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":1,"docs":{"134":{"tf":1.0}},"n":{"df":3,"docs":{"329":{"tf":1.0},"459":{"tf":1.0},"51":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"367":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":40,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":1.4142135623730951},"218":{"tf":1.0},"254":{"tf":1.7320508075688772},"285":{"tf":1.0},"296":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"355":{"tf":2.23606797749979},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"372":{"tf":2.449489742783178},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"422":{"tf":1.0},"438":{"tf":1.0},"455":{"tf":1.0},"462":{"tf":1.0},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":2.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"99":{"tf":2.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"108":{"tf":1.0},"164":{"tf":1.0},"23":{"tf":1.4142135623730951},"358":{"tf":2.449489742783178},"359":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":5.0},"457":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":2.6457513110645907},"49":{"tf":1.0},"51":{"tf":2.8284271247461903},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"99":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":17,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"206":{"tf":2.449489742783178},"44":{"tf":1.7320508075688772},"48":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"45":{"tf":1.0}}},"df":26,"docs":{"100":{"tf":1.7320508075688772},"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":2.0},"43":{"tf":1.0},"95":{"tf":2.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"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":4,"docs":{"183":{"tf":1.0},"344":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.0}}}}}}},"df":6,"docs":{"179":{"tf":1.0},"192":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"421":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":1,"docs":{"245":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"384":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"145":{"tf":1.0},"205":{"tf":1.0},"250":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"33":{"tf":1.0},"358":{"tf":1.0},"43":{"tf":1.0},"500":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"148":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"384":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":13,"docs":{"128":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"265":{"tf":1.0},"312":{"tf":1.0},"352":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":1.0},"435":{"tf":1.0},"51":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"312":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"384":{"tf":1.0},"422":{"tf":1.0}}},"df":10,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"308":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"422":{"tf":1.0}},"f":{"df":1,"docs":{"498":{"tf":1.0}},"i":{"df":3,"docs":{"312":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"312":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":19,"docs":{"108":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"219":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"268":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"441":{"tf":1.0},"444":{"tf":2.0},"48":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"208":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"370":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"423":{"tf":1.0}}},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":27,"docs":{"110":{"tf":1.7320508075688772},"126":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"166":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.4142135623730951},"240":{"tf":1.0},"254":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":4.898979485566356},"384":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"386":{"tf":2.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":2.23606797749979},"457":{"tf":1.7320508075688772},"460":{"tf":1.4142135623730951},"468":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"408":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"384":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"310":{"tf":1.0},"311":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"410":{"tf":1.0},"421":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"111":{"tf":1.0},"362":{"tf":1.0},"375":{"tf":1.0},"422":{"tf":1.0},"487":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"372":{"tf":1.0},"374":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":22,"docs":{"199":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":2.0},"232":{"tf":1.0},"235":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":2.0},"50":{"tf":3.872983346207417},"51":{"tf":4.123105625617661},"52":{"tf":2.0},"53":{"tf":1.0}}},"w":{"df":4,"docs":{"166":{"tf":1.0},"180":{"tf":1.0},"270":{"tf":1.0},"367":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"362":{"tf":1.4142135623730951},"388":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"374":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"126":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"254":{"tf":1.0},"344":{"tf":1.0},"358":{"tf":1.0},"429":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"209":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"472":{"tf":1.0},"50":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":14,"docs":{"175":{"tf":2.23606797749979},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"181":{"tf":1.4142135623730951},"183":{"tf":3.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"469":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"202":{"tf":1.4142135623730951},"220":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"210":{"tf":1.4142135623730951},"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":15,"docs":{"204":{"tf":1.7320508075688772},"205":{"tf":2.23606797749979},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"374":{"tf":2.0},"421":{"tf":1.0},"423":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"222":{"tf":1.0}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"d":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"t":{"df":19,"docs":{"165":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":2.6457513110645907},"208":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"255":{"tf":1.0},"291":{"tf":1.0},"367":{"tf":2.23606797749979},"377":{"tf":1.0},"455":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":2.6457513110645907},"468":{"tf":1.4142135623730951},"481":{"tf":1.0},"500":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"158":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"380":{"tf":1.0},"385":{"tf":1.0},"98":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"1":{"df":1,"docs":{"209":{"tf":1.0}}},"2":{"df":1,"docs":{"209":{"tf":1.0}}},"4":{"9":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"327":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"131":{"tf":1.0},"158":{"tf":1.0},"85":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"180":{"tf":1.0},"205":{"tf":1.0},"222":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"h":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":36,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"197":{"tf":1.0},"500":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"13":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}},"n":{"df":5,"docs":{"201":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"125":{"tf":1.0},"199":{"tf":1.0}}}},"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"85":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":8,"docs":{"111":{"tf":1.0},"126":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772}},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"250":{"tf":1.4142135623730951},"268":{"tf":1.0},"425":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":43,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"196":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"250":{"tf":2.449489742783178},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"341":{"tf":1.4142135623730951},"37":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"408":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"473":{"tf":1.0},"501":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":13,"docs":{"107":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.6457513110645907},"213":{"tf":1.0},"252":{"tf":1.0},"328":{"tf":1.0},"384":{"tf":1.4142135623730951},"469":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"166":{"tf":1.0},"362":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"269":{"tf":1.0},"312":{"tf":1.0},"398":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"429":{"tf":2.23606797749979},"431":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"218":{"tf":1.0},"311":{"tf":1.0},"401":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"241":{"tf":1.0},"406":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"r":{"df":3,"docs":{"23":{"tf":1.0},"245":{"tf":1.0},"66":{"tf":2.23606797749979}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"11":{"tf":1.4142135623730951},"13":{"tf":1.0},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"398":{"tf":1.0}}}},"l":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"205":{"tf":1.0},"250":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"177":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"179":{"tf":1.7320508075688772},"189":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"255":{"tf":1.7320508075688772},"355":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":5,"docs":{"165":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.0},"470":{"tf":1.7320508075688772}}}},"k":{"df":0,"docs":{},"e":{"df":15,"docs":{"119":{"tf":1.0},"183":{"tf":1.0},"232":{"tf":2.23606797749979},"245":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"312":{"tf":4.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"442":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":67,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"175":{"tf":1.0},"181":{"tf":1.4142135623730951},"196":{"tf":1.0},"202":{"tf":2.0},"210":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.4142135623730951},"248":{"tf":1.0},"251":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.7320508075688772},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"292":{"tf":1.0},"295":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"353":{"tf":1.0},"356":{"tf":1.7320508075688772},"364":{"tf":1.0},"368":{"tf":1.7320508075688772},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"394":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"402":{"tf":1.4142135623730951},"416":{"tf":1.0},"419":{"tf":1.7320508075688772},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.7320508075688772},"433":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.7320508075688772},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"463":{"tf":1.0},"467":{"tf":1.4142135623730951},"482":{"tf":1.0},"485":{"tf":1.4142135623730951},"496":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":6,"docs":{"221":{"tf":1.0},"226":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}}}},"t":{"df":51,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"284":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":2.23606797749979},"364":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"464":{"tf":1.0},"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"382":{"tf":1.0},"384":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":28,"docs":{"104":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.4142135623730951},"305":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"312":{"tf":2.0},"313":{"tf":1.0},"324":{"tf":1.0},"337":{"tf":1.0},"358":{"tf":1.0},"393":{"tf":1.0},"418":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"64":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"72":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"81":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"i":{"c":{"df":2,"docs":{"69":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"204":{"tf":1.0},"275":{"tf":1.0},"281":{"tf":1.4142135623730951},"358":{"tf":1.0},"471":{"tf":1.0}}}},"y":{"df":3,"docs":{"205":{"tf":1.0},"312":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"398":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"365":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"374":{"tf":1.0}}}},"m":{"df":1,"docs":{"18":{"tf":1.0}}},"p":{"df":13,"docs":{"106":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":2.449489742783178},"270":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"349":{"tf":1.0},"39":{"tf":1.0},"444":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":19,"docs":{"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.4142135623730951},"309":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.7320508075688772},"423":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"231":{"tf":1.0},"232":{"tf":1.0},"312":{"tf":1.0},"358":{"tf":3.4641016151377544}}},"r":{"a":{"df":0,"docs":{},"g":{"df":33,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"115":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"18":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"312":{"tf":1.0},"358":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":2.449489742783178},"384":{"tf":2.23606797749979},"385":{"tf":1.7320508075688772},"406":{"tf":1.4142135623730951},"422":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":2.6457513110645907},"457":{"tf":1.4142135623730951},"468":{"tf":1.0},"472":{"tf":1.4142135623730951},"481":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":10,"docs":{"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"_":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"129":{"tf":1.0},"143":{"tf":1.7320508075688772},"151":{"tf":1.0},"248":{"tf":2.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"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},"382":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.7320508075688772},"471":{"tf":1.0},"472":{"tf":1.7320508075688772}}},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"341":{"tf":1.0},"372":{"tf":1.0}}}}},"n":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":9,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"422":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"385":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"295":{"tf":1.4142135623730951},"296":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"418":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"122":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"240":{"tf":1.0},"305":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"201":{"tf":1.0},"255":{"tf":1.4142135623730951},"272":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"500":{"tf":1.0},"504":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"254":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":2,"docs":{"104":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"200":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"473":{"tf":1.0},"51":{"tf":1.0},"99":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"452":{"tf":1.0},"500":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"209":{"tf":2.23606797749979},"254":{"tf":1.0},"384":{"tf":1.0},"486":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"294":{"tf":1.0},"32":{"tf":2.23606797749979},"425":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"b":{"0":{"df":1,"docs":{"452":{"tf":1.0}}},"df":4,"docs":{"204":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"215":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"t":{"df":10,"docs":{"179":{"tf":1.7320508075688772},"312":{"tf":1.0},"36":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"67":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"22":{"tf":1.0},"460":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0}}}},"t":{"df":6,"docs":{"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"38":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"a":{"c":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"436":{"tf":1.0},"449":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"355":{"tf":1.0},"481":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":15,"docs":{"146":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"164":{"tf":1.4142135623730951},"174":{"tf":1.0},"188":{"tf":1.0},"252":{"tf":2.0},"341":{"tf":1.0},"343":{"tf":1.0},"360":{"tf":1.0},"402":{"tf":1.0},"495":{"tf":1.0},"498":{"tf":1.0},"98":{"tf":1.0}},"e":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"254":{"tf":1.0},"340":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":12,"docs":{"140":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"318":{"tf":1.0},"470":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"501":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"206":{"tf":1.0},"224":{"tf":1.4142135623730951},"313":{"tf":1.0},"358":{"tf":3.1622776601683795},"398":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"206":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"472":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":36,"docs":{"129":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"398":{"tf":1.0},"423":{"tf":1.0},"449":{"tf":1.4142135623730951},"464":{"tf":1.0},"473":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"153":{"tf":1.0},"258":{"tf":1.0},"375":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"200":{"tf":1.0},"204":{"tf":1.0},"382":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"102":{"tf":1.0},"151":{"tf":1.0},"193":{"tf":1.0},"256":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"13":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"22":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0},"6":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"16":{"tf":1.0},"165":{"tf":1.0},"294":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"200":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":60,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":1.4142135623730951},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.4142135623730951},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"358":{"tf":1.7320508075688772},"359":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"358":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"i":{"df":3,"docs":{"366":{"tf":1.0},"370":{"tf":1.0},"421":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":44,"docs":{"114":{"tf":1.0},"130":{"tf":1.7320508075688772},"159":{"tf":2.23606797749979},"160":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"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.7320508075688772},"172":{"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.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"210":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":1.0},"312":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":3,"docs":{"388":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"129":{"tf":1.0},"254":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"498":{"tf":1.0},"74":{"tf":1.0},"98":{"tf":1.0}}},"g":{"df":1,"docs":{"375":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"178":{"tf":1.0},"358":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"398":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"292":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"+":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"393":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"363":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"295":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"254":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"238":{"tf":1.0},"310":{"tf":1.0}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"401":{"tf":1.0},"406":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}},"s":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"125":{"tf":2.23606797749979},"127":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":93,"docs":{"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":2.6457513110645907},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":2.23606797749979},"231":{"tf":1.4142135623730951},"232":{"tf":2.8284271247461903},"233":{"tf":2.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"253":{"tf":1.0},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":2.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"311":{"tf":1.4142135623730951},"312":{"tf":3.1622776601683795},"313":{"tf":1.4142135623730951},"317":{"tf":1.0},"35":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.0},"47":{"tf":1.0},"474":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}}},"·":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"4":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"0":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"50":{"tf":1.0}}},"4":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"df":1,"docs":{"50":{"tf":1.0}}},":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"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":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"469":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":32,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.0},"72":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":20,"docs":{"114":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"197":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"222":{"tf":1.0},"250":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"329":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"386":{"tf":1.4142135623730951},"432":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":3,"docs":{"240":{"tf":1.0},"358":{"tf":1.0},"74":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"399":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}},"k":{"df":1,"docs":{"504":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":17,"docs":{"151":{"tf":1.0},"170":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"256":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"367":{"tf":1.4142135623730951},"370":{"tf":2.23606797749979},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":2.23606797749979}},"s":{"(":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"100":{"tf":1.0},"140":{"tf":1.0},"204":{"tf":2.8284271247461903},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"209":{"tf":4.58257569495584},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"277":{"tf":1.0},"421":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":3,"docs":{"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"208":{"tf":1.0},"33":{"tf":2.449489742783178},"372":{"tf":1.7320508075688772},"48":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":18,"docs":{"100":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.7320508075688772},"25":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.4142135623730951},"287":{"tf":1.0},"296":{"tf":1.0},"368":{"tf":1.0},"402":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":21,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"187":{"tf":1.0},"209":{"tf":1.0},"231":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.4142135623730951},"341":{"tf":1.0},"422":{"tf":1.4142135623730951},"426":{"tf":1.0},"443":{"tf":1.4142135623730951},"446":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":8,"docs":{"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"419":{"tf":1.0},"95":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"444":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"401":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"167":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"417":{"tf":1.4142135623730951},"418":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"151":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"256":{"tf":1.0},"270":{"tf":1.0},"291":{"tf":1.4142135623730951},"415":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":57,"docs":{"1":{"tf":1.0},"112":{"tf":1.7320508075688772},"120":{"tf":1.0},"132":{"tf":1.7320508075688772},"141":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"159":{"tf":1.0},"167":{"tf":2.23606797749979},"175":{"tf":1.0},"189":{"tf":1.7320508075688772},"196":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"216":{"tf":1.0},"226":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":2.0},"240":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.4142135623730951},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"275":{"tf":1.0},"285":{"tf":1.7320508075688772},"292":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"323":{"tf":1.0},"332":{"tf":1.4142135623730951},"339":{"tf":1.0},"345":{"tf":1.4142135623730951},"380":{"tf":1.0},"386":{"tf":1.4142135623730951},"399":{"tf":1.0},"402":{"tf":1.0},"408":{"tf":2.0},"427":{"tf":1.0},"433":{"tf":1.4142135623730951},"440":{"tf":1.0},"446":{"tf":1.7320508075688772},"463":{"tf":1.0},"474":{"tf":1.7320508075688772},"482":{"tf":1.0},"488":{"tf":2.0},"496":{"tf":1.0},"502":{"tf":1.4142135623730951},"56":{"tf":2.0},"68":{"tf":1.0},"74":{"tf":2.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"285":{"tf":1.0},"313":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"372":{"tf":1.4142135623730951}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"382":{"tf":1.0},"386":{"tf":1.0},"425":{"tf":1.0}}}},"t":{"'":{"df":1,"docs":{"341":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"129":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":8,"docs":{"141":{"tf":1.0},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.4142135623730951},"398":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"i":{"df":2,"docs":{"255":{"tf":1.0},"422":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"13":{"tf":1.0},"297":{"tf":1.0},"501":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":5,"docs":{"14":{"tf":1.0},"3":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"421":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"207":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"398":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"129":{"tf":1.0},"340":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.4142135623730951},"504":{"tf":1.0}}},"k":{"df":2,"docs":{"235":{"tf":1.0},"251":{"tf":1.0}}}},"r":{"d":{"df":3,"docs":{"169":{"tf":1.0},"222":{"tf":1.0},"327":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"116":{"tf":1.0},"181":{"tf":1.7320508075688772},"217":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"325":{"tf":1.0},"398":{"tf":1.0},"444":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"177":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.4142135623730951}},"t":{"df":1,"docs":{"425":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"501":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"201":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"311":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"406":{"tf":1.0},"469":{"tf":1.0},"500":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"128":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"442":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"235":{"tf":1.0},"277":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"439":{"tf":1.0},"47":{"tf":1.4142135623730951},"498":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"421":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"194":{"tf":1.0},"311":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":22,"docs":{"102":{"tf":1.4142135623730951},"129":{"tf":1.0},"14":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.0},"25":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"311":{"tf":1.0},"328":{"tf":1.0},"382":{"tf":2.0},"386":{"tf":1.0},"442":{"tf":1.0},"492":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"51":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"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":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":15,"docs":{"23":{"tf":3.0},"35":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"38":{"tf":2.0},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"48":{"tf":5.291502622129181},"49":{"tf":2.449489742783178},"50":{"tf":3.7416573867739413},"51":{"tf":2.6457513110645907},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"i":{"d":{"df":2,"docs":{"48":{"tf":2.23606797749979},"50":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"341":{"tf":1.0},"52":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"415":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"e":{"df":61,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.4142135623730951},"282":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"325":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":2.8284271247461903},"382":{"tf":1.4142135623730951},"384":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"442":{"tf":2.0},"444":{"tf":1.4142135623730951},"455":{"tf":2.23606797749979},"465":{"tf":1.0},"468":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"480":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"35":{"tf":1.0},"430":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"205":{"tf":2.6457513110645907},"206":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":3.872983346207417}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"429":{"tf":1.4142135623730951}}}}}}},"k":{"df":1,"docs":{"50":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"99":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":13,"docs":{"179":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"368":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":2.23606797749979},"419":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"232":{"tf":1.0},"284":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"364":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"164":{"tf":1.0},"180":{"tf":1.0},"277":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"134":{"tf":1.0},"178":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"252":{"tf":1.0},"479":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":3.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"209":{"tf":1.4142135623730951},"258":{"tf":1.0},"329":{"tf":1.0},"395":{"tf":1.0},"469":{"tf":1.0},"48":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"406":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"205":{"tf":1.0},"452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":4,"docs":{"429":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0}}},"df":29,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"312":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":2.23606797749979},"428":{"tf":1.4142135623730951},"429":{"tf":3.0},"430":{"tf":1.4142135623730951},"431":{"tf":2.23606797749979},"432":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"439":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.7320508075688772},"455":{"tf":1.0},"460":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"436":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"119":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"368":{"tf":1.0},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"175":{"tf":1.0},"188":{"tf":1.4142135623730951}}}}},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"153":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}},"t":{"df":4,"docs":{"206":{"tf":1.4142135623730951},"407":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":36,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":2.0},"14":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"221":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"235":{"tf":1.0},"277":{"tf":1.0},"309":{"tf":1.0},"317":{"tf":1.0},"339":{"tf":2.449489742783178},"340":{"tf":2.0},"341":{"tf":2.8284271247461903},"342":{"tf":1.0},"343":{"tf":2.23606797749979},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"408":{"tf":1.0},"413":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"320":{"tf":1.0},"322":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"42":{"tf":1.0},"44":{"tf":2.449489742783178},"51":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}}}}}}},"df":9,"docs":{"110":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"209":{"tf":1.0},"382":{"tf":1.0},"421":{"tf":1.4142135623730951},"459":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":2,"docs":{"222":{"tf":1.0},"421":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"105":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"179":{"tf":1.0},"204":{"tf":1.0},"305":{"tf":2.23606797749979},"382":{"tf":1.0},"423":{"tf":1.0},"506":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"178":{"tf":1.0},"179":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":2,"docs":{"129":{"tf":1.0},"99":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"427":{"tf":2.23606797749979},"428":{"tf":1.4142135623730951},"429":{"tf":2.23606797749979},"430":{"tf":1.4142135623730951},"431":{"tf":2.0},"432":{"tf":1.7320508075688772},"433":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"439":{"tf":1.0}},"i":{"df":16,"docs":{"117":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"269":{"tf":1.0},"297":{"tf":1.4142135623730951},"307":{"tf":1.0},"312":{"tf":1.0},"326":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":3.1622776601683795},"429":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"104":{"tf":1.0},"209":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"102":{"tf":2.6457513110645907},"103":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.4142135623730951},"112":{"tf":1.0},"129":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"429":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":5,"docs":{"126":{"tf":1.4142135623730951},"143":{"tf":1.0},"384":{"tf":1.4142135623730951},"414":{"tf":1.0},"422":{"tf":1.0}},"e":{"df":6,"docs":{"126":{"tf":1.0},"250":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":3.872983346207417},"385":{"tf":1.0},"455":{"tf":2.0}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"140":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"209":{"tf":1.0},"50":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"381":{"tf":1.0}},"l":{"df":1,"docs":{"375":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"208":{"tf":1.4142135623730951},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"442":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"250":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"129":{"tf":1.4142135623730951},"178":{"tf":1.0},"384":{"tf":2.0},"422":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"199":{"tf":1.0},"232":{"tf":1.7320508075688772},"255":{"tf":1.0},"263":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"418":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"486":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"444":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"442":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"355":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":37,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.0},"221":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.4142135623730951},"310":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"362":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.7320508075688772},"384":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951},"498":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0}},"x":{"6":{"4":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"472":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"104":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"104":{"tf":1.0}}}}},"df":30,"docs":{"102":{"tf":2.0},"104":{"tf":3.605551275463989},"164":{"tf":1.4142135623730951},"196":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":3.7416573867739413},"216":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"23":{"tf":1.0},"268":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"341":{"tf":1.0},"384":{"tf":1.0},"422":{"tf":1.4142135623730951},"436":{"tf":1.0},"45":{"tf":1.4142135623730951},"469":{"tf":2.23606797749979},"470":{"tf":1.0},"472":{"tf":1.0},"486":{"tf":2.0},"491":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":9,"docs":{"219":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.0},"328":{"tf":1.0},"358":{"tf":1.0},"385":{"tf":1.0},"438":{"tf":1.0},"460":{"tf":1.0},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"}":{"\\":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{")":{"^":{"df":0,"docs":{},"u":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":1,"docs":{"372":{"tf":1.0}}}}},"·":{"a":{"df":0,"docs":{},"·":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{".":{"df":1,"docs":{"328":{"tf":1.0}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"128":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":2.0},"33":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"51":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"457":{"tf":1.0},"48":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"102":{"tf":1.7320508075688772},"209":{"tf":1.0},"42":{"tf":1.4142135623730951},"486":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.7320508075688772}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"305":{"tf":1.0}}}}}}}},"c":{"'":{"df":1,"docs":{"417":{"tf":1.0}}},"df":11,"docs":{"199":{"tf":1.0},"201":{"tf":2.23606797749979},"204":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"365":{"tf":1.0},"395":{"tf":1.0},"418":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0}}},"df":1,"docs":{"372":{"tf":1.0}},"i":{"df":2,"docs":{"272":{"tf":1.0},"306":{"tf":1.0}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"119":{"tf":1.0},"266":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"99":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"204":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"281":{"tf":1.4142135623730951},"284":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"204":{"tf":1.0},"222":{"tf":1.0},"472":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"421":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.4142135623730951},"388":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"364":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"444":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"441":{"tf":1.0},"444":{"tf":1.7320508075688772}}}}},"r":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"421":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}},"df":11,"docs":{"127":{"tf":1.0},"147":{"tf":1.7320508075688772},"208":{"tf":1.0},"222":{"tf":1.0},"236":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"444":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"82":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"37":{"tf":1.0},"423":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"398":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"449":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"218":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"312":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"398":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":1,"docs":{"406":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"125":{"tf":1.0},"126":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"146":{"tf":1.0},"341":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"501":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"161":{"tf":1.0},"415":{"tf":1.0},"70":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"311":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":10,"docs":{"13":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"219":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"465":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"238":{"tf":1.0},"337":{"tf":1.0},"421":{"tf":1.0},"7":{"tf":2.0},"74":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}}}}}}}},"df":1,"docs":{"72":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":7,"docs":{"156":{"tf":1.0},"180":{"tf":1.0},"196":{"tf":1.0},"214":{"tf":1.7320508075688772},"216":{"tf":1.0},"228":{"tf":1.4142135623730951},"455":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"207":{"tf":1.0},"32":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"179":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"205":{"tf":1.0},"235":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"199":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.7320508075688772},"282":{"tf":2.0},"283":{"tf":1.0},"289":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"341":{"tf":1.0},"398":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"386":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"256":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"122":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"322":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"464":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":52,"docs":{"1":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"138":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"194":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.4142135623730951},"248":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"290":{"tf":1.4142135623730951},"292":{"tf":1.0},"301":{"tf":1.4142135623730951},"303":{"tf":1.0},"321":{"tf":1.4142135623730951},"323":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.0},"362":{"tf":1.4142135623730951},"380":{"tf":1.0},"392":{"tf":1.4142135623730951},"399":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"451":{"tf":1.4142135623730951},"463":{"tf":1.0},"480":{"tf":1.4142135623730951},"482":{"tf":1.0},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"508":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"68":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"205":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"457":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"421":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":15,"docs":{"106":{"tf":1.4142135623730951},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.0},"24":{"tf":1.0},"256":{"tf":1.0},"282":{"tf":1.0},"358":{"tf":1.0},"498":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"207":{"tf":1.0},"255":{"tf":1.0},"454":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"209":{"tf":1.0},"366":{"tf":1.0},"421":{"tf":1.0},"48":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"131":{"tf":1.0},"167":{"tf":1.4142135623730951},"179":{"tf":1.0},"209":{"tf":1.7320508075688772},"238":{"tf":1.0},"250":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"281":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"365":{"tf":1.0},"412":{"tf":1.0},"436":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.7320508075688772},"54":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"126":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.0},"166":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"235":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.4142135623730951},"370":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"442":{"tf":1.4142135623730951},"48":{"tf":1.0},"498":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":16,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":3.1622776601683795},"131":{"tf":1.0},"136":{"tf":1.4142135623730951},"171":{"tf":1.0},"210":{"tf":1.4142135623730951},"242":{"tf":1.0},"281":{"tf":1.0},"296":{"tf":1.0},"374":{"tf":1.0},"461":{"tf":1.0},"472":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"386":{"tf":1.0},"472":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"418":{"tf":1.0},"465":{"tf":1.0},"58":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"421":{"tf":1.0},"431":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"358":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":21,"docs":{"115":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":2.23606797749979},"205":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"224":{"tf":1.4142135623730951},"381":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"436":{"tf":1.0},"460":{"tf":1.0},"491":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"21":{"tf":1.0}}}},"c":{"df":2,"docs":{"177":{"tf":1.0},"178":{"tf":1.0}}},"df":3,"docs":{"13":{"tf":1.4142135623730951},"192":{"tf":1.0},"328":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"177":{"tf":1.0},"178":{"tf":1.0},"328":{"tf":1.7320508075688772}}}},"df":114,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":2.0},"180":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":2.0},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"255":{"tf":2.0},"256":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"321":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":2.23606797749979},"358":{"tf":2.449489742783178},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"384":{"tf":1.7320508075688772},"388":{"tf":1.0},"393":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.4142135623730951},"418":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":2.6457513110645907},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"49":{"tf":1.0},"500":{"tf":1.7320508075688772},"51":{"tf":2.449489742783178},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":2.449489742783178},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"312":{"tf":1.0}}},"df":30,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"202":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.0},"279":{"tf":1.0},"312":{"tf":1.4142135623730951},"318":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"436":{"tf":1.0},"444":{"tf":1.4142135623730951},"469":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"486":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":27,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.4142135623730951},"35":{"tf":1.0},"398":{"tf":1.4142135623730951},"411":{"tf":1.0},"418":{"tf":1.0},"44":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"468":{"tf":1.0},"52":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"250":{"tf":1.0}}}},"v":{"0":{"df":2,"docs":{"102":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"1":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},".":{"0":{"df":4,"docs":{"48":{"tf":1.7320508075688772},"51":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"164":{"tf":2.0},"165":{"tf":2.0},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"178":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"2":{"+":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"129":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"128":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":4,"docs":{"122":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":59,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":3.0},"130":{"tf":2.8284271247461903},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":2.8284271247461903},"206":{"tf":1.0},"23":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"24":{"tf":1.4142135623730951},"249":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.7320508075688772},"309":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"444":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"466":{"tf":2.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.23606797749979},"47":{"tf":2.0},"470":{"tf":2.449489742783178},"471":{"tf":1.0},"472":{"tf":2.0},"473":{"tf":1.0},"48":{"tf":3.1622776601683795},"485":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":2.0},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"310":{"tf":1.0},"311":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.4142135623730951}}}},"df":59,"docs":{"1":{"tf":1.0},"102":{"tf":2.23606797749979},"103":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":2.449489742783178},"14":{"tf":1.0},"147":{"tf":1.4142135623730951},"153":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"208":{"tf":2.449489742783178},"209":{"tf":2.0},"21":{"tf":1.0},"222":{"tf":2.23606797749979},"223":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"343":{"tf":1.0},"358":{"tf":5.196152422706632},"366":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":3.605551275463989},"384":{"tf":2.6457513110645907},"386":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"400":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"47":{"tf":2.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"48":{"tf":2.8284271247461903},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"49":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":2.0},"500":{"tf":2.0},"501":{"tf":1.0},"502":{"tf":1.0},"54":{"tf":1.7320508075688772},"7":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"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":{"358":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"254":{"tf":1.0},"374":{"tf":1.0},"398":{"tf":1.0},"48":{"tf":1.0},"500":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"104":{"tf":3.1622776601683795},"250":{"tf":1.0},"421":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"205":{"tf":1.0},"232":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":11,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"201":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"250":{"tf":1.0},"277":{"tf":1.0},"416":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":7,"docs":{"129":{"tf":1.4142135623730951},"161":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"358":{"tf":1.0},"48":{"tf":1.4142135623730951}},"e":{"c":{"!":{"[":{"(":{"a":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"340":{"tf":1.0},"341":{"tf":1.7320508075688772},"343":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"8":{"df":3,"docs":{"102":{"tf":2.0},"129":{"tf":1.4142135623730951},"486":{"tf":2.0}}},"df":0,"docs":{}}},"df":3,"docs":{"209":{"tf":3.0},"340":{"tf":1.0},"343":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":27,"docs":{"128":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"184":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"222":{"tf":1.0},"239":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"277":{"tf":1.4142135623730951},"318":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.7320508075688772},"398":{"tf":1.0},"421":{"tf":1.0},"424":{"tf":1.0},"48":{"tf":1.0},"501":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":12,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"23":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"483":{"tf":1.0},"488":{"tf":1.0},"52":{"tf":2.0},"83":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":17,"docs":{"119":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"255":{"tf":1.0},"358":{"tf":1.0},"382":{"tf":1.0},"385":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"486":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"159":{"tf":1.0},"160":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":39,"docs":{"102":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"112":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":2.449489742783178},"131":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"171":{"tf":1.0},"250":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"344":{"tf":1.0},"358":{"tf":5.916079783099616},"363":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"449":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":3.4641016151377544},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}},"l":{"df":2,"docs":{"465":{"tf":1.0},"500":{"tf":1.0}}}},"df":22,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"242":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"330":{"tf":1.0},"370":{"tf":1.0},"430":{"tf":1.0},"436":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"202":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":2,"docs":{"327":{"tf":1.0},"328":{"tf":1.0}},"i":{"df":2,"docs":{"327":{"tf":1.0},"328":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"405":{"tf":1.0},"406":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"184":{"tf":1.0},"199":{"tf":1.0},"358":{"tf":3.4641016151377544}}}},"df":1,"docs":{"206":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"365":{"tf":1.0},"379":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"180":{"tf":1.0}},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"310":{"tf":1.0},"313":{"tf":1.0}}},"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"398":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":20,"docs":{"140":{"tf":2.23606797749979},"235":{"tf":1.4142135623730951},"277":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":2.23606797749979},"441":{"tf":3.4641016151377544},"442":{"tf":2.449489742783178},"443":{"tf":1.0},"444":{"tf":4.47213595499958},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0}},"r":{"df":4,"docs":{"235":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"f":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"43":{"tf":1.0}},"s":{"(":{"1":{"6":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}},"s":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"42":{"tf":1.0},"43":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"45":{"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":{"45":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":9,"docs":{"23":{"tf":2.23606797749979},"41":{"tf":2.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"61":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"42":{"tf":2.0},"43":{"tf":2.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"43":{"tf":2.23606797749979},"44":{"tf":1.0},"45":{"tf":2.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"45":{"tf":1.7320508075688772},"51":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"44":{"tf":2.0},"45":{"tf":2.8284271247461903},"51":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"11":{"tf":1.0},"438":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"232":{"tf":1.0}}}}}}},"·":{"2":{"/":{"3":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"325":{"tf":1.0},"337":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"208":{"tf":1.4142135623730951},"382":{"tf":1.0},"422":{"tf":1.0},"470":{"tf":1.0},"506":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"382":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.7320508075688772},"256":{"tf":1.0},"269":{"tf":1.0},"375":{"tf":1.0},"425":{"tf":1.0},"449":{"tf":1.0},"481":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"393":{"tf":1.0}}},"t":{"df":1,"docs":{"344":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"284":{"tf":1.0}}}}}}}}},"df":10,"docs":{"161":{"tf":1.7320508075688772},"165":{"tf":2.0},"170":{"tf":1.0},"180":{"tf":1.4142135623730951},"281":{"tf":1.0},"284":{"tf":1.0},"355":{"tf":1.0},"498":{"tf":2.23606797749979},"500":{"tf":2.0},"501":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"177":{"tf":1.0},"311":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"48":{"tf":1.0}}}},"y":{"df":35,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.4142135623730951},"161":{"tf":1.0},"164":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"22":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"277":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"429":{"tf":1.0},"452":{"tf":1.4142135623730951},"455":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":2,"docs":{"500":{"tf":1.0},"504":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772}}}},"b":{"3":{"df":6,"docs":{"177":{"tf":1.0},"212":{"tf":1.0},"25":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"205":{"tf":1.0},"366":{"tf":1.0},"375":{"tf":1.4142135623730951},"422":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"175":{"tf":1.0},"183":{"tf":2.449489742783178},"191":{"tf":1.0},"209":{"tf":1.4142135623730951},"454":{"tf":1.0},"455":{"tf":2.23606797749979},"457":{"tf":1.0},"462":{"tf":1.0},"490":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.0},"312":{"tf":1.0},"365":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.0},"449":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"498":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"296":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"204":{"tf":1.0},"206":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"199":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"129":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"330":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"438":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"205":{"tf":1.0},"232":{"tf":1.0},"439":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"222":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"422":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"48":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"343":{"tf":1.0},"384":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"435":{"tf":1.0}}},"h":{"df":4,"docs":{"268":{"tf":1.0},"421":{"tf":1.0},"430":{"tf":1.0},"444":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":3,"docs":{"179":{"tf":1.7320508075688772},"183":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"157":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"227":{"tf":1.0},"250":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"343":{"tf":1.0},"35":{"tf":1.0},"358":{"tf":1.4142135623730951},"398":{"tf":1.0},"41":{"tf":1.0},"418":{"tf":2.0},"422":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"9":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"199":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"341":{"tf":1.4142135623730951},"343":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"423":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.4142135623730951},"82":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"468":{"tf":1.0},"470":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":5,"docs":{"196":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"452":{"tf":1.0}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"128":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"343":{"tf":1.0},"384":{"tf":1.7320508075688772},"421":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":26,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"151":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.7320508075688772},"256":{"tf":1.0},"295":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"382":{"tf":1.0},"422":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"205":{"tf":2.0},"206":{"tf":1.7320508075688772},"209":{"tf":3.1622776601683795},"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"206":{"tf":1.4142135623730951},"209":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"200":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"180":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"355":{"tf":1.0},"388":{"tf":1.0},"418":{"tf":1.0},"424":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"192":{"tf":1.0},"205":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"358":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"179":{"tf":1.0},"253":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":5.656854249492381}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"178":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.4142135623730951},"341":{"tf":1.0},"358":{"tf":2.6457513110645907}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{".":{"0":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"d":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"184":{"tf":1.4142135623730951}},"m":{"df":25,"docs":{"184":{"tf":1.0},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.4142135623730951},"238":{"tf":1.0},"277":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}},"df":3,"docs":{"33":{"tf":2.6457513110645907},"372":{"tf":1.0},"48":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"147":{"tf":1.0},"253":{"tf":1.0}}},"df":1,"docs":{"206":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"372":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"171":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"328":{"tf":1.0},"329":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"159":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"421":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"125":{"tf":1.4142135623730951},"192":{"tf":1.0},"208":{"tf":1.4142135623730951},"223":{"tf":1.0},"358":{"tf":2.0}}}}},"k":{"df":6,"docs":{"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"23":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"179":{"tf":1.0},"193":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"292":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"title":{"root":{"0":{"0":{"0":{"0":{"df":2,"docs":{"1":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":1,"docs":{"353":{"tf":1.0}}},"6":{"df":1,"docs":{"364":{"tf":1.0}}},"7":{"df":1,"docs":{"230":{"tf":1.0}}},"8":{"df":1,"docs":{"248":{"tf":1.0}}},"9":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"394":{"tf":1.0}}},"2":{"df":1,"docs":{"264":{"tf":1.0}}},"3":{"df":1,"docs":{"399":{"tf":1.0}}},"4":{"df":1,"docs":{"275":{"tf":1.0}}},"5":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"2":{"df":1,"docs":{"292":{"tf":1.0}}},"6":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"303":{"tf":1.0}}},"5":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"81":{"tf":1.0}}},"3":{"df":1,"docs":{"453":{"tf":1.0}}},"4":{"df":1,"docs":{"463":{"tf":1.0}}},"7":{"df":1,"docs":{"120":{"tf":1.0}}},"8":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"323":{"tf":1.0}}},"4":{"df":1,"docs":{"496":{"tf":1.0}}},"6":{"df":1,"docs":{"339":{"tf":1.0}}},"9":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"159":{"tf":1.0}}},"6":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"61":{"tf":1.0}}},"1":{"df":1,"docs":{"62":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"64":{"tf":1.0}}},"2":{"df":1,"docs":{"65":{"tf":1.0}}},"3":{"df":1,"docs":{"66":{"tf":1.0}}},"4":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"63":{"tf":1.0}}},"df":2,"docs":{"196":{"tf":1.0},"25":{"tf":1.0}}},"2":{".":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"2":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"3":{".":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"2":{"df":1,"docs":{"33":{"tf":1.0}}},"3":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"68":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"2":{"df":1,"docs":{"37":{"tf":1.0}}},"3":{"df":1,"docs":{"38":{"tf":1.0}}},"4":{"df":1,"docs":{"39":{"tf":1.0}}},"5":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"35":{"tf":1.0}}},"5":{".":{"1":{"df":1,"docs":{"42":{"tf":1.0}}},"2":{"df":1,"docs":{"43":{"tf":1.0}}},"3":{"df":1,"docs":{"44":{"tf":1.0}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"216":{"tf":1.0},"41":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"2":{"df":1,"docs":{"48":{"tf":1.0}}},"3":{"df":1,"docs":{"49":{"tf":1.0}}},"4":{"df":1,"docs":{"50":{"tf":1.0}}},"5":{"df":1,"docs":{"51":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"52":{"tf":1.0}}},"7":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}}},"7":{"df":1,"docs":{"55":{"tf":1.0}}},"8":{"df":1,"docs":{"56":{"tf":1.0}}},"9":{".":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"2":{"df":1,"docs":{"59":{"tf":1.0}}},"3":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"57":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"d":{"df":3,"docs":{"141":{"tf":1.0},"175":{"tf":1.0},"81":{"tf":1.0}}},"df":1,"docs":{"264":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"159":{"tf":1.0},"183":{"tf":1.0},"311":{"tf":1.0},"353":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"214":{"tf":1.0},"228":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"399":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"310":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":28,"docs":{"117":{"tf":1.0},"137":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.0},"289":{"tf":1.0},"300":{"tf":1.0},"320":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0},"413":{"tf":1.0},"425":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"479":{"tf":1.0},"493":{"tf":1.0},"507":{"tf":1.0},"61":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"328":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":5,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"184":{"tf":1.0},"186":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"120":{"tf":1.0},"128":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"120":{"tf":1.0},"126":{"tf":1.0},"127":{"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":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"12":{"tf":1.0},"141":{"tf":1.0},"184":{"tf":1.0},"463":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}},"d":{"df":2,"docs":{"38":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"399":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"405":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"453":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"364":{"tf":1.0},"421":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"394":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"141":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"108":{"tf":1.0},"149":{"tf":1.0},"206":{"tf":1.0},"248":{"tf":1.0},"64":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"282":{"tf":1.0},"359":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"120":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"165":{"tf":1.0},"380":{"tf":1.0},"496":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"125":{"tf":1.0},"33":{"tf":1.0},"373":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"264":{"tf":1.0},"269":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":49,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.0},"387":{"tf":1.0},"390":{"tf":1.0},"409":{"tf":1.0},"412":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"496":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"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":{"375":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"404":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"399":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"196":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"216":{"tf":1.0},"364":{"tf":1.0},"394":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"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":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"+":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"32":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"440":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"469":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"312":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"8":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"416":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"180":{"tf":1.0},"29":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"248":{"tf":1.0},"253":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":23,"docs":{"119":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"174":{"tf":1.0},"195":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"247":{"tf":1.0},"263":{"tf":1.0},"291":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"393":{"tf":1.0},"415":{"tf":1.0},"439":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"244":{"tf":1.0},"423":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"223":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":29,"docs":{"109":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"214":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"255":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"297":{"tf":1.0},"314":{"tf":1.0},"331":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.0},"376":{"tf":1.0},"385":{"tf":1.0},"407":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"445":{"tf":1.0},"473":{"tf":1.0},"487":{"tf":1.0},"501":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":49,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"272":{"tf":1.0},"287":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"387":{"tf":1.0},"389":{"tf":1.0},"409":{"tf":1.0},"411":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"m":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":2,"docs":{"184":{"tf":1.0},"186":{"tf":1.0}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":30,"docs":{"101":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"203":{"tf":1.0},"221":{"tf":1.0},"235":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"280":{"tf":1.0},"296":{"tf":1.0},"307":{"tf":1.0},"327":{"tf":1.0},"343":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"398":{"tf":1.0},"403":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"444":{"tf":1.0},"457":{"tf":1.0},"468":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"245":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"323":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"12":{"tf":1.0},"128":{"tf":1.0},"206":{"tf":1.0},"310":{"tf":1.0},"34":{"tf":1.0},"358":{"tf":1.0},"372":{"tf":1.0},"453":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"423":{"tf":1.0},"9":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":25,"docs":{"119":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"174":{"tf":1.0},"195":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"247":{"tf":1.0},"263":{"tf":1.0},"291":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"363":{"tf":1.0},"378":{"tf":1.0},"393":{"tf":1.0},"415":{"tf":1.0},"439":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"482":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":1,"docs":{"496":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"353":{"tf":1.0},"358":{"tf":1.0},"453":{"tf":1.0}}}}},"u":{"b":{"df":2,"docs":{"1":{"tf":1.0},"175":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"275":{"tf":1.0},"380":{"tf":1.0},"453":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"!":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"180":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"245":{"tf":1.0},"42":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"159":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"216":{"tf":1.0},"309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"453":{"tf":1.0}},"t":{"df":3,"docs":{"0":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"1":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"183":{"tf":1.0},"224":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"275":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"207":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"119":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"174":{"tf":1.0},"195":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"247":{"tf":1.0},"263":{"tf":1.0},"291":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"393":{"tf":1.0},"415":{"tf":1.0},"439":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"m":{"df":1,"docs":{"399":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"275":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"353":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"105":{"tf":1.0}}},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"222":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"283":{"tf":1.0},"308":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"184":{"tf":1.0},"463":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"427":{"tf":1.0},"440":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":31,"docs":{"122":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"177":{"tf":1.0},"198":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"325":{"tf":1.0},"341":{"tf":1.0},"355":{"tf":1.0},"366":{"tf":1.0},"382":{"tf":1.0},"396":{"tf":1.0},"401":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"442":{"tf":1.0},"455":{"tf":1.0},"465":{"tf":1.0},"484":{"tf":1.0},"498":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"97":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"178":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"129":{"tf":1.0},"254":{"tf":1.0},"380":{"tf":1.0}}}}}}},"w":{"df":6,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"358":{"tf":1.0}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"339":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"339":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"204":{"tf":1.0},"370":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"482":{"tf":1.0}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"496":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"248":{"tf":1.0},"275":{"tf":1.0},"453":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"472":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"339":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":49,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"272":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"423":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"175":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"363":{"tf":1.0},"378":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"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":{"43":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"399":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"199":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":29,"docs":{"117":{"tf":1.0},"137":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.0},"289":{"tf":1.0},"300":{"tf":1.0},"320":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"377":{"tf":1.0},"391":{"tf":1.0},"413":{"tf":1.0},"425":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"479":{"tf":1.0},"493":{"tf":1.0},"507":{"tf":1.0},"61":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":26,"docs":{"112":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"189":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"256":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"332":{"tf":1.0},"345":{"tf":1.0},"386":{"tf":1.0},"408":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"474":{"tf":1.0},"488":{"tf":1.0},"502":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"282":{"tf":1.0},"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"129":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"35":{"tf":1.0},"380":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"470":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"33":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"21":{"tf":1.0},"246":{"tf":1.0},"262":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"321":{"tf":1.0},"338":{"tf":1.0},"351":{"tf":1.0},"362":{"tf":1.0},"392":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"o":{"df":1,"docs":{"281":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}}}}}}},"df":1,"docs":{"472":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"117":{"tf":1.0},"137":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.0},"289":{"tf":1.0},"300":{"tf":1.0},"320":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"391":{"tf":1.0},"413":{"tf":1.0},"425":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"479":{"tf":1.0},"493":{"tf":1.0},"507":{"tf":1.0},"61":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"469":{"tf":1.0}},"r":{"df":4,"docs":{"147":{"tf":1.0},"253":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"119":{"tf":1.0},"139":{"tf":1.0},"158":{"tf":1.0},"174":{"tf":1.0},"195":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"247":{"tf":1.0},"263":{"tf":1.0},"291":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"393":{"tf":1.0},"415":{"tf":1.0},"439":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"63":{"tf":1.0},"94":{"tf":1.0}}},"y":{"df":2,"docs":{"248":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"269":{"tf":1.0},"353":{"tf":1.0},"496":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"463":{"tf":1.0},"471":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":8,"docs":{"201":{"tf":1.0},"219":{"tf":1.0},"233":{"tf":1.0},"278":{"tf":1.0},"367":{"tf":1.0},"4":{"tf":1.0},"466":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"394":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"f":{"c":{"df":31,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"159":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"216":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"248":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"323":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"364":{"tf":1.0},"380":{"tf":1.0},"394":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"463":{"tf":1.0},"482":{"tf":1.0},"496":{"tf":1.0},"68":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"159":{"tf":1.0},"164":{"tf":1.0},"292":{"tf":1.0},"353":{"tf":1.0},"399":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}}}}}},"s":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"323":{"tf":1.0},"328":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"364":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"23":{"tf":1.0},"27":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":27,"docs":{"112":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.0},"189":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"256":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"332":{"tf":1.0},"345":{"tf":1.0},"386":{"tf":1.0},"408":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"474":{"tf":1.0},"488":{"tf":1.0},"502":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"164":{"tf":1.0},"165":{"tf":1.0},"353":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.0},"45":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"236":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"38":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"164":{"tf":1.0},"165":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"66":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":31,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"162":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.0},"326":{"tf":1.0},"342":{"tf":1.0},"356":{"tf":1.0},"368":{"tf":1.0},"383":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.0},"485":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"281":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"248":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"36":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":30,"docs":{"121":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.0},"176":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"217":{"tf":1.0},"231":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.0},"293":{"tf":1.0},"304":{"tf":1.0},"324":{"tf":1.0},"340":{"tf":1.0},"354":{"tf":1.0},"365":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.0},"400":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"441":{"tf":1.0},"454":{"tf":1.0},"464":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"159":{"tf":1.0},"27":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}}},"df":5,"docs":{"199":{"tf":1.0},"230":{"tf":1.0},"264":{"tf":1.0},"422":{"tf":1.0},"81":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"112":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"189":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"256":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"332":{"tf":1.0},"345":{"tf":1.0},"386":{"tf":1.0},"408":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"474":{"tf":1.0},"488":{"tf":1.0},"502":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"427":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"188":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"339":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"209":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"34":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"222":{"tf":1.0}}}},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"214":{"tf":1.0},"228":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":26,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"21":{"tf":1.0},"246":{"tf":1.0},"262":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"321":{"tf":1.0},"338":{"tf":1.0},"351":{"tf":1.0},"362":{"tf":1.0},"392":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"453":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"120":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"108":{"tf":1.0},"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"440":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"f":{"df":5,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"244":{"tf":1.0}}}}}}}}},"x":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"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/stale/0004-remove-unnecessary-allocator-usage.html b/stale/0004-remove-unnecessary-allocator-usage.html
index ec580c7e7..3dd44aeaa 100644
--- a/stale/0004-remove-unnecessary-allocator-usage.html
+++ b/stale/0004-remove-unnecessary-allocator-usage.html
@@ -90,7 +90,7 @@
diff --git a/stale/0006-dynamic-pricing-for-bulk-coretime-sales.html b/stale/0006-dynamic-pricing-for-bulk-coretime-sales.html
index c798d95de..774b01a2c 100644
--- a/stale/0006-dynamic-pricing-for-bulk-coretime-sales.html
+++ b/stale/0006-dynamic-pricing-for-bulk-coretime-sales.html
@@ -90,7 +90,7 @@
diff --git a/stale/0009-improved-net-light-client-requests.html b/stale/0009-improved-net-light-client-requests.html
index dbfbfac8c..48dee6078 100644
--- a/stale/0009-improved-net-light-client-requests.html
+++ b/stale/0009-improved-net-light-client-requests.html
@@ -90,7 +90,7 @@
diff --git a/stale/0010-burn-coretime-revenue.html b/stale/0010-burn-coretime-revenue.html
index 261657635..095a6764f 100644
--- a/stale/0010-burn-coretime-revenue.html
+++ b/stale/0010-burn-coretime-revenue.html
@@ -90,7 +90,7 @@
diff --git a/stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html b/stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html
index cb9875d15..e98178fa6 100644
--- a/stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html
+++ b/stale/0013-prepare-blockbuilder-and-core-runtime-apis-for-mbms.html
@@ -90,7 +90,7 @@
diff --git a/stale/0015-market-design-revisit.html b/stale/0015-market-design-revisit.html
index 398538b0b..cee8adb21 100644
--- a/stale/0015-market-design-revisit.html
+++ b/stale/0015-market-design-revisit.html
@@ -90,7 +90,7 @@
diff --git a/stale/0020-treasurer-track-confirmation-period-duration-modification.html b/stale/0020-treasurer-track-confirmation-period-duration-modification.html
index 355ccf3ca..b81782fd4 100644
--- a/stale/0020-treasurer-track-confirmation-period-duration-modification.html
+++ b/stale/0020-treasurer-track-confirmation-period-duration-modification.html
@@ -90,7 +90,7 @@
diff --git a/stale/0035-conviction-voting-delegation-modifications.html b/stale/0035-conviction-voting-delegation-modifications.html
index 4a1e3c38e..5fe5d2be5 100644
--- a/stale/0035-conviction-voting-delegation-modifications.html
+++ b/stale/0035-conviction-voting-delegation-modifications.html
@@ -90,7 +90,7 @@
diff --git a/stale/0043-storage-proof-size-hostfunction.html b/stale/0043-storage-proof-size-hostfunction.html
index f548c6af3..20e1aef3c 100644
--- a/stale/0043-storage-proof-size-hostfunction.html
+++ b/stale/0043-storage-proof-size-hostfunction.html
@@ -90,7 +90,7 @@
diff --git a/stale/0044-rent-based-registration.html b/stale/0044-rent-based-registration.html
index a42dfc836..58d26cf22 100644
--- a/stale/0044-rent-based-registration.html
+++ b/stale/0044-rent-based-registration.html
@@ -90,7 +90,7 @@
diff --git a/stale/0048-session-keys-runtime-api.html b/stale/0048-session-keys-runtime-api.html
index 7453b1235..040306838 100644
--- a/stale/0048-session-keys-runtime-api.html
+++ b/stale/0048-session-keys-runtime-api.html
@@ -90,7 +90,7 @@
diff --git a/stale/0054-remove-heap-pages.html b/stale/0054-remove-heap-pages.html
index ed85bed5a..551d0b4b9 100644
--- a/stale/0054-remove-heap-pages.html
+++ b/stale/0054-remove-heap-pages.html
@@ -90,7 +90,7 @@
@@ -271,9 +271,6 @@
-
-
-
@@ -285,9 +282,6 @@
-
-
-